net.simplace.pipe.formcomponents.table.FWTableFormComponent

This component allows to lay out form components in a table-like fashion.


public class FWTableFormComponent extends
net.simplace.pipe.formcomponents.FWAbstractFormComponent {
// Public Constructors
public FWTableFormComponent(String aFormId, String aFieldID, FWObservable
aObservable, int aDetachability);


// Public Instance Methods
public void addRow(String aId);

public void addCell(String aId, List aComponents);

public Dimension getPreferredSize(); // Defines
net.simplace.pipe.formcomponents.FWAbstractFormComponent


public Dimension getMaximumSize(); // Defines
net.simplace.pipe.formcomponents.FWAbstractFormComponent


public Dimension getMinimumSize(); // Defines javax.swing.JComponent

public Object getValue(); // Defines
net.simplace.pipe.formcomponents.FWAbstractFormComponent


This method always returns null since there is no internal value associated with a FWTableFormComponent
public void setValue(Object value); // Defines
net.simplace.pipe.formcomponents.FWAbstractFormComponent


This method does nothing since there is no internal value associated with a FWTableFormComponent.
public void processFormFiller(); // Defines
net.simplace.pipe.formcomponents.FWAbstractFormComponent


This method does nothing. Form fillers are not supported for FWTableFormComponents.

// Protected Instance Methods
protected String getLocaleValue(String aKey);
// Defines net.simplace.pipe.formcomponents.FWAbstractFormComponent


This method retrieves the corresponding localozed string to aKey. If aKey is empty ("" or null), an empty string is returned. Furthermore, the special placeholders ${ROWINDEX} and ${COLINDEX} are replaced with the cell's column and its row respectively. These placeholders may occur in the parameter aKey or in the localized String that belongs to it.
protected void exportData(); // Defines
net.simplace.pipe.formcomponents.FWAbstractFormComponent


Allows to export the table to xls
protected Rectangle getValueCell(int aType);
// Defines net.simplace.pipe.formcomponents.FWAbstractFormComponent




}



Hierarchy: java.lang.Object - java.awt.Component (java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable) - java.awt.Container - javax.swing.JComponent (java.io.Serializable, javax.swing.TransferHandler.HasGetTransferHandler) - javax.swing.JPanel (javax.accessibility.Accessible) - net.simplace.pipe.formcomponents.FWAbstractFormComponent (net.simplace.core.FWObserver) - FWTableFormComponent