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; }
public boolean isEmpty() { return data.isEmpty(); }