Package com.axemble.vdoc.sdk.interfaces
Interface IContentComponent
- All Superinterfaces:
- IElement,- Serializable
- All Known Subinterfaces:
- IBlock,- IComponent
- All Known Implementing Classes:
- EzsBlock,- EzsComponent,- EzsContentComponent
This interface represents a block element.
- Since:
- 2.1
- Version:
- 1.0, 16/06/2009
- Author:
- vlygeros
- 
Method SummaryModifier and TypeMethodDescriptionGets the CSS class.Gets the description of theIContentComponentobject.Gets the label of theIContentComponentobject.Gets the name of theIContentComponentobject.Gets the parent block.Get the system name of the componentGets the value of a property.Gets the value of a property.booleanChecks if the block is nullable.booleanChecks if the block is replaceable.voidHides a property.voidsetInnerCssClass(String cssClass) Sets the CSS classvoidsetInnerNullable(boolean nullable) Allows to specify the block is nullable.voidsetInnerReplaceable(boolean replaceable) Allows to specify the block is replaceable.voidsetSysName(String sysName) Get the system name of the componentvoidSets a value to a property
- 
Method Details- 
getInnerNameString getInnerName()Gets the name of theIContentComponentobject.- Returns:
- The system name of the content component.
 
- 
getInnerLabelString getInnerLabel()Gets the label of theIContentComponentobject.- Returns:
- The label of the content component.
 
- 
getInnerDescriptionString getInnerDescription()Gets the description of theIContentComponentobject.- Returns:
- The description of the content component.
 
- 
getInnerCssClassString getInnerCssClass()Gets the CSS class.- Returns:
- A java.lang.String representing the class name used by the block.
 
- 
setInnerCssClassSets the CSS class- Parameters:
- cssClass-
 
- 
isInnerReplaceableboolean isInnerReplaceable()Checks if the block is replaceable.- Returns:
- true if the block is replaceable, false otherwise.
 
- 
setInnerReplaceablevoid setInnerReplaceable(boolean replaceable) Allows to specify the block is replaceable.- Parameters:
- replaceable- The flag to set.
 
- 
isInnerNullableboolean isInnerNullable()Checks if the block is nullable.- Returns:
- true if the block is nullable, false otherwise.
 
- 
setInnerNullablevoid setInnerNullable(boolean nullable) Allows to specify the block is nullable.- Parameters:
- nullable- The flag to set.
 
- 
getValueGets the value of a property.- Parameters:
- propertyName- The system name of the property.
- Returns:
- A Objectobject.
 
- 
getValueGets the value of a property. Allows to specify a default value, if the internale value is null.- Parameters:
- propertyName- The system name of the property.
- defaultValue-
- Returns:
- A Objectobject.
 
- 
setValueSets a value to a property- Parameters:
- propertyName- The system name of the property.
- value- The value object to set.
 
- 
setHiddenHides a property.- Parameters:
- propertyName- The system name of the property.
 
- 
getParentBlockIBlock getParentBlock()Gets the parent block.- Returns:
- A IBlockobject.
 
- 
getSysNameString getSysName()Get the system name of the component- Returns:
- the system name
 
- 
setSysNameGet the system name of the component- Parameters:
- sysName- the system name
 
 
-