Interface IDesignLineBlock
- All Superinterfaces:
ICompilationSupport
,IDesignBlock
,IDesignContentComponent
,IDesignElement
,ILocationSupport
,IPropertiesSupport
,ISelectionSupport
,IWidget
,IWritable
,IXmlSerializable
,Serializable
Interface to describe a line object inside a table.
- Since:
- 2.1, 02/03/2011
- Version:
- 1.0
- Author:
- vlygeros
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
Specific event types.Nested classes/interfaces inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.IDesignBlock
IDesignBlock.SupportedEventTypes
-
Method Summary
Modifier and TypeMethodDescriptionCreates a cell into a line.createDesignCellBlock
(String style) Creates a cell into a line.createDesignCellBlockAfter
(IDesignCellBlock previousSibling) Creates a cell into a line.createDesignCellBlockBefore
(IDesignCellBlock nextSibling) Creates a cell into a line.void
detachDesignCellBlock
(IDesignCellBlock designCell) Detaches a design cell from its container.Gets the design cellsMethods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.ICompilationSupport
beforeCompile, beforeMerge, compile, generateName, merge
Methods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.IDesignBlock
createDesignBlock, createDesignBlock, createDesignBlockAfter, createDesignBlockAfter, createDesignBlockBefore, createDesignBlockBefore, createDesignComponent, createDesignComponent, createDesignComponentAfter, createDesignComponentAfter, createDesignComponentBefore, createDesignComponentBefore, getBlockDefinition
Methods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.IDesignElement
allowRemove, delete, getContainer, getId, getLinkedDesignElementsGroupName, getUniqueGroupName, getUniqueName, isDirty, isEmbedded, isPersistent, isVolatile, setAllowRemove, setDirty, verify
Methods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.ILocationSupport
getDimension, getPoint, setDimension, setPoint
Methods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.IPropertiesSupport
getDescription, getLabel, getName, setDescription, setLabel, setName
Methods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.ISelectionSupport
deselect, isSelected, select
Methods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.IWidget
addActionListener, addChangeListener, afterInit, getCtrlTemplate, getCtrlTemplateWriter, getParam, getParentBlock, getStaticString, getStaticString, getStaticString, getStaticString, getStaticString, getSysname, hasActionListeners, hasChangeListeners, isHidden, refresh, refreshWidgets, removeActionListener, removeActionListeners, removeChangeListener, removeChangeListeners, render, renderMobile, setHidden, setParentBlock, setSysname
Methods inherited from interface com.axemble.vdoc.sdk.interfaces.ui.designer.IXmlSerializable
load, save
-
Method Details
-
createDesignCellBlock
IDesignCellBlock createDesignCellBlock()Creates a cell into a line.- Returns:
- A
IDesignCellBlock
object.
-
createDesignCellBlock
Creates a cell into a line.- Parameters:
style
- The style name- Returns:
- A
IDesignCellBlock
object.
-
createDesignCellBlockBefore
Creates a cell into a line.- Parameters:
nextSibling
- The next sibling cell.- Returns:
- A
IDesignCellBlock
object.
-
createDesignCellBlockAfter
Creates a cell into a line.- Parameters:
previousSibling
- The next sibling cell.- Returns:
- A
IDesignCellBlock
object.
-
getDesignCellBlocks
Collection<IDesignCellBlock> getDesignCellBlocks()Gets the design cells- Returns:
- A java.util.Collection of
IDesignCellBlock
objects.
-
detachDesignCellBlock
Detaches a design cell from its container.- Parameters:
designCell
- TheIDesignCellBlock
to detach.
-