com.developmentontheedge.application
Interface ApplicationDocument
- All Known Implementing Classes:
- DiagramDocument
- public interface ApplicationDocument
Interface for control documents.
Used by classes implements DocumentFactory and by some actions.
- See Also: DocumentFactory
| Method Summary |
void | close() Close document. |
String | getDisplayName() Returns display name of the document. |
close
public void close()
- Close document.
Document should release all resource, save its state and other...
After calling this method no one method of ApplicationDocument never called.
getDisplayName
public String getDisplayName()
- Returns display name of the document.
- Returns: Display name of the document.
BOTTOM