Package org.bnplusplus.model.bnpp

Examples of org.bnplusplus.model.bnpp.Participant


         
          Thing thing = ((IThingMappingModel) controller.getMappingModel()).getThing(iComponent);

          if (thing instanceof Participant)
          {
            Participant p = (Participant) thing;

            if (p != null)
            { 
              mapC = addNode(n, p, mapC);

              for (ParticipantClassification pc : p.getParticipantClassificationLnkVector())
              {
                //System.out.println("pc "+pc.getFirstName());
                mapC = addNode(n, pc, mapC);
              }           
            }
View Full Code Here


              LinkedList<Participant> listParticipant = new LinkedList<Participant>();
              for (Event pathEvent : pathway.getEventLnkVector())//Calculate amount of Proteins in the pathway
              {
                for (Role pathRole : pathEvent.getContainedRoleLnkVector())
                {
                  Participant pathParticipant = pathRole.getParticipantLnk();
                  if (!listParticipant.contains(pathParticipant))
                  {
                    listParticipant.add(pathParticipant);                     
                  }
                }                 
View Full Code Here

            {               
              for (Role role : event.getContainedRoleLnkVector())
              {
                if (role.getParticipantLnk() != null)
                {
                  Participant participant = role.getParticipantLnk();
                  mapExpandEvent.put(actPath, event);
                  mapExpandPathway.put(actPath, participant);
                }                 
              }
            }             
View Full Code Here

TOP

Related Classes of org.bnplusplus.model.bnpp.Participant

Copyright © 2018 www.massapicom. 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.