Package java.util

Examples of java.util.HashSet


    public static final String LANES = "BPMN.Lanes";

  @SuppressWarnings("unchecked")
  public LaneHandler() {
    if ((this.validParents == null) && (this.validPeers == null)) {
      this.validParents = new HashSet();
      this.validParents.add(RuleFlowProcess.class);

      this.validPeers = new HashSet();
          this.validPeers.add(null);
          this.validPeers.add(Lane.class);
          this.validPeers.add(Variable.class);
          this.validPeers.add(Node.class);
          this.validPeers.add(SequenceFlow.class);
View Full Code Here


    this.childGroups = childs;
  }

  public void addChildGroup(final ContentItemGroup child) {
    if (this.childGroups == null) {
      this.childGroups = new HashSet();
    }
    this.childGroups.add(child);
  }
View Full Code Here

public class ErrorHandler extends BaseAbstractHandler implements Handler {
 
  @SuppressWarnings("unchecked")
  public ErrorHandler() {
    if ((this.validParents == null) && (this.validPeers == null)) {
      this.validParents = new HashSet();
      this.validParents.add(Definitions.class);

      this.validPeers = new HashSet();
      this.validPeers.add(null);
            this.validPeers.add(ItemDefinition.class);
            this.validPeers.add(Message.class);
            this.validPeers.add(Interface.class);
            this.validPeers.add(Escalation.class);
View Full Code Here

public class MessageHandler extends BaseAbstractHandler implements Handler {
 
  @SuppressWarnings("unchecked")
  public MessageHandler() {
    if ((this.validParents == null) && (this.validPeers == null)) {
      this.validParents = new HashSet();
      this.validParents.add(Definitions.class);

      this.validPeers = new HashSet();
      this.validPeers.add(null);
            this.validPeers.add(ItemDefinition.class);
            this.validPeers.add(Message.class);
            this.validPeers.add(Interface.class);
            this.validPeers.add(Escalation.class);
View Full Code Here

public class InMessageRefHandler extends BaseAbstractHandler implements Handler {
 
  @SuppressWarnings("unchecked")
  public InMessageRefHandler() {
    if ((this.validParents == null) && (this.validPeers == null)) {
      this.validParents = new HashSet();
      this.validParents.add(Operation.class);

      this.validPeers = new HashSet();
      this.validPeers.add(null);

      this.allowNesting = false;
    }
  }
View Full Code Here

public class InterfaceHandler extends BaseAbstractHandler implements Handler {
 
  @SuppressWarnings("unchecked")
  public InterfaceHandler() {
    if ((this.validParents == null) && (this.validPeers == null)) {
      this.validParents = new HashSet();
      this.validParents.add(Definitions.class);

      this.validPeers = new HashSet();
      this.validPeers.add(null);
            this.validPeers.add(ItemDefinition.class);
            this.validPeers.add(Message.class);
            this.validPeers.add(Interface.class);
            this.validPeers.add(Escalation.class);
View Full Code Here

        DynamicCommand dynamicCmd = (DynamicCommand)command;
       
        Iterator columns = dynamicCmd.getAsColumns().iterator();

        Set groups = new HashSet();
       
        //if there is no into group, just create temp metadata ids
        if (dynamicCmd.getIntoGroup() == null) {
            while (columns.hasNext()) {
                ElementSymbol column = (ElementSymbol)columns.next();
View Full Code Here

            return doc;
        }
       
        // Get all the valid nodes to be marked as included.
        Collection validElements = ElementCollectorVisitor.getElements(select, true);
        HashSet elements = new HashSet(validElements.size());
        for (final Iterator i = validElements.iterator(); i.hasNext();) {
            final ElementSymbol element = (ElementSymbol)i.next();
            elements.add(element.getCanonicalName());
        }
       
        // keep the nodes given mark the rest of the nodes to be elementated
        return MarkExcludeVisitor.markExcludedNodes(doc, elements);
     }   
View Full Code Here

   
    private ObjectIDFactory defaultFactory;

    public IDGenerator() {
        this.factories = new HashMap();
        this.protocols = new HashSet();
       
        // Initialize default factory ...
        final ObjectIDFactory newDefaultFactory = new UUIDFactory();
        addFactory( newDefaultFactory );
        if ( !this.hasDefaultFactory() ) {
View Full Code Here

            // the version
            version = ((DERInteger)content.getObjectAt(0)).getValue().intValue();

            // the digestAlgorithms
            digestalgos = new HashSet();
            Enumeration e = ((ASN1Set)content.getObjectAt(1)).getObjects();
            while (e.hasMoreElements())
            {
                ASN1Sequence s = (ASN1Sequence)e.nextElement();
                DERObjectIdentifier o = (DERObjectIdentifier)s.getObjectAt(0);
View Full Code Here

TOP

Related Classes of java.util.HashSet

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.