Eclipse Platform
2.1

Uses of Class
org.eclipse.swt.widgets.Composite

Packages that use Composite
org.eclipse.compare Provides support for performing structural and textual compare operations on arbitrary data and displaying the results. 
org.eclipse.compare.contentmergeviewer Support for compare and merge viewers which show the content side-by-side. 
org.eclipse.compare.structuremergeviewer Provides support for finding and displaying the differences between hierarchically structured data. 
org.eclipse.debug.ui Provides a generic debugger user interface that clients may customize via standard workbench extension points. 
org.eclipse.jface.action Provides support for shared UI resources such as menus, tool bars, and status lines. 
org.eclipse.jface.dialogs Provides support for dialogs. 
org.eclipse.jface.preference Provides a framework for preferences. 
org.eclipse.jface.text Provides a framework for creating, manipulating, displaying and editing text documents. 
org.eclipse.jface.text.source Provides a framework for connecting document regions with annotations and for displaying those annotations in combination with an ITextViewer
org.eclipse.jface.viewers Provides a framework for viewers, which are model-based content adapters for SWT widgets. 
org.eclipse.jface.window Provides a general framework for creating and managing windows. 
org.eclipse.jface.wizard Provides a framework for wizards. 
org.eclipse.swt.custom SWT Custom widgets. 
org.eclipse.swt.layout This package contains the SWT layout classes. 
org.eclipse.swt.ole.win32 SWT Win32 OLE implementation classes. 
org.eclipse.swt.widgets SWT widget public API classes. 
org.eclipse.ui Application programming interfaces for interaction with and extension of the Eclipse Platform User Interface. 
org.eclipse.ui.dialogs Classes for standard dialogs, wizards, and preference pages in the Eclipse Platform User Interface. 
org.eclipse.ui.editors.text Provides a standard text editor and a file-based document provider. 
org.eclipse.ui.part Classes for the creation of workbench parts that integrate with the Eclipse Platform User Interface. 
org.eclipse.ui.texteditor Provides a framework for text editors obeying to the desktop rules. 
org.eclipse.ui.views.bookmarkexplorer Provides the standard Bookmarks view which displays bookmarks on resources. 
org.eclipse.ui.views.contentoutline Provides the standard Content Outline view which can show the active editor's custom outline for the document being edited. 
org.eclipse.ui.views.navigator Provides the standard Resource Navigator view which presents the tree of resources in the workspace. 
org.eclipse.ui.views.properties Provides the standard Property Sheet view which displays custom properties of the active workbench part's current selection. 
org.eclipse.ui.views.tasklist Provides the standard Task List view for displaying tasks and problem annotations on resources. 
org.eclipse.ui.wizards.datatransfer Provides the standard Import and Export wizards for moving resources into and out of the workspace. 
 

Uses of Composite in org.eclipse.compare
 

Subclasses of Composite in org.eclipse.compare
 class CompareViewerPane
          A CompareViewerPane is a convenience class which installs a CLabel and a Toolbar in a ViewForm.
 class CompareViewerSwitchingPane
          A custom CompareViewerPane that supports dynamic viewer switching.
 class Splitter
          The Splitter adds support for nesting to a SashForm.
 

Methods in org.eclipse.compare with parameters of type Composite
static ToolBarManager CompareViewerPane.getToolBarManager(Composite parent)
          Returns a ToolBarManager if the given parent is a CompareViewerPane or null otherwise.
static void CompareViewerPane.clearToolBar(Composite parent)
          Clears tool items in the CompareViewerPane's control bar.
static Viewer CompareUI.findStructureViewer(Viewer oldViewer, ICompareInput input, Composite parent, CompareConfiguration configuration)
          Returns a structure compare viewer based on an old viewer and an input object.
static Viewer CompareUI.findContentViewer(Viewer oldViewer, ICompareInput input, Composite parent, CompareConfiguration configuration)
          Returns a content compare viewer based on an old viewer and an input object.
static Viewer CompareUI.findContentViewer(Viewer oldViewer, Object input, Composite parent, CompareConfiguration configuration)
          Returns a content compare viewer based on an old viewer and an input object.
 Control CompareEditorInput.createContents(Composite parent)
          Create the SWT controls that are used to display the result of the compare operation.
 Viewer CompareEditorInput.createDiffViewer(Composite parent)
          Factory method for creating a differences viewer for the top left pane.
 Viewer CompareEditorInput.findStructureViewer(Viewer oldViewer, ICompareInput input, Composite parent)
          Implements the dynamic viewer switching for structure viewers.
 Viewer CompareEditorInput.findContentViewer(Viewer oldViewer, ICompareInput input, Composite parent)
          Implements the dynamic viewer switching for content viewers.
 Viewer IViewerCreator.createViewer(Composite parent, CompareConfiguration config)
          Creates a new viewer under the given SWT parent control.
protected  Control EditionSelectionDialog.createDialogArea(Composite parent2)
           
protected  void EditionSelectionDialog.createButtonsForButtonBar(Composite parent)
           
 

