| |
|
| java.lang.Object java.util.EventObject com.jidesoft.dialog.PageEvent
PageEvent | public class PageEvent extends EventObject (Code) | | An EventObject that adds support for
AbstractPage objects as the event source.
|
Field Summary | |
final public static int | PAGE_CLOSED This event is delivered when the page is closed. | final public static int | PAGE_CLOSING This event is delivered when the page is about to close. | final public static int | PAGE_EVENT_FIRST The first number in the range of IDs used for AbstractPage events. | final public static int | PAGE_EVENT_LAST The last number in the range of IDs used for AbstractPage events. | final public static int | PAGE_OPENED This event is delivered when the the data becomes invalid. |
Constructor Summary | |
public | PageEvent(Object source, int id) Constructs an AbstractPageEvent object. |
PAGE_CLOSED | final public static int PAGE_CLOSED(Code) | | This event is delivered when the page is closed.
|
PAGE_CLOSING | final public static int PAGE_CLOSING(Code) | | This event is delivered when the page is about to close.
|
PAGE_EVENT_FIRST | final public static int PAGE_EVENT_FIRST(Code) | | The first number in the range of IDs used for AbstractPage events.
|
PAGE_EVENT_LAST | final public static int PAGE_EVENT_LAST(Code) | | The last number in the range of IDs used for AbstractPage events.
|
PAGE_OPENED | final public static int PAGE_OPENED(Code) | | This event is delivered when the the data becomes invalid.
|
PageEvent | public PageEvent(Object source, int id)(Code) | | Constructs an AbstractPageEvent object.
Parameters: source - the AbstractPage object that originated the event Parameters: id - an integer indicating the type of event |
getID | public int getID()(Code) | | Returns the event type.
event id. |
paramString | public String paramString()(Code) | | Returns a parameter string identifying this event.
This method is useful for event logging and for debugging.
a string identifying the event and its attributes |
setID | public void setID(int id)(Code) | | Sets event type.
Parameters: id - |
|
|
|