Package org.openbp.common.util

Examples of org.openbp.common.util.SortingArrayList


   * Default constructor.
   */
  public ItemTypeRegistry()
  {
    nameMap = new HashMap();
    typeList = new SortingArrayList();
  }
View Full Code Here


   * @param socket The socket to add
   */
  public void addSocket(ActivitySocket socket)
  {
    if (socketList == null)
      socketList = new SortingArrayList();
    socketList.add(socket);

    socket.setActivity(this);
  }
View Full Code Here

   * @param node The node to add
   */
  public void addNode(Node node)
  {
    if (nodeList == null)
      nodeList = new SortingArrayList();
    nodeList.add(node);

    // Set the node process to this
    node.setProcess(this);
  }
View Full Code Here

   * @param nodeGroup The node to add
   */
  public void addNodeGroup(NodeGroup nodeGroup)
  {
    if (nodeGroupList == null)
      nodeGroupList = new SortingArrayList();
    nodeGroupList.add(nodeGroup);

    // Set the node process to this
    nodeGroup.setProcess(this);
  }
View Full Code Here

   * @param controlLink The control link to add
   */
  public void addControlLink(ControlLink controlLink)
  {
    if (controlLinkList == null)
      controlLinkList = new SortingArrayList();
    controlLinkList.add(controlLink);

    controlLink.setProcess(this);
  }
View Full Code Here

   * @param dataLink The data link to add
   */
  public void addDataLink(DataLink dataLink)
  {
    if (dataLinkList == null)
      dataLinkList = new SortingArrayList();
    dataLinkList.add(dataLink);

    dataLink.setProcess(this);
  }
View Full Code Here

   * @param processVariable The process variable to add
   */
  public void addProcessVariable(ProcessVariable processVariable)
  {
    if (processVariableList == null)
      processVariableList = new SortingArrayList();
    processVariableList.add(processVariable);

    processVariable.setProcess(this);
  }
View Full Code Here

   * @param textElement The text element to add
   */
  public void addTextElement(TextElement textElement)
  {
    if (textElementList == null)
      textElementList = new SortingArrayList();
    textElementList.add(textElement);

    textElement.setProcess(this);
  }
View Full Code Here

   * @param param The parameter to add
   */
  public void addParam(ActivityParam param)
  {
    if (paramList == null)
      paramList = new SortingArrayList();
    paramList.add(param);

    param.setSocket(this);
  }
View Full Code Here

   * @param socket The socket to add
   */
  public void addSocket(NodeSocket socket)
  {
    if (socketList == null)
      socketList = new SortingArrayList();
    socketList.add(socket);

    socket.setNode(this);
  }
View Full Code Here

TOP

Related Classes of org.openbp.common.util.SortingArrayList

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.