com.waveset.object
Interface Library.Member

All Known Implementing Classes:
EmailTemplate, Form, Rule
Enclosing interface:
Library

public static interface Library.Member

An interface that may be supported by objects in the library. It is not a requirement to implement this, but if you don't you can't lookup the object by name.


Method Summary
 Library getLibrary()
          Gets the library.
 java.lang.String getName()
          Return the name of this member for searches.
 void setLibrary(Library lib)
          Tell the member about its inclusion in a library.
 

Method Detail

getName

public java.lang.String getName()
Return the name of this member for searches.


setLibrary

public void setLibrary(Library lib)
Tell the member about its inclusion in a library. This is currently used by some PersistentObjects to determine if they are embedded in a library and clean up their XML and to be able to navigate from child to parent.


getLibrary

public Library getLibrary()
Gets the library.