Constructors in org.eclipse.compare with parameters of type Composite
CompareViewerPane(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Splitter(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
CompareViewerSwitchingPane(Composite parent, int style)
          Creates a CompareViewerSwitchingPane as a child of the given parent and with the specified SWT style bits.
CompareViewerSwitchingPane(Composite parent, int style, boolean visibility)
          Creates a CompareViewerSwitchingPane as a child of the given parent and with the specified SWT style bits.
 

Uses of Composite in org.eclipse.compare.contentmergeviewer
 

Methods in org.eclipse.compare.contentmergeviewer with parameters of type Composite
protected abstract  void ContentMergeViewer.createControls(Composite composite)
          Creates the SWT controls for the ancestor, left, and right content areas of this compare viewer.
protected  Control ContentMergeViewer.buildControl(Composite parent)
          Builds the SWT controls for the three areas of a compare/merge viewer.
protected  void TextMergeViewer.createControls(Composite composite)
          Creates the specific SWT controls for the content areas.
 

Constructors in org.eclipse.compare.contentmergeviewer with parameters of type Composite
TextMergeViewer(Composite parent, CompareConfiguration configuration)
          Creates a text merge viewer under the given parent control.
TextMergeViewer(Composite parent, int style, CompareConfiguration configuration)
          Creates a text merge viewer under the given parent control.
 

Uses of Composite in org.eclipse.compare.structuremergeviewer
 

Constructors in org.eclipse.compare.structuremergeviewer with parameters of type Composite
DiffTreeViewer(Composite parent, CompareConfiguration configuration)
          Creates a new viewer under the given SWT parent and with the specified configuration.
StructureDiffViewer(Composite parent, CompareConfiguration configuration)
          Creates a new viewer under the given SWT parent with the specified configuration.
 

Uses of Composite in org.eclipse.debug.ui
 

Methods in org.eclipse.debug.ui with parameters of type Composite
protected  Button AbstractLaunchConfigurationTab.createPushButton(Composite parent, String label, Image image)
          Creates and returns a new push button with the given label and/or image.
protected  Button AbstractLaunchConfigurationTab.createRadioButton(Composite parent, String label)
          Creates and returns a new radio button with the given label and/or image.
protected  void AbstractLaunchConfigurationTab.createVerticalSpacer(Composite comp, int colSpan)
          Create some empty space.
 void CommonTab.createControl(Composite parent)
           
 void AbstractDebugView.createPartControl(Composite parent)
          Creates this view's underlying viewer and actions.
protected abstract  Viewer AbstractDebugView.createViewer(Composite parent)
          Creates and returns this view's underlying viewer.
 void ILaunchConfigurationTab.createControl(Composite parent)
          Creates the top level control for this launch configuration tab under the given parent composite.
 

Uses of Composite in org.eclipse.jface.action
 

Methods in org.eclipse.jface.action with parameters of type Composite
 void IContributionItem.fill(Composite parent)
          Fills the given composite control with controls representing this contribution item.
 void ContributionItem.fill(Composite parent)
          The default implementation of this IContributionItem method does nothing.
 void MenuManager.fill(Composite parent)
           
 org.eclipse.jface.action.StatusLine StatusLineManager.createControl(Composite parent)
          Creates and returns this manager's status line control.
 void ActionContributionItem.fill(Composite parent)
          The ActionContributionItem implementation of this IContributionItem method creates an SWT Button for the action using the action's style.
 void SubMenuManager.fill(Composite parent)
           
protected abstract  Control ControlContribution.createControl(Composite parent)
          Creates and returns the control for this contribution item under the given parent composite.
 void ControlContribution.fill(Composite parent)
          The control item implementation of this IContributionItem method calls the createControl framework method.
 void SubContributionItem.fill(Composite parent)
           
 ToolBar ToolBarManager.createControl(Composite parent)
          Creates and returns this manager's tool bar control.
 

Uses of Composite in org.eclipse.jface.dialogs
 

Subclasses of Composite in org.eclipse.jface.dialogs
 class ProgressIndicator
          A control for showing progress feedback for a long running operation.
 

Methods in org.eclipse.jface.dialogs that return Composite
protected  Composite TitleAreaDialog.getTitleArea()
          Deprecated.  
 

Methods in org.eclipse.jface.dialogs with parameters of type Composite
protected  Button Dialog.createButton(Composite parent, int id, String label, boolean defaultButton)
          Creates a new button with the given id.
protected  Control Dialog.createButtonBar(Composite parent)
          Creates and returns the contents of this dialog's button bar.
protected  void Dialog.createButtonsForButtonBar(Composite parent)
          Adds buttons to this dialog's button bar.
protected  Control Dialog.createContents(Composite parent)
          The Dialog implementation of this Window method creates and lays out the top level composite for the dialog, and determines the appropriate horizontal and vertical dialog units based on the font size.
protected  Control Dialog.createDialogArea(Composite parent)
          Creates and returns the contents of the upper part of this dialog (above the button bar).
protected  Control IconAndMessageDialog.createMessageArea(Composite composite)
          Create the area the message will be shown in.
protected  Control IconAndMessageDialog.createButtonBar(Composite parent)
           
protected  Control IconAndMessageDialog.createContents(Composite parent)
           
protected  void IconAndMessageDialog.createDialogAndButtonArea(Composite parent)
          Create the dialog area and the button bar for the receiver.
protected  void MessageDialog.createButtonsForButtonBar(Composite parent)
           
protected  Control MessageDialog.createCustomArea(Composite parent)
          Creates and returns the contents of an area of the dialog which appears below the message and above the button bar.
protected  Control MessageDialog.createDialogArea(Composite parent)
          This implementation of the Dialog framework method creates and lays out a composite and calls createMessageArea and createCustomArea to populate it.
protected  Button MessageDialog.createButton(Composite parent, int id, String label, boolean defaultButton)
           
protected  void InputDialog.createButtonsForButtonBar(Composite parent)
           
protected  Control InputDialog.createDialogArea(Composite parent)
           
protected  void ErrorDialog.createButtonsForButtonBar(Composite parent)
           
protected  Control ErrorDialog.createDialogArea(Composite parent)
          This implementation of the Dialog framework method creates and lays out a composite and calls createMessageArea and createCustomArea to populate it.
protected  void ErrorDialog.createDialogAndButtonArea(Composite parent)
           
protected  List ErrorDialog.createDropDownList(Composite parent)
          Create this dialog's drop-down list component.
protected  void ProgressMonitorDialog.createButtonsForButtonBar(Composite parent)
           
protected  Control ProgressMonitorDialog.createDialogArea(Composite parent)
           
 void IDialogPage.createControl(Composite parent)
          Creates the top level control for this dialog page under the given parent composite.
protected  Control TitleAreaDialog.createContents(Composite parent)
           
protected  Control TitleAreaDialog.createDialogArea(Composite parent)
          Creates and returns the contents of the upper part of this dialog (above the button bar).
 

Constructors in org.eclipse.jface.dialogs with parameters of type Composite
ProgressIndicator(Composite parent)
          Create a ProgressIndicator as a child under the given parent.
 

Uses of Composite in org.eclipse.jface.preference
 

Methods in org.eclipse.jface.preference that return Composite
 Composite ListEditor.getButtonBoxControl(Composite parent)
          Returns this field editor's button box containing the Add, Remove, Up, and Down button.
 Composite RadioGroupFieldEditor.getRadioBoxControl(Composite parent)
          Returns this field editor's radio group control.
protected  Composite PreferencePage.createNoteComposite(Font font, Composite composite, String title, String message)
          Creates a composite with a highlighted Note entry and a message text.
protected  Composite FieldEditorPreferencePage.getFieldEditorParent()
          Returns a parent composite for a field editor.
 

Methods in org.eclipse.jface.preference with parameters of type Composite
protected  void FieldEditor.checkParent(Control control, Composite parent)
          Checks if the given parent is the current parent of the supplied control; throws an (unchecked) exception if they are not correctly related.
protected  void FieldEditor.createControl(Composite parent)
          Creates this field editor's main control containing all of its basic controls.
protected abstract  void FieldEditor.doFillIntoGrid(Composite parent, int numColumns)
          Fills this field editor's basic controls into the given parent.
 void FieldEditor.fillIntoGrid(Composite parent, int numColumns)
          Fills this field editor's basic controls into the given parent.
 Label FieldEditor.getLabelControl(Composite parent)
          Returns this field editor's label component.
 void FieldEditor.setEnabled(boolean enabled, Composite parent)
          Set whether or not the controls in the field editor are enabled.
protected  void ListEditor.doFillIntoGrid(Composite parent, int numColumns)
           
 Composite ListEditor.getButtonBoxControl(Composite parent)
          Returns this field editor's button box containing the Add, Remove, Up, and Down button.
 List ListEditor.getListControl(Composite parent)
          Returns this field editor's list control.
 void ListEditor.setEnabled(boolean enabled, Composite parent)
           
protected  void StringFieldEditor.doFillIntoGrid(Composite parent, int numColumns)
          Fills this field editor's basic controls into the given parent.
 Text StringFieldEditor.getTextControl(Composite parent)
          Returns this field editor's text control.
 void StringFieldEditor.setEnabled(boolean enabled, Composite parent)
           
protected  void StringButtonFieldEditor.doFillIntoGrid(Composite parent, int numColumns)
           
protected  Button StringButtonFieldEditor.getChangeControl(Composite parent)
           
protected  void ColorFieldEditor.doFillIntoGrid(Composite parent, int numColumns)
           
protected  Button ColorFieldEditor.getChangeControl(Composite parent)
          Returns the change button for this field editor.
 void ColorFieldEditor.setEnabled(boolean enabled, Composite parent)
           
protected  void RadioGroupFieldEditor.doFillIntoGrid(Composite parent, int numColumns)
           
 Composite RadioGroupFieldEditor.getRadioBoxControl(Composite parent)
          Returns this field editor's radio group control.
 void RadioGroupFieldEditor.setEnabled(boolean enabled, Composite parent)
           
protected  void PreferencePage.contributeButtons(Composite parent)
          Contributes additional buttons to the given composite.
protected abstract  Control PreferencePage.createContents(Composite parent)
          Creates and returns the SWT control for the customized body of this preference page under the given parent composite.
 void PreferencePage.createControl(Composite parent)
          The PreferencePage implementation of this IDialogPage method creates a description label and button bar for the page.
protected  Label PreferencePage.createDescriptionLabel(Composite parent)
          Creates and returns an SWT label under the given composite.
protected  Composite PreferencePage.createNoteComposite(Font font, Composite composite, String title, String message)
          Creates a composite with a highlighted Note entry and a message text.
protected  Control FieldEditorPreferencePage.createContents(Composite parent)
           
protected  void FontFieldEditor.doFillIntoGrid(Composite parent, int numColumns)
           
protected  Button FontFieldEditor.getChangeControl(Composite parent)
          Returns the change button for this field editor.
protected  Label FontFieldEditor.getValueControl(Composite parent)
          Returns the value control for this field editor.
 void FontFieldEditor.setEnabled(boolean enabled, Composite parent)
           
protected  void PreferenceDialog.createButtonsForButtonBar(Composite parent)
           
protected  Control PreferenceDialog.createContents(Composite parent)
           
protected  Control PreferenceDialog.createDialogArea(Composite parent)
           
protected  void BooleanFieldEditor.doFillIntoGrid(Composite parent, int numColumns)
           
protected  Button BooleanFieldEditor.getChangeControl(Composite parent)
          Returns the change button for this field editor.
 void BooleanFieldEditor.setEnabled(boolean enabled, Composite parent)
           
 

Constructors in org.eclipse.jface.preference with parameters of type Composite
FieldEditor(String name, String labelText, Composite parent)
          Creates a new field editor.
ListEditor(String name, String labelText, Composite parent)
          Creates a list field editor.
PathEditor(String name, String labelText, String dirChooserLabelText, Composite parent)
          Creates a path field editor.
StringFieldEditor(String name, String labelText, int width, int strategy, Composite parent)
          Creates a string field editor.
StringFieldEditor(String name, String labelText, int width, Composite parent)
          Creates a string field editor.
StringFieldEditor(String name, String labelText, Composite parent)
          Creates a string field editor of unlimited width.
StringButtonFieldEditor(String name, String labelText, Composite parent)
          Creates a string button field editor.
DirectoryFieldEditor(String name, String labelText, Composite parent)
          Creates a directory field editor.
ColorFieldEditor(String name, String labelText, Composite parent)
          Creates a color field editor.
RadioGroupFieldEditor(String name, String labelText, int numColumns, String[][] labelAndValues, Composite parent)
          Creates a radio group field editor.
RadioGroupFieldEditor(String name, String labelText, int numColumns, String[][] labelAndValues, Composite parent, boolean useGroup)
          Creates a radio group field editor.
IntegerFieldEditor(String name, String labelText, Composite parent)
          Creates an integer field editor.
IntegerFieldEditor(String name, String labelText, Composite parent, int textLimit)
          Creates an integer field editor.
FileFieldEditor(String name, String labelText, Composite parent)
          Creates a file field editor.
FileFieldEditor(String name, String labelText, boolean enforceAbsolute, Composite parent)
          Creates a file field editor.
ColorSelector(Composite parent)
          Create a new instance of the reciever and the button that it wrappers in the supplied parent Composite
FontFieldEditor(String name, String labelText, String previewAreaText, Composite parent)
          Creates a font field editor with an optional preview area.
FontFieldEditor(String name, String labelText, Composite parent)
          Creates a font field editor without a preview.
BooleanFieldEditor(String name, String labelText, int style, Composite parent)
          Creates a boolean field editor in the given style.
BooleanFieldEditor(String name, String label, Composite parent)
          Creates a boolean field editor in the default style.
 

Uses of Composite in org.eclipse.jface.text
 

Methods in org.eclipse.jface.text with parameters of type Composite
protected  StyledText TextViewer.createTextWidget(Composite parent, int styles)
          Factory method to create the text widget to be used as the viewer's text widget.
protected  void TextViewer.createControl(Composite parent, int styles)
          Creates the viewer's SWT control.
 

Constructors in org.eclipse.jface.text with parameters of type Composite
PropagatingFontFieldEditor(String name, String labelText, Composite parent, String defaultFontLabel)
          Creates a new font field editor with the given parameters.
TextViewer(Composite parent, int styles)
          Create a new text viewer with the given SWT style bits.
 

Uses of Composite in org.eclipse.jface.text.source
 

Methods in org.eclipse.jface.text.source with parameters of type Composite
 Control IVerticalRulerColumn.createControl(CompositeRuler parentRuler, Composite parentControl)
          Creates the column's SWT control.
 Control AnnotationRulerColumn.createControl(CompositeRuler parentRuler, Composite parentControl)
           
 Control VerticalRuler.createControl(Composite parent, ITextViewer textViewer)
           
protected  void SourceViewer.createControl(Composite parent, int styles)
           
 Control CompositeRuler.createControl(Composite parent, ITextViewer textViewer)
           
 Control OutlinerRulerColumn.createControl(CompositeRuler parentRuler, Composite parentControl)
           
 Control IVerticalRuler.createControl(Composite parent, ITextViewer textViewer)
          Creates the ruler's SWT control.
 Control OverviewRuler.createControl(Composite parent, ITextViewer textViewer)
           
 Control LineNumberRulerColumn.createControl(CompositeRuler parentRuler, Composite parentControl)
           
 

Constructors in org.eclipse.jface.text.source with parameters of type Composite
SourceViewer(Composite parent, IVerticalRuler ruler, int styles)
          Constructs a new source viewer.
SourceViewer(Composite parent, IVerticalRuler verticalRuler, IOverviewRuler overviewRuler, boolean showAnnotationsOverview, int styles)
          Constructs a new source viewer.
ProjectionSourceViewer(Composite parent, IVerticalRuler ruler, int styles)
          Creates a new projection source viewer.
 

Uses of Composite in org.eclipse.jface.viewers
 

Methods in org.eclipse.jface.viewers with parameters of type Composite
protected abstract  Control CellEditor.createControl(Composite parent)
          Creates the control for this cell editor under the given parent control.
 void CellEditor.create(Composite parent)
          Creates the control for this cell editor under the given parent control.
protected  Button DialogCellEditor.createButton(Composite parent)
          Creates the button for this cell editor under the given parent control.
protected  Control DialogCellEditor.createContents(Composite cell)
          Creates the controls used to show the value of this cell editor.
protected  Control DialogCellEditor.createControl(Composite parent)
           
protected  Control CheckboxCellEditor.createControl(Composite parent)
          The CheckboxCellEditor implementation of this CellEditor framework method does nothing and returns null.
protected  Control ComboBoxCellEditor.createControl(Composite parent)
           
static CheckboxTableViewer CheckboxTableViewer.newCheckList(Composite parent, int style)
          Creates a table viewer on a newly-created table control under the given parent.
protected static Table CheckboxTableViewer.createTable(Composite parent, int style)
          Creates a new table control with one column.
 Point TableLayout.computeSize(Composite c, int wHint, int hHint, boolean flush)
           
 void TableLayout.layout(Composite c, boolean flush)
           
protected  Control ColorCellEditor.createContents(Composite cell)
           
protected  Control TextCellEditor.createControl(Composite parent)
           
 

Constructors in org.eclipse.jface.viewers with parameters of type Composite
TreeViewer(Composite parent)
          Creates a tree viewer on a newly-created tree control under the given parent.
TreeViewer(Composite parent, int style)
          Creates a tree viewer on a newly-created tree control under the given parent.
CellEditor(Composite parent)
          Creates a new cell editor under the given parent control.
CellEditor(Composite parent, int style)
          Creates a new cell editor under the given parent control.
DialogCellEditor(Composite parent)
          Creates a new dialog cell editor parented under the given control.
DialogCellEditor(Composite parent, int style)
          Creates a new dialog cell editor parented under the given control.
CheckboxCellEditor(Composite parent)
          Creates a new checkbox cell editor parented under the given control.
CheckboxCellEditor(Composite parent, int style)
          Creates a new checkbox cell editor parented under the given control.
ListViewer(Composite parent)
          Creates a list viewer on a newly-created list control under the given parent.
ListViewer(Composite parent, int style)
          Creates a list viewer on a newly-created list control under the given parent.
CheckboxTreeViewer(Composite parent)
          Creates a tree viewer on a newly-created tree control under the given parent.
CheckboxTreeViewer(Composite parent, int style)
          Creates a tree viewer on a newly-created tree control under the given parent.
ComboBoxCellEditor(Composite parent, String[] items)
          Creates a new cell editor with a combo containing the given list of choices and parented under the given control.
ComboBoxCellEditor(Composite parent, String[] items, int style)
          Creates a new cell editor with a combo containing the given list of choices and parented under the given control.
TableViewer(Composite parent)
          Creates a table viewer on a newly-created table control under the given parent.
TableViewer(Composite parent, int style)
          Creates a table viewer on a newly-created table control under the given parent.
CheckboxTableViewer(Composite parent)
          Deprecated. use newCheckList(Composite, int) or new CheckboxTableViewer(Table) instead (see below for details)
CheckboxTableViewer(Composite parent, int style)
          Deprecated. use newCheckList(Composite, int) or new CheckboxTableViewer(Table) instead (see above for details)
TableTreeViewer(Composite parent)
          Creates a table tree viewer on a newly-created table tree control under the given parent.
TableTreeViewer(Composite parent, int style)
          Creates a table tree viewer on a newly-created table tree control under the given parent.
ColorCellEditor(Composite parent)
          Creates a new color cell editor parented under the given control.
ColorCellEditor(Composite parent, int style)
          Creates a new color cell editor parented under the given control.
TextCellEditor(Composite parent)
          Creates a new text string cell editor parented under the given control.
TextCellEditor(Composite parent, int style)
          Creates a new text string cell editor parented under the given control.
 

Uses of Composite in org.eclipse.jface.window
 

Methods in org.eclipse.jface.window with parameters of type Composite
protected  Control Window.createContents(Composite parent)
          Creates and returns this window's contents.
 

Uses of Composite in org.eclipse.jface.wizard
 

Subclasses of Composite in org.eclipse.jface.wizard
 class ProgressMonitorPart
          A standard implementation of an IProgressMonitor.
 

Methods in org.eclipse.jface.wizard with parameters of type Composite
 void Wizard.createPageControls(Composite pageContainer)
          The Wizard implementation of this IWizard method creates all the pages controls using IDialogPage.createControl.
protected  Control WizardDialog.createButtonBar(Composite parent)
          Creates and returns the contents of this dialog's button bar.
protected  void WizardDialog.createButtonsForButtonBar(Composite parent)
           
protected  Control WizardDialog.createContents(Composite parent)
          The WizardDialog implementation of this Window method calls call IWizard.addPages to allow the current wizard to add extra pages, then super.createContents to create the controls.
protected  Control WizardDialog.createDialogArea(Composite parent)
           
 Point WizardDialog.PageContainerFillLayout.computeSize(Composite composite, int wHint, int hHint, boolean force)
           
 Rectangle WizardDialog.PageContainerFillLayout.getClientArea(Composite c)
          Returns the client area for the given composite according to this layout.
 void WizardDialog.PageContainerFillLayout.layout(Composite composite, boolean force)
           
 void IWizard.createPageControls(Composite pageContainer)
          Creates this wizard's controls in the given parent control.
 

Constructors in org.eclipse.jface.wizard with parameters of type Composite
ProgressMonitorPart(Composite parent, Layout layout)
          Creates a ProgressMonitorPart.
ProgressMonitorPart(Composite parent, Layout layout, int progressIndicatorHeight)
          Creates a ProgressMonitorPart.
 

Uses of Composite in org.eclipse.swt.custom
 

Subclasses of Composite in org.eclipse.swt.custom
 class AnimatedProgress
          Deprecated. As of Eclipse 2.1, use ProgressBar with the style SWT.INDETERMINATE
Styles:
VERTICAL, HORIZONTAL, BORDER
 class CCombo
          The CCombo class represents a selectable user interface object that combines a text field and a list and issues notificiation when an item is selected from the list.
 class CLabel
          A Label which supports aligned text and/or an image and different border styles.
 class CTabFolder
          Instances of this class implement the notebook user interface metaphor.
 class SashForm
          The SashForm lays out its children in a Row or Column arrangement (as specified by the orientation) and places a Sash between the children.
 class ScrolledComposite
          A ScrolledComposite provides scrollbars and will scroll its content when the user uses the scrollbars.
 class StyledText
          A StyledText is an editable user interface object that displays lines of text.
 class TableCursor
          A TableCursor provides a way for the user to navigate around a Table using the keyboard.
 class TableTree
          A TableTree is a selectable user interface object that displays a hierarchy of items, and issues notification when an item is selected.
 class ViewForm
          Instances of this class implement a Composite that lays out three children horizontally and allows programmatic control of layout and border parameters.
 

Methods in org.eclipse.swt.custom with parameters of type Composite
protected  Point StackLayout.computeSize(Composite composite, int wHint, int hHint, boolean flushCache)
           
protected  void StackLayout.layout(Composite composite, boolean flushCache)
           
 

Constructors in org.eclipse.swt.custom with parameters of type Composite
ViewForm(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
SashForm(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
CCombo(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
ScrolledComposite(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
ControlEditor(Composite parent)
          Creates a ControlEditor for the specified Composite.
StyledText(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
TableTree(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
CLabel(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
CTabFolder(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
AnimatedProgress(Composite parent, int style)
          Deprecated. Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
 

Uses of Composite in org.eclipse.swt.layout
 

Methods in org.eclipse.swt.layout with parameters of type Composite
protected  Point FillLayout.computeSize(Composite composite, int wHint, int hHint, boolean flushCache)
           
protected  void FillLayout.layout(Composite composite, boolean flushCache)
           
protected  Point RowLayout.computeSize(Composite composite, int wHint, int hHint, boolean flushCache)
           
protected  void RowLayout.layout(Composite composite, boolean flushCache)
           
protected  Point GridLayout.computeSize(Composite composite, int wHint, int hHint, boolean flushCache)
           
protected  void GridLayout.layout(Composite composite, boolean flushCache)
           
protected  Point FormLayout.computeSize(Composite composite, int wHint, int hHint, boolean flushCache)
           
protected  void FormLayout.layout(Composite composite, boolean flushCache)
           
 

Uses of Composite in org.eclipse.swt.ole.win32
 

Subclasses of Composite in org.eclipse.swt.ole.win32
 class OleClientSite
          OleClientSite provides a site to manage an embedded OLE Document within a container.
 class OleControlSite
          OleControlSite provides a site to manage an embedded ActiveX Control within a container.
 class OleFrame
          OleFrame is an OLE Container's top level frame.
 

Constructors in org.eclipse.swt.ole.win32 with parameters of type Composite
OleClientSite(Composite parent, int style)
           
OleClientSite(Composite parent, int style, File file)
          Create an OleClientSite child widget using the OLE Document type associated with the specified file.
OleClientSite(Composite parent, int style, String progId)
          Create an OleClientSite child widget to edit a blank document using the specified OLE Document application.
OleClientSite(Composite parent, int style, String progId, File file)
          Create an OleClientSite child widget to edit the specified file using the specified OLE Document application.
OleControlSite(Composite parent, int style, String progId)
          Create an OleControlSite child widget using style bits to select a particular look or set of properties.
OleFrame(Composite parent, int style)
          Create an OleFrame child widget using style bits to select a particular look or set of properties.
 

Uses of Composite in org.eclipse.swt.widgets
 

Subclasses of Composite in org.eclipse.swt.widgets
 class Canvas
          Instances of this class provide a surface for drawing arbitrary graphics.
 class Combo
          Instances of this class are controls that allow the user to choose an item from a list of items, or optionally enter a new value by typing it into an editable text field.
 class CoolBar
          Instances of this class provide an area for dynamically positioning the items they contain.
 class Decorations
          Instances of this class provide the appearance and behavior of Shells, but are not top level shells or dialogs.
 class Group
          Instances of this class provide an etched border with an optional title.
 class Shell
          Instances of this class represent the "windows" which the desktop or "window manager" is managing.
 class TabFolder
          Instances of this class implement the notebook user interface metaphor.
 class Table
          Instances of this class implement a selectable user interface object that displays a list of images and strings and issue notificiation when selected.
 class ToolBar
          Instances of this class support the layout of selectable tool bar items.
 class Tree
          Instances of this class provide a selectable user interface object that displays a hierarchy of items and issue notificiation when an item in the hierarchy is selected.
 

Methods in org.eclipse.swt.widgets that return Composite
 Composite Control.getParent()
          Returns the receiver's parent, which must be a Composite or null when the receiver is a shell that was created with null or a display for a parent.
 

Methods in org.eclipse.swt.widgets with parameters of type Composite
 boolean Control.setParent(Composite parent)
          Changes the parent of the widget to be the one provided if the underlying operating system supports this feature.
protected abstract  Point Layout.computeSize(Composite composite, int wHint, int hHint, boolean flushCache)
          Computes and returns the size of the specified composite's client area according to this layout.
protected abstract  void Layout.layout(Composite composite, boolean flushCache)
          Lays out the children of the specified composite according to this layout.
 

Constructors in org.eclipse.swt.widgets with parameters of type Composite
Control(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Scrollable(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Composite(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Canvas(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
ToolBar(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Label(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Decorations(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Tree(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Table(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Button(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Group(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
ProgressBar(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Combo(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Scale(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
List(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
TabFolder(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Tracker(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Text(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
CoolBar(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Sash(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
Slider(Composite parent, int style)
          Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
 

Uses of Composite in org.eclipse.ui
 

Methods in org.eclipse.ui with parameters of type Composite
 void IWorkbenchPart.createPartControl(Composite parent)
          Creates the SWT controls for this workbench part.
 

Uses of Composite in org.eclipse.ui.dialogs
 

Subclasses of Composite in org.eclipse.ui.dialogs
 class FilteredList
          A composite widget which holds a list of elements for user selection.
 

Methods in org.eclipse.ui.dialogs that return Composite
protected  Composite CheckedTreeSelectionDialog.createSelectionButtons(Composite composite)
          Adds the selection and deselection buttons to the dialog.
 

Methods in org.eclipse.ui.dialogs with parameters of type Composite
protected  Label WizardDataTransferPage.createBoldLabel(Composite parent, String text)
          Creates a new label with a bold font.
protected  Label WizardDataTransferPage.createPlainLabel(Composite parent, String text)
          Creates a new label with a bold font.
protected  void WizardDataTransferPage.createSpacer(Composite parent)
          Creates a horizontal spacer line that fills the width of its container.
protected  void WizardDataTransferPage.createOptionsGroup(Composite parent)
          Create the options specification widgets.
 void WizardExportPage.createControl(Composite parent)
          Deprecated. (non-Javadoc) Method declared on IDialogPage.
protected abstract  void WizardExportPage.createDestinationGroup(Composite parent)
          Deprecated. Creates the export destination specification visual components.
protected  void WizardExportPage.createSourceGroup(Composite parent)
          Deprecated. Creates the export source resource specification controls.
protected  void SelectionDialog.createButtonsForButtonBar(Composite parent)
           
protected  Label SelectionDialog.createMessageArea(Composite composite)
          Creates the message area for this dialog.
protected  void ListDialog.createButtonsForButtonBar(Composite parent)
           
protected  Control ListDialog.createDialogArea(Composite container)
           
protected  Control ListSelectionDialog.createDialogArea(Composite parent)
           
protected  void YesNoCancelListSelectionDialog.createButtonsForButtonBar(Composite parent)
          Deprecated.  
protected  Control SelectionStatusDialog.createButtonBar(Composite parent)
           
protected  Label AbstractElementListSelectionDialog.createMessageArea(Composite composite)
          Creates the message text widget and sets layout data.
protected  FilteredList AbstractElementListSelectionDialog.createFilteredList(Composite parent)
          Creates a filtered list.
protected  Text AbstractElementListSelectionDialog.createFilterText(Composite parent)
           
 Control TwoPaneElementSelector.createDialogArea(Composite parent)
           
protected  Label TwoPaneElementSelector.createLabel(Composite parent, String name)
          Creates a label if name was not null.
protected  Table TwoPaneElementSelector.createLowerList(Composite parent)
          Creates the list widget and sets layout data.
protected  Control SaveAsDialog.createContents(Composite parent)
           
protected  void SaveAsDialog.createButtonsForButtonBar(Composite parent)
           
protected  Control SaveAsDialog.createDialogArea(Composite parent)
           
 void WizardNewLinkPage.createControl(Composite parent)
           
protected  Control CheckedTreeSelectionDialog.createDialogArea(Composite parent)
           
protected  CheckboxTreeViewer CheckedTreeSelectionDialog.createTreeViewer(Composite parent)
          Creates the tree viewer.
protected  Composite CheckedTreeSelectionDialog.createSelectionButtons(Composite composite)
          Adds the selection and deselection buttons to the dialog.
 void WizardNewProjectCreationPage.createControl(Composite parent)
          (non-Javadoc) Method declared on IDialogPage.
protected  Control TypeFilteringDialog.createDialogArea(Composite parent)
           
protected  Button WizardExportResourcesPage.createButton(Composite parent, int id, String label, boolean defaultButton)
          Creates a new button with the given id.
protected  void WizardExportResourcesPage.createButtonsGroup(Composite parent)
          Creates the buttons for selecting specific types or selecting all or none of the elements.
 void WizardExportResourcesPage.createControl(Composite parent)
          (non-Javadoc) Method declared on IDialogPage.
protected abstract  void WizardExportResourcesPage.createDestinationGroup(Composite parent)
          Creates the export destination specification visual components.
protected  void WizardExportResourcesPage.createResourcesGroup(Composite parent)
          Creates the checkbox tree and list for selecting resources.
 void WizardImportPage.createControl(Composite parent)
          Deprecated. (non-Javadoc) Method declared on IDialogPage.
protected  void WizardImportPage.createDestinationGroup(Composite parent)
          Deprecated. Creates the import destination specification controls.
protected abstract  void WizardImportPage.createSourceGroup(Composite parent)
          Deprecated. Creates the import source specification controls.
protected  void WizardNewFileCreationPage.createAdvancedControls(Composite parent)
          Creates the widget for advanced options.
 void WizardNewFileCreationPage.createControl(Composite parent)
          (non-Javadoc) Method declared on IDialogPage.
protected  Control ProjectLocationSelectionDialog.createDialogArea(Composite parent)
           
protected  Control ProjectLocationMoveDialog.createContents(Composite parent)
           
protected  Control ProjectLocationMoveDialog.createDialogArea(Composite parent)
           
protected  Control ResourceSelectionDialog.createDialogArea(Composite parent)
           
protected  void NewFolderDialog.createAdvancedControls(Composite parent)
          Creates the widget for advanced options.
protected  Control NewFolderDialog.createDialogArea(Composite parent)
           
protected  void WizardNewFolderMainPage.createAdvancedControls(Composite parent)
          Creates the widget for advanced options.
 void WizardNewFolderMainPage.createControl(Composite parent)
          (non-Javadoc) Method declared on IDialogPage.
 void WizardResourceImportPage.createControl(Composite parent)
          (non-Javadoc) Method declared on IDialogPage.
protected  void WizardResourceImportPage.createDestinationGroup(Composite parent)
          Creates the import destination specification controls.
protected  void WizardResourceImportPage.createFileSelectionGroup(Composite parent)
          Create the import source selection widget
protected abstract  void WizardResourceImportPage.createSourceGroup(Composite parent)
          Creates the import source specification controls.
protected  Control FileSelectionDialog.createDialogArea(Composite parent)
          Deprecated.  
protected  Control ElementTreeSelectionDialog.createDialogArea(Composite parent)
           
protected  TreeViewer ElementTreeSelectionDialog.createTreeViewer(Composite parent)
          Creates the tree viewer.
protected  Control ResourceListSelectionDialog.createDialogArea(Composite parent)
          Creates the contents of this dialog, initializes the listener and the update thread.
 void WizardNewProjectReferencePage.createControl(Composite parent)
          (non-Javadoc) Method declared on IDialogPage.
protected  Control MarkerResolutionSelectionDialog.createDialogArea(Composite parent)
           
protected  Control ElementListSelectionDialog.createDialogArea(Composite parent)
           
protected  Control ContainerSelectionDialog.createDialogArea(Composite parent)
           
 

Constructors in org.eclipse.ui.dialogs with parameters of type Composite
FilteredList(Composite parent, int style, ILabelProvider labelProvider, boolean ignoreCase, boolean allowDuplicates, boolean matchEmptyString)
          Constructs a new filtered list.
 

Uses of Composite in org.eclipse.ui.editors.text
 

Methods in org.eclipse.ui.editors.text with parameters of type Composite
 void TextEditorPreferencePage.createControl(Composite parent)
          Deprecated.  
protected  ISourceViewer TextEditor.createSourceViewer(Composite parent, IVerticalRuler ruler, int styles)
           
 void TextEditor.createPartControl(Composite parent)
           
 

Uses of Composite in org.eclipse.ui.part
 

Subclasses of Composite in org.eclipse.ui.part
 class DrillDownComposite
          Class DrillDownComposite implements a simple web style navigation metaphor.
 class PageBook
          A pagebook is a composite control where only a single control is visible at a time.
 

Methods in org.eclipse.ui.part that return Composite
protected  Composite MultiPageEditorPart.getContainer()
          Returns the composite control containing this multi-page editor's pages.
 Composite MultiEditor.createInnerPartControl(Composite parent, IEditorPart e)
          Create the control of the inner editor.
 

Methods in org.eclipse.ui.part with parameters of type Composite
abstract  void WorkbenchPart.createPartControl(Composite parent)
           
 void PageBookView.createPartControl(Composite parent)
          The PageBookView implementation of this IWorkbenchPart method creates a PageBook control with its default page showing.
 void MultiPageEditorPart.createPartControl(Composite parent)
          The MultiPageEditor implementation of this IWorkbenchPart method creates the control for the multi-page editor by calling createContainer, then createPages.
 Composite MultiEditor.createInnerPartControl(Composite parent, IEditorPart e)
          Create the control of the inner editor.
abstract  void Page.createControl(Composite parent)
           
 void IPage.createControl(Composite parent)
          Creates the SWT control for this page under the given parent control.
 void MultiPageEditor.createPartControl(Composite parent)
          Deprecated. The MultiPageEditor implementation of this IWorkbenchPart method creates a TabFolder control.
 void MessagePage.createControl(Composite parent)
           
protected  Point PageBook.PageBookLayout.computeSize(Composite composite, int wHint, int hHint, boolean flushCache)
           
protected  void PageBook.PageBookLayout.layout(Composite composite, boolean flushCache)
           
 

Constructors in org.eclipse.ui.part with parameters of type Composite
DrillDownComposite(Composite parent, int style)
          Constructs a new DrillDownTreeViewer.
PageBook(Composite parent, int style)
          Creates a new empty pagebook.
 

Uses of Composite in org.eclipse.ui.texteditor
 

Methods in org.eclipse.ui.texteditor with parameters of type Composite
protected  ISourceViewer AbstractTextEditor.createSourceViewer(Composite parent, IVerticalRuler ruler, int styles)
          Creates the source viewer to be used by this editor.
 void AbstractTextEditor.createPartControl(Composite parent)
          The AbstractTextEditor implementation of this IWorkbenchPart method creates the vertical ruler and source viewer.
 void StatusTextEditor.createPartControl(Composite parent)
           
protected  Control StatusTextEditor.createStatusControl(Composite parent, IStatus status)
          Creates the status control for the given status.
protected  void InfoForm.createActionControls(Composite parent)
          Hook method for creating an appropriate action control.
 void StatusLineContributionItem.fill(Composite parent)
           
 

Constructors in org.eclipse.ui.texteditor with parameters of type Composite
WorkbenchChainedTextFontFieldEditor(String name, String labelText, Composite parent)
          Creates a new font field editor with the given parameters.
PropagatingFontFieldEditor(String name, String labelText, Composite parent)
          Deprecated. use WorkbenchChainedTextFontFieldEditor
InfoForm(Composite parent)
          Creates a new info form.
 

Uses of Composite in org.eclipse.ui.views.bookmarkexplorer
 

Methods in org.eclipse.ui.views.bookmarkexplorer with parameters of type Composite
 void BookmarkNavigator.createPartControl(Composite parent)
           
 

Uses of Composite in org.eclipse.ui.views.contentoutline
 

Methods in org.eclipse.ui.views.contentoutline with parameters of type Composite
 void ContentOutlinePage.createControl(Composite parent)
          The ContentOutlinePage implementation of this IContentOutlinePage method creates a tree viewer.
 void ContentOutline.createPartControl(Composite parent)
          The PageBookView implementation of this IWorkbenchPart method creates a PageBook control with its default page showing.
 

Uses of Composite in org.eclipse.ui.views.navigator
 

Methods in org.eclipse.ui.views.navigator with parameters of type Composite
 void ResourceNavigator.createPartControl(Composite parent)
           
protected  TreeViewer ResourceNavigator.createViewer(Composite parent)
          Creates the viewer.
 

Uses of Composite in org.eclipse.ui.views.properties
 

Methods in org.eclipse.ui.views.properties with parameters of type Composite
 CellEditor PropertyDescriptor.createPropertyEditor(Composite parent)
          The PropertyDescriptor implementation of this IPropertyDescriptor method returns null.
 CellEditor IPropertyDescriptor.createPropertyEditor(Composite parent)
          Creates and returns a new cell editor for editing this property.
 CellEditor IPropertySheetEntry.getEditor(Composite parent)
          Return the CellEditor used to edit the property.
 void PropertySheetPage.createControl(Composite parent)
           
 CellEditor TextPropertyDescriptor.createPropertyEditor(Composite parent)
          The TextPropertyDescriptor implementation of this IPropertyDescriptor method creates and returns a new TextCellEditor.
 void PropertySheet.createPartControl(Composite parent)
          The PropertySheet implementation of this IWorkbenchPart method creates a PageBook control with its default page showing.
 CellEditor ColorPropertyDescriptor.createPropertyEditor(Composite parent)
          The ColorPropertyDescriptor implementation of this IPropertyDescriptor method creates and returns a new ColorCellEditor.
 CellEditor ComboBoxPropertyDescriptor.createPropertyEditor(Composite parent)
          The ComboBoxPropertyDescriptor implementation of this IPropertyDescriptor method creates and returns a new ComboBoxCellEditor.
 

Uses of Composite in org.eclipse.ui.views.tasklist
 

Methods in org.eclipse.ui.views.tasklist with parameters of type Composite
protected  Control TaskPropertiesDialog.createDialogArea(Composite parent)
           
protected  void TaskPropertiesDialog.createButtonsForButtonBar(Composite parent)
          Creates only the OK button if showing problem properties, otherwise creates both OK and Cancel buttons.
 void TaskList.createPartControl(Composite parent)
           
 

Uses of Composite in org.eclipse.ui.wizards.datatransfer
 

Methods in org.eclipse.ui.wizards.datatransfer with parameters of type Composite
 void WizardExternalProjectImportPage.createControl(Composite parent)
          (non-Javadoc) Method declared on IDialogPage.
 


Eclipse Platform
2.1

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.