| |
|
| java.lang.Object org.netbeans.modules.dbschema.jdbcimpl.DBElementsCollection
DBElementsCollection | public class DBElementsCollection implements DBElementProperties(Code) | | Support class that manages set of objects and fires events
about its changes.
|
DBElementsCollection | public DBElementsCollection()(Code) | | |
DBElementsCollection | DBElementsCollection(DBElementImpl owner, Object[] template)(Code) | | Parameters: owner - owner of this array at which to fire changes |
changeElements | public void changeElements(DBElement[] elements, int action)(Code) | | |
changeElements | public void changeElements(List elems, int action)(Code) | | |
find | public DBElement find(DBIdentifier id)(Code) | | Find method that looks in member elements
Parameters: id - the identifier (or null) Parameters: types - array of types to test (or null) the element or null |
getOwner | DBElementImpl getOwner()(Code) | | Returns the owner of this collection. This method should only
be used internally and for cloning and archiving.
the owner of this collection |
getTemplate | public Object[] getTemplate()(Code) | | Returns the template for the array of this collection. This method
should only be used internally and for cloning and archiving.
the typed template of this collection |
setElements | public void setElements(DBElement[] elements)(Code) | | Set the collection of elements maintained by this holder to the
supplied array. This method should only be used internally and for
cloning and archiving.
Parameters: elements - the collection of elements maintained by this holder |
setOwner | void setOwner(DBElementImpl owner)(Code) | | Set the owner of this collection to the supplied implementation.
This method should only be used internally and for cloning and
archiving.
Parameters: owner - the owner of this collection |
setTemplate | public void setTemplate(Object[] template)(Code) | | Set the template for the array of this collection to the supplied
array. This template is used so the array returned by getElements is
properly typed. This method should only be used internally and
for cloning and archiving.
Parameters: template - the typed template of this collection |
|
|
|