Methods Summary |
---|
public boolean | equals(java.lang.Object other)
return id==( (Contained) other ).getId();
|
public java.util.Collection | getBag()Returns the bag.
return bag;
|
public Container | getContainer()Returns the container.
return container;
|
public long | getId()Returns the id.
return id;
|
public java.util.Collection | getLazyBag()Returns the lazyBag.
return lazyBag;
|
public int | hashCode()
return new Long(id).hashCode();
|
public void | setBag(java.util.Collection bag)Sets the bag.
this.bag = bag;
|
public void | setContainer(Container container)Sets the container.
this.container = container;
|
public void | setId(long id)Sets the id.
this.id = id;
|
public void | setLazyBag(java.util.Collection lazyBag)Sets the lazyBag.
this.lazyBag = lazyBag;
|