Class FormElementRelations
- java.lang.Object
 - 
- de.xima.fc.gui.bean.designer.model.FormElementRelations
 
 
- 
- All Implemented Interfaces:
 Serializable
public class FormElementRelations extends Object implements Serializable
Used by the PDF importer, list of elements that are near the elements to insert.- Author:
 - XIMA MEDIA GmbH
 - See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description FormElementRelations() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getBottom()List<String>getLeft()List<String>getRight()List<String>getTop()voidsetBottom(List<String> bottom)voidsetLeft(List<String> left)voidsetRight(List<String> right)voidsetTop(List<String> top) 
 - 
 
- 
- 
Method Detail
- 
getBottom
public List<String> getBottom()
- Returns:
 - List of 
PDF importer IDsof the elements located below the field to insert. 
 
- 
getLeft
public List<String> getLeft()
- Returns:
 - List of 
PDF importer IDsof the elements located to the left of the field to insert. 
 
- 
getRight
public List<String> getRight()
- Returns:
 - List of 
PDF importer IDsof the elements located to the right of the field to insert. 
 
- 
getTop
public List<String> getTop()
- Returns:
 - List of 
PDF importer IDsof the elements located above the field to insert. 
 
- 
setBottom
public void setBottom(List<String> bottom)
- Parameters:
 bottom- List ofPDF importer IDsof the elements located below the field to insert.
 
- 
setLeft
public void setLeft(List<String> left)
- Parameters:
 left- List ofPDF importer IDsof the elements located to the left of the field to insert.
 
- 
setRight
public void setRight(List<String> right)
- Parameters:
 right- List ofPDF importer IDsof the elements located to the right of the field to insert.
 
- 
setTop
public void setTop(List<String> top)
- Parameters:
 top- List ofPDF importer IDsof the elements located above the field to insert.
 
 - 
 
 -