Package java.util

Examples of java.util.HashSet


public class MappingHandler extends BaseAbstractHandler
    implements
    Handler {
    public MappingHandler() {
        if ( (this.validParents == null) && (this.validPeers == null) ) {
            this.validParents = new HashSet();
            this.validParents.add( Mappable.class );

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

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


public class OutPortHandler extends BaseAbstractHandler
    implements
    Handler {
    public OutPortHandler() {
        if ( (this.validParents == null) && (this.validPeers == null) ) {
            this.validParents = new HashSet();
            this.validParents.add( CompositeNode.class );

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

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

public class SwimlaneHandler extends BaseAbstractHandler
    implements
    Handler {
    public SwimlaneHandler() {
        if ( (this.validParents == null) && (this.validPeers == null) ) {
            this.validParents = new HashSet();
            this.validParents.add( Process.class );

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

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

public class GlobalHandler extends BaseAbstractHandler
    implements
    Handler {
    public GlobalHandler() {
        if ( (this.validParents == null) && (this.validPeers == null) ) {
            this.validParents = new HashSet();
            this.validParents.add( Process.class );

            this.validPeers = new HashSet();        
            this.validPeers.add( null );           
            //this.validPeers.add( ImportDescr.class );           

            this.allowNesting = false;
        }
View Full Code Here

  public static final String CONNECTIONS = "BPMN.Connections";

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

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

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

public class EscalationHandler extends BaseAbstractHandler implements Handler {
 
  @SuppressWarnings("unchecked")
  public EscalationHandler() {
    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

    GetWeatherByZipCode zipCode = res.addNewGetWeatherByZipCode();
    zipCode.setZipCode("one");
    TestObject to2 = mapper.map(res, TestObject.class);
    assertEquals(res.getGetWeatherByZipCode().getZipCode(), to2.getOne());

    Set set = new HashSet();
    AnotherTestObject ato = new AnotherTestObject();
    ato.setDay("day");
    set.add(ato);
    to.setSetToArray(set);

    AnotherTestObject ato2 = new AnotherTestObject();
    ato2.setDay("day");
    to.addAnotherTestObject(ato2);
View Full Code Here

    public Set convertTo(Set source, Set destination) {
      return convert(source, destination);
    }

    private Set convert(Set source, Set destination) {
      Set result = new HashSet();
      for (Object object : source) {
        if (object instanceof BidirectionalManyConvert) {
          result.add(mapper.map(object, BidirectionalMany.class));

        } else {
          result.add(mapper.map(object, BidirectionalManyConvert.class));
        }
      }
      return result;
    }
View Full Code Here

                Object param = getter.getValue().invoke(obj);

                if (getter.getValue().getReturnType().isArray()) {
                    param = ((Object[]) param).clone();
                } else if (Collection.class.isAssignableFrom(getter.getValue().getReturnType())) {
                    param = new HashSet((Collection) param);
                } else if (Map.class.isAssignableFrom(getter.getValue().getReturnType())) {
                    param = new HashMap((Map) param);
                }

                setter.invoke(newObj, param);
View Full Code Here

public class ImportHandler extends BaseAbstractHandler implements Handler {

  public ImportHandler() {
    if ((this.validParents == null) && (this.validPeers == null)) {
      this.validParents = new HashSet();
      this.validParents.add(Process.class);

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

      this.allowNesting = false;
    }
  }
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.