/** * Gets all org.semanticwb.process.model.ExclusiveGateway with a determined Child * * @param value Child of the type org.semanticwb.process.model.GraphicalElement * @return Iterator with all the org.semanticwb.process.model.ExclusiveGateway */ public static java.util.Iterator<org.semanticwb.process.model.ExclusiveGateway> listExclusiveGatewayByChild(org.semanticwb.process.model.GraphicalElement value) { org.semanticwb.model.GenericIterator<org.semanticwb.process.model.ExclusiveGateway> it = new org.semanticwb.model.GenericIterator( value .getSemanticObject() .getModel() .listSubjectsByClass(swp_hasChildInv, value.getSemanticObject(), sclass)); return it; }
/** * Gets all org.semanticwb.process.model.ParallelIntermediateCatchEvent with a determined Child * * @param value Child of the type org.semanticwb.process.model.GraphicalElement * @return Iterator with all the org.semanticwb.process.model.ParallelIntermediateCatchEvent */ public static java.util.Iterator<org.semanticwb.process.model.ParallelIntermediateCatchEvent> listParallelIntermediateCatchEventByChild( org.semanticwb.process.model.GraphicalElement value) { org.semanticwb.model.GenericIterator< org.semanticwb.process.model.ParallelIntermediateCatchEvent> it = new org.semanticwb.model.GenericIterator( value .getSemanticObject() .getModel() .listSubjectsByClass(swp_hasChildInv, value.getSemanticObject(), sclass)); return it; }
/** * Gets all org.semanticwb.process.model.ExclusiveGateway with a determined Parent * * @param value Parent of the type org.semanticwb.process.model.GraphicalElement * @param model Model of the org.semanticwb.process.model.ExclusiveGateway * @return Iterator with all the org.semanticwb.process.model.ExclusiveGateway */ public static java.util.Iterator<org.semanticwb.process.model.ExclusiveGateway> listExclusiveGatewayByParent( org.semanticwb.process.model.GraphicalElement value, org.semanticwb.model.SWBModel model) { org.semanticwb.model.GenericIterator<org.semanticwb.process.model.ExclusiveGateway> it = new org.semanticwb.model.GenericIterator( model .getSemanticObject() .getModel() .listSubjectsByClass(swp_parent, value.getSemanticObject(), sclass)); return it; }