Examples of dependsOn()


Examples of com.eviware.soapui.impl.wsdl.teststeps.WsdlTestStep.dependsOn()

          continue;

        for( int j = 0; j < testCase.getTestStepCount(); j++ )
        {
          WsdlTestStep testStep = ( WsdlTestStep )testCase.getTestStepAt( j );
          if( testStep.dependsOn( iface ) )
          {
            return true;
          }
        }
      }
View Full Code Here

Examples of com.eviware.soapui.impl.wsdl.teststeps.WsdlTestStep.dependsOn()

        TestCase testCase = testSuite.getTestCaseAt( i );

        for( int j = 0; j < testCase.getTestStepCount(); j++ )
        {
          WsdlTestStep testStep = ( WsdlTestStep )testCase.getTestStepAt( j );
          if( testStep.dependsOn( iface ) )
          {
            return true;
          }
        }
      }
View Full Code Here

Examples of com.hp.hpl.jena.graph.compose.MultiUnion.dependsOn()

    public void testEmptyGraph() {
        Graph m = new MultiUnion();
        Graph g0 = graphWith( "x p y");
       
        assertEquals( "Empty model should have size zero", 0, m.size() );
        assertFalse( "Empty model should not contain another graph", m.dependsOn( g0 ) );
    }
   
    /**
        A MultiUnion graph should have a MultiUnionStatisticsHandler, and that
        handler should point right back to that graph.
View Full Code Here

Examples of com.hp.hpl.jena.graph.compose.MultiUnion.dependsOn()

    public void testEmptyGraph() {
        Graph m = new MultiUnion();
        Graph g0 = graphWith( "x p y");
       
        assertEquals( "Empty model should have size zero", 0, m.size() );
        assertFalse( "Empty model should not contain another graph", m.dependsOn( g0 ) );
    }
   
    /**
        A MultiUnion graph should have a MultiUnionStatisticsHandler, and that
        handler should point right back to that graph.
View Full Code Here

Examples of com.projity.pm.dependency.HasDependencies.dependsOn()

          currentTask=(HasDependencies)current.getUserObject();
          if (currentTask==null||task.dependsOn(currentTask)){
              for (Enumeration f=current.children();f.hasMoreElements();){
                  PertLayoutTreeNode currentChild=(PertLayoutTreeNode)f.nextElement();
                  HasDependencies currentChildTask=(HasDependencies)currentChild.getUserObject();
                  if (currentChildTask.dependsOn(task)) node.add(currentChild);
              }
              current.add(node);
              break;
          }
      }
View Full Code Here

Examples of mondrian.calc.Calc.dependsOn()

        if (calcs[0].getType().usesHierarchy(hierarchy, true)) {
            return false;
        }
        for (int i = 1; i < calcs.length; i++) {
            Calc calc = calcs[i];
            if (calc != null && calc.dependsOn(hierarchy)) {
                return true;
            }
        }
        return false;
    }
View Full Code Here

Examples of net.minecraftforge.gradle.tasks.ApplyS2STask.dependsOn()

            task4.setOut(delayedFile(DevConstants.PATCH_DIRTY));
            task4.addSrg(delayedFile(DevConstants.MCP_2_SRG_SRG));
            task4.addExc(delayedFile(DevConstants.MCP_EXC));
            task4.addExc(delayedFile(DevConstants.SRG_EXC)); // both EXCs just in case.
            task4.setRangeMap(rangeMap);
            task4.dependsOn("genSrgs", task);
        }
       
        GeneratePatches task2 = makeTask("genPatches", GeneratePatches.class);
        {
            task2.setPatchDir(delayedFile(DevConstants.FML_PATCH_DIR));
View Full Code Here

Examples of net.minecraftforge.gradle.tasks.ApplyS2STask.dependsOn()

            s2s.addIn(delayedFile(DevConstants.FML_SOURCES));
            s2s.setOut(delayedFile(DevConstants.USERDEV_SRG_SRC));
            s2s.addSrg(delayedFile(DevConstants.MCP_2_SRG_SRG));
            s2s.addExc(delayedFile(DevConstants.JOINED_EXC));
            s2s.setRangeMap(delayedFile(DevConstants.USERDEV_RANGEMAP));
            s2s.dependsOn("genSrgs", range);
            s2s.getOutputs().upToDateWhen(Constants.CALL_FALSE); //Fucking caching.
           
            // find all the exc & srg files in the resources.
            for (File f : project.fileTree(delayedFile(DevConstants.FML_RESOURCES).call()).getFiles())
            {
View Full Code Here

Examples of net.minecraftforge.gradle.tasks.CopyAssetsTask.dependsOn()

        {
            CopyAssetsTask task = makeTask("copyAssets", CopyAssetsTask.class);
            task.setAssetsDir(delayedFile(ASSETS));
            task.setOutputDir(delayedFile("{ASSET_DIR}"));
            task.setAssetIndex(getAssetIndexClosure());
            task.dependsOn("getAssets");
        }
       
        {
            GenSrgTask task = makeTask("genSrgs", GenSrgTask.class);
            task.setInSrg(delayedFile(PACKAGED_SRG));
View Full Code Here

Examples of net.minecraftforge.gradle.tasks.CopyAssetsTask.dependsOn()

            task.setNotchToMcp(delayedFile(DEOBF_MCP_SRG));
            task.setMcpToSrg(delayedFile(REOBF_SRG));
            task.setMcpToNotch(delayedFile(REOBF_NOTCH_SRG));
            task.setSrgExc(delayedFile(EXC_SRG));
            task.setMcpExc(delayedFile(EXC_MCP));
            task.dependsOn("extractUserDev");
        }
       
        {
            MergeJarsTask task = makeTask("mergeJars", MergeJarsTask.class);
            task.setClient(delayedFile(JAR_CLIENT_FRESH));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.