站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc 5.0.0

EditorCookie.Observable (NetBeans Text API) - NetBeans API Javadoc 5.0.0

 

org.openide.cookies
Interface EditorCookie.Observable

All Superinterfaces:
EditorCookie, LineCookie, Node.Cookie
Enclosing interface:
EditorCookie

public static interface EditorCookie.Observable
extends EditorCookie

The interface extends EditorCookie and allows observing changes in state of the text document.

Since:
3.40

Nested Class Summary
 
Nested classes inherited from class org.openide.cookies.EditorCookie
EditorCookie.Observable
 
Field Summary
static String PROP_DOCUMENT
          This property is fired when the result of EditorCookie.getDocument() has changed.
static String PROP_MODIFIED
          This property is fired when modified state of the document has changed.
static String PROP_OPENED_PANES
          This property is fired when list of opened panes for the document has changed.
 
Method Summary
 void addPropertyChangeListener(PropertyChangeListener l)
          Add a PropertyChangeListener to the listener list.
 void removePropertyChangeListener(PropertyChangeListener l)
          Remove a PropertyChangeListener from the listener list.
 
Methods inherited from interface org.openide.cookies.EditorCookie
close, getDocument, getOpenedPanes, isModified, open, openDocument, prepareDocument, saveDocument
 
Methods inherited from interface org.openide.cookies.LineCookie
getLineSet
 

Field Detail

PROP_DOCUMENT

public static final String PROP_DOCUMENT
This property is fired when the result of EditorCookie.getDocument() has changed. Typically it is after closing the editor.

See Also:
Constant Field Values

PROP_MODIFIED

public static final String PROP_MODIFIED
This property is fired when modified state of the document has changed. See EditorCookie.isModified().

See Also:
Constant Field Values

PROP_OPENED_PANES

public static final String PROP_OPENED_PANES
This property is fired when list of opened panes for the document has changed. See EditorCookie.getOpenedPanes().

See Also:
Constant Field Values
Method Detail

addPropertyChangeListener

public void addPropertyChangeListener(PropertyChangeListener l)
Add a PropertyChangeListener to the listener list.

Parameters:
l - the PropertyChangeListener to be added

removePropertyChangeListener

public void removePropertyChangeListener(PropertyChangeListener l)
Remove a PropertyChangeListener from the listener list.

Parameters:
l - the PropertyChangeListener to be removed

 

Built on May 3 2007.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.