Ejemplo n.º 1
0
  private Set(Type elementType, ShareableValuesHashSet data) {
    super();

    if (data.isEmpty()) this.elementType = voidType;
    else this.elementType = elementType;

    this.setType = typeFactory.setType(this.elementType);

    this.data = data;
  }
Ejemplo n.º 2
0
 public boolean isEmpty() {
   return data.isEmpty();
 }