List of usage examples for java.util AbstractCollection add
public boolean add(E e)
From source file:org.ontologyengineering.conceptdiagrams.web.shared.concretesyntax.ConcreteBoundaryRectangle.java
@Override public AbstractCollection<ConcreteZone> getAllZones() { AbstractCollection<ConcreteZone> result = new HashSet<ConcreteZone>(); result.add(getMainZone()); return result; }