Example usage for java.util AbstractCollection add

List of usage examples for java.util AbstractCollection add

Introduction

In this page you can find the example usage for java.util AbstractCollection add.

Prototype

public boolean add(E e) 

Source Link

Usage

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;
}