Klasse ComponentTitledSeparator

java.lang.Object
org.eclipse.swt.widgets.Widget
org.eclipse.swt.widgets.Control
org.eclipse.swt.widgets.Scrollable
org.eclipse.swt.widgets.Composite
org.deidentifier.arx.gui.view.impl.common.ComponentTitledSeparator
Alle implementierten Schnittstellen:
org.eclipse.swt.graphics.Drawable

public class ComponentTitledSeparator extends org.eclipse.swt.widgets.Composite
Instances of this class provide a separator with a title and/or an image.

Styles:
BORDER
Events:
(none)

  • Feldübersicht

    Von Klasse geerbte Felder org.eclipse.swt.widgets.Composite

    embeddedHandle

    Von Klasse geerbte Felder org.eclipse.swt.widgets.Widget

    handle
  • Konstruktorübersicht

    Konstruktoren
    Konstruktor
    Beschreibung
    ComponentTitledSeparator(org.eclipse.swt.widgets.Composite parent, int style)
    Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    int
    Returns a value which describes the position of the text or image in the receiver.
    org.eclipse.swt.graphics.Image
    Returns the receiver's image if it has one, or null if it does not.
    Returns the receiver's text.
    void
    setAlignment(int alignment)
    Controls how text will be displayed in the receiver.
    void
    setImage(org.eclipse.swt.graphics.Image image)
    Sets the receiver's image to the argument, which may be null indicating that no image should be displayed.
    void
    setLayout(org.eclipse.swt.widgets.Layout layout)
     
    void
    Sets the receiver's text.

    Von Klasse geerbte Methoden org.eclipse.swt.widgets.Composite

    changed, checkSubclass, drawBackground, getBackgroundMode, getChildren, getLayout, getLayoutDeferred, getTabList, isLayoutDeferred, layout, layout, layout, layout, layout, setBackgroundMode, setFocus, setLayoutDeferred, setTabList

    Von Klasse geerbte Methoden org.eclipse.swt.widgets.Scrollable

    computeTrim, getClientArea, getHorizontalBar, getScrollbarsMode, getVerticalBar

    Von Klasse geerbte Methoden org.eclipse.swt.widgets.Control

    addControlListener, addDragDetectListener, addFocusListener, addGestureListener, addHelpListener, addKeyListener, addMenuDetectListener, addMouseListener, addMouseMoveListener, addMouseTrackListener, addMouseWheelListener, addPaintListener, addTouchListener, addTraverseListener, computeSize, computeSize, dragDetect, dragDetect, forceFocus, getAccessible, getBackground, getBackgroundImage, getBorderWidth, getBounds, getCursor, getDragDetect, getEnabled, getFont, getForeground, getLayoutData, getLocation, getMenu, getMonitor, getOrientation, getParent, getRegion, getShell, getSize, getTextDirection, getToolTipText, getTouchEnabled, getVisible, internal_dispose_GC, internal_new_GC, isAutoScalable, isEnabled, isFocusControl, isReparentable, isVisible, moveAbove, moveBelow, pack, pack, print, redraw, redraw, removeControlListener, removeDragDetectListener, removeFocusListener, removeGestureListener, removeHelpListener, removeKeyListener, removeMenuDetectListener, removeMouseListener, removeMouseMoveListener, removeMouseTrackListener, removeMouseWheelListener, removePaintListener, removeTouchListener, removeTraverseListener, requestLayout, setBackground, setBackgroundImage, setBounds, setBounds, setCapture, setCursor, setDragDetect, setEnabled, setFont, setForeground, setLayoutData, setLocation, setLocation, setMenu, setOrientation, setParent, setRedraw, setRegion, setSize, setSize, setTextDirection, setToolTipText, setTouchEnabled, setVisible, toControl, toControl, toDisplay, toDisplay, traverse, traverse, traverse, update

    Von Klasse geerbte Methoden org.eclipse.swt.widgets.Widget

    addDisposeListener, addListener, checkWidget, dispose, getData, getData, getDisplay, getListeners, getStyle, isAutoDirection, isDisposed, isListening, notifyListeners, removeDisposeListener, removeListener, removeListener, reskin, setData, setData, toString

    Von Klasse geerbte Methoden java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Konstruktordetails

    • ComponentTitledSeparator

      public ComponentTitledSeparator(org.eclipse.swt.widgets.Composite parent, int style)
      Constructs a new instance of this class given its parent and a style value describing its behavior and appearance.

      The style value is either one of the style constants defined in class SWT which is applicable to instances of this class, or must be built by bitwise OR'ing together (that is, using the int "|" operator) two or more of those SWT style constants. The class description lists the style constants that are applicable to the class. Style bits are also inherited from superclasses.

      Parameter:
      parent - a composite control which will be the parent of the new instance (cannot be null)
      style - the style of control to construct
      Löst aus:
      IllegalArgumentException -
      • ERROR_NULL_ARGUMENT - if the parent is null
      org.eclipse.swt.SWTException -
      • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent
  • Methodendetails

    • getAlignment

      public int getAlignment()
      Returns a value which describes the position of the text or image in the receiver. The value will be one of LEFT, RIGHT or CENTER.
      Gibt zurück:
      the alignment
      Löst aus:
      org.eclipse.swt.SWTException -
      • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
      • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • getImage

      public org.eclipse.swt.graphics.Image getImage()
      Returns the receiver's image if it has one, or null if it does not.
      Gibt zurück:
      the receiver's image
      Löst aus:
      org.eclipse.swt.SWTException -
      • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
      • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • getText

      public String getText()
      Returns the receiver's text.
      Gibt zurück:
      the receiver's text
      Löst aus:
      org.eclipse.swt.SWTException -
      • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
      • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • setAlignment

      public void setAlignment(int alignment)
      Controls how text will be displayed in the receiver. The argument should be one of LEFT, RIGHT or CENTER.
      Parameter:
      alignment - the new alignment
      Löst aus:
      org.eclipse.swt.SWTException -
      • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
      • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • setImage

      public void setImage(org.eclipse.swt.graphics.Image image)
      Sets the receiver's image to the argument, which may be null indicating that no image should be displayed.
      Parameter:
      image - the image to display on the receiver (may be null)
      Löst aus:
      IllegalArgumentException -
      • ERROR_INVALID_ARGUMENT - if the image has been disposed
      org.eclipse.swt.SWTException -
      • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
      • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • setLayout

      public void setLayout(org.eclipse.swt.widgets.Layout layout)
      Setzt außer Kraft:
      setLayout in Klasse org.eclipse.swt.widgets.Composite
      Siehe auch:
      • Composite.setLayout(org.eclipse.swt.widgets.Layout)
    • setText

      public void setText(String text)
      Sets the receiver's text.
      Parameter:
      string - the new text
      Löst aus:
      IllegalArgumentException -
      • ERROR_NULL_ARGUMENT - if the text is null
      org.eclipse.swt.SWTException -
      • ERROR_WIDGET_DISPOSED - if the receiver has been disposed
      • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver