Package com.itextpdf.layout.element
Interface IAbstractElement
-
- All Superinterfaces:
IElement
,IPropertyContainer
- All Known Subinterfaces:
IBlockElement
,IFormField
- All Known Implementing Classes:
AbstractElement
,AbstractSelectField
,AreaBreak
,BlockElement
,Button
,Cell
,CheckBox
,ComboBoxField
,Div
,FlexContainer
,FormField
,GridContainer
,Image
,InputField
,LineSeparator
,Link
,List
,ListBoxField
,ListItem
,MulticolContainer
,Paragraph
,Radio
,SignatureFieldAppearance
,SvgImage
,Tab
,Table
,Text
,TextArea
public interface IAbstractElement extends IElement
The interface represents abstract layout element and provides an access to its children.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<IElement>
getChildren()
Gets the child elements of this elements.-
Methods inherited from interface com.itextpdf.layout.element.IElement
createRendererSubTree, getRenderer, setNextRenderer
-
Methods inherited from interface com.itextpdf.layout.IPropertyContainer
deleteOwnProperty, getDefaultProperty, getOwnProperty, getProperty, hasOwnProperty, hasProperty, setProperty
-
-
-
-
Method Detail
-
getChildren
java.util.List<IElement> getChildren()
Gets the child elements of this elements.- Returns:
- a list of children
-
-