Interface EditorSectionConfiguration
-
- All Known Subinterfaces:
CustomEditorSectionConfiguration
,UpdateAwareCustomSectionConfiguration
- All Known Implementing Classes:
ClassAttrEditorSectionConfiguration
,CommentsSectionConfiguration
,DefaultEditorSectionConfiguration
,ExternalTaxesSectionConfiguration
,InitialAttrEditorSectionConfiguration
,LastChangesSectionConfiguration
,MediaEditorSectionConfiguration
,ProductPDFDataSheetSectionConfiguration
,UnassignedEditorSectionConfiguration
,WidgetParamEditorSectionConfiguration
public interface EditorSectionConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EditorSectionConfiguration
clone()
java.util.Map<LanguageModel,java.lang.String>
getAllLabel()
java.lang.String
getLabel()
java.lang.String
getLabel(java.lang.String iso)
int
getPosition()
java.lang.String
getQualifier()
java.util.List<EditorRowConfiguration>
getSectionRows()
XmlDataProvider
getXmlDataProvider()
boolean
isInitiallyOpened()
boolean
isPrintable()
boolean
isTabbed()
boolean
isVisible()
void
setAllLabel(java.util.Map<LanguageModel,java.lang.String> label)
void
setInitiallyOpened(boolean opened)
void
setPosition(int position)
void
setPrintable(boolean printable)
Set if this section shall be printable - whether it's pdf (or other) preview shall be generated.void
setQualifier(java.lang.String qualifier)
void
setSectionRows(java.util.List<EditorRowConfiguration> rows)
void
setShowIfEmpty(boolean showIfEmoty)
void
setVisible(boolean visible)
void
setXmlDataProvider(java.lang.String xmlDataProviderBeanName)
boolean
showIfEmpty()
boolean
showInCreateMode()
-
-
-
Method Detail
-
getQualifier
java.lang.String getQualifier()
-
setQualifier
void setQualifier(java.lang.String qualifier)
-
getLabel
java.lang.String getLabel()
-
getLabel
java.lang.String getLabel(java.lang.String iso)
-
getAllLabel
java.util.Map<LanguageModel,java.lang.String> getAllLabel()
-
setAllLabel
void setAllLabel(java.util.Map<LanguageModel,java.lang.String> label)
-
isVisible
boolean isVisible()
-
setVisible
void setVisible(boolean visible)
-
isTabbed
boolean isTabbed()
-
isInitiallyOpened
boolean isInitiallyOpened()
-
setInitiallyOpened
void setInitiallyOpened(boolean opened)
-
showIfEmpty
boolean showIfEmpty()
-
setShowIfEmpty
void setShowIfEmpty(boolean showIfEmoty)
-
showInCreateMode
boolean showInCreateMode()
-
getPosition
int getPosition()
-
setPosition
void setPosition(int position)
-
getSectionRows
java.util.List<EditorRowConfiguration> getSectionRows()
-
setSectionRows
void setSectionRows(java.util.List<EditorRowConfiguration> rows)
-
clone
EditorSectionConfiguration clone() throws java.lang.CloneNotSupportedException
- Throws:
java.lang.CloneNotSupportedException
-
isPrintable
boolean isPrintable()
- Returns:
- true if this section can be used for generating pdf (or any other) printable document.
-
setPrintable
void setPrintable(boolean printable)
Set if this section shall be printable - whether it's pdf (or other) preview shall be generated.
-
getXmlDataProvider
XmlDataProvider getXmlDataProvider()
- Returns:
- object which handles generation of xml representation of this section e.g. for printing purposes.
-
setXmlDataProvider
void setXmlDataProvider(java.lang.String xmlDataProviderBeanName)
- Parameters:
xmlDataProviderBeanName
- spring bean id of xmlDataProvider to set, if none provided default is taken.
-
-