Searched refs:CC (Results 1 - 6 of 6) sorted by relevance

/owl-s/src/org/mindswap/owls/process/
H A DControlConstruct.java92 * Removes the given CC, which is contained in this CC. Control flow is rerouted from
93 * predecessor to successor of the given CC. Data flow from and to the given CC
96 * @param CC the ControlConstruct to remove
98 * @see #getAllBindings() used for retrieving the bindings from and to the given CC
100 public boolean removeConstruct(ControlConstruct CC); argument
/owl-s/src/impl/owls/process/constructs/
H A DIterateImpl.java34 public boolean removeConstruct(ControlConstruct CC) { argument
35 if (getComponent().equals(CC))
H A DIfThenElseImpl.java75 public boolean removeConstruct(ControlConstruct CC) { argument
76 if (getThen().equals(CC))
78 if (getElse().equals(CC))
H A DBagBasedControlConstructImpl.java50 public boolean removeConstruct(ControlConstruct CC) { argument
52 components = (ControlConstructBag) components.remove(CC);
H A DSequenceImpl.java87 public boolean removeConstruct(ControlConstruct CC) { argument
89 components = (ControlConstructList) components.remove(CC);
H A DControlConstructImpl.java97 public boolean removeConstruct(ControlConstruct CC) { argument

Completed in 272 milliseconds