Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Rich Ajax Platform
Release 1.2

org.eclipse.swt.layout
Class FormData


java.lang.Object
  extended by
org.eclipse.swt.layout.FormData

public final class FormData
extends Object

Instances of this class are used to define the attachments of a control in a FormLayout.

To set a FormData object into a control, you use the setLayoutData () method. To define attachments for the FormData, set the fields directly, like this:

    FormData data = new FormData();
    data.left = new FormAttachment(0,5);
    data.right = new FormAttachment(100,-5);
    button.setLayoutData(formData);
 

FormData contains the FormAttachments for each edge of the control that the FormLayout uses to determine the size and position of the control. FormData objects also allow you to set the width and height of controls within a FormLayout.

Since:
1.0
See Also:
FormLayout, FormAttachment, Sample code and further information

Field Summary
  FormAttachment bottom
          bottom specifies the attachment of the bottom of the control.
 int height
          height specifies the preferred height in pixels.
  FormAttachment left
          left specifies the attachment of the left side of the control.
  FormAttachment right
          right specifies the attachment of the right side of the control.
  FormAttachment top
          top specifies the attachment of the top of the control.
 int width
          width specifies the preferred width in pixels.
 
Constructor Summary
FormData ()
          Constructs a new instance of FormData using default values.
FormData (int width, int height)
          Constructs a new instance of FormData according to the parameters.
 
Method Summary
  String toString ()
          Returns a string containing a concise, human-readable description of the receiver.
 
Methods inherited from class java.lang. Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

width

public int width
width specifies the preferred width in pixels. This value is the wHint passed into Control.computeSize(int, int, boolean) to determine the preferred size of the control. The default value is SWT.DEFAULT.

See Also:
Control.computeSize(int, int, boolean)

height

public int height
height specifies the preferred height in pixels. This value is the hHint passed into Control.computeSize(int, int, boolean) to determine the preferred size of the control. The default value is SWT.DEFAULT.

See Also:
Control.computeSize(int, int, boolean)

left

public 
FormAttachment left
left specifies the attachment of the left side of the control.


right

public 
FormAttachment right
right specifies the attachment of the right side of the control.


top

public 
FormAttachment top
top specifies the attachment of the top of the control.


bottom

public 
FormAttachment bottom
bottom specifies the attachment of the bottom of the control.

Constructor Detail

FormData

public FormData()
Constructs a new instance of FormData using default values.


FormData

public FormData(int width,
                int height)
Constructs a new instance of FormData according to the parameters. A value of SWT.DEFAULT indicates that no minimum width or no minimum height is specified.

Parameters:
width - a minimum width for the control
height - a minimum height for the control
Method Detail

toString

public 
String toString()
Returns a string containing a concise, human-readable description of the receiver.

Returns:
a string representation of the FormData object

Eclipse Rich Ajax Platform
Release 1.2

Copyright (c) Innoopract Informationssysteme GmbH and others 2002, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire