| org.eclipse.ui.views.framelist.IFrameSource
All known Subclasses: org.eclipse.ui.views.framelist.TreeViewerFrameSource,
IFrameSource | public interface IFrameSource (Code) | | A frame source is the source of frames which appear in a frame list.
The frame list asks for the current frame whenever it switches
to another frame, so that the context can be restored when the
frame becomes current again.
See Also: FrameList |
Field Summary | |
final public static int | CURRENT_FRAME Frame constant indicating the current frame. | final public static int | FULL_CONTEXT Flag constant indicating that the full context should be captured. | final public static int | PARENT_FRAME Frame constant indicating the parent frame. | final public static int | SELECTION_FRAME Frame constant indicating the frame for the selection. |
Method Summary | |
public Frame | getFrame(int whichFrame, int flags) Returns a new frame describing the state of the source. |
CURRENT_FRAME | final public static int CURRENT_FRAME(Code) | | Frame constant indicating the current frame.
|
FULL_CONTEXT | final public static int FULL_CONTEXT(Code) | | Flag constant indicating that the full context should be captured.
|
PARENT_FRAME | final public static int PARENT_FRAME(Code) | | Frame constant indicating the parent frame.
|
SELECTION_FRAME | final public static int SELECTION_FRAME(Code) | | Frame constant indicating the frame for the selection.
|
getFrame | public Frame getFrame(int whichFrame, int flags)(Code) | | Returns a new frame describing the state of the source.
If the FULL_CONTEXT flag is specified, then the full
context of the source should be captured by the frame.
Otherwise, only the visible aspects of the frame, such as the name and tool tip text,
will be used.
Parameters: whichFrame - one of the frame constants defined in this interface Parameters: flags - a bit-wise OR of the flag constants defined in this interface a new frame describing the current state of the source |
|
|