|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kuali.student.common.ui.client.configurable.mvc.multiplicity.MultiplicityConfiguration
public class MultiplicityConfiguration
MultiplicityConfiguration is passed into a MultiplicitySection to control the creation of the multiplicity. This class is used to control the Multiplicity, e.g. if its updateable, has headers, min number of items, labels etc. It also holds FieldDescriptors for the fields required to be included in the multiplicity. They are held in a HashMap keyed by rows, i.e. Map<Integer, List<FieldDescriptor>> . The parent for the multiplicity refers to the path to the high level field that owns the repeating elements, e.g. course/versions is the parent field for course version fields versionCode and versionTitle For multiplicities nested inside another multiplicity, create a MultiplicityConfiguration for the nested multiplicity and call setNestedConfig to add the lower level multiplicity
Nested Class Summary | |
---|---|
static class |
MultiplicityConfiguration.MultiplicityType
|
static class |
MultiplicityConfiguration.StyleType
|
Field Summary | |
---|---|
protected Map<String,String> |
concatenatedFields
|
Constructor Summary | |
---|---|
MultiplicityConfiguration(MultiplicityConfiguration.MultiplicityType multiplicityType,
MultiplicityConfiguration.StyleType styleType,
Metadata metaData)
Creates a new MultiplicityConfiguration. |
Method Summary | |
---|---|
void |
addConcatenatedField(MultiplicityFieldConfiguration parentField,
String fieldKey)
Concatenates multiple field values into a single table cell !!!!! Currently only implemented for MultiplicityTable !!!!! The parentField should define a field with a Data value. |
void |
addField(String fieldKey,
String messageKey,
String parentPath,
Metadata meta)
Includes this field on the current line at the next horizontal position Will use default widget and binding. |
void |
addFieldConfiguration(MultiplicityFieldConfiguration fieldDescriptor)
Includes this field (as defined by the FieldDescriptor) on the current line at the next horizontal position |
MultiplicityConfiguration |
copy()
Creates a copy of this MultiplicityConfiguration. |
String |
getAddItemLabel()
|
Map<String,String> |
getConcatenatedFields()
|
MultiplicityGroup |
getCustomMultiplicityGroup()
|
int |
getDefaultItemsCreated()
|
Map<Integer,List<MultiplicityFieldConfiguration>> |
getFields()
|
String |
getItemLabel()
|
MultiplicityConfiguration.MultiplicityType |
getLayoutType()
|
Metadata |
getMetaData()
|
MultiplicityConfiguration.MultiplicityType |
getMultiplicityType()
|
MultiplicityConfiguration |
getNestedConfig()
|
FieldDescriptor |
getParentFd()
|
MultiplicityConfiguration.StyleType |
getStyleType()
|
SectionTitle |
getTitle()
|
boolean |
isShowHeaders()
|
boolean |
isUpdateable()
|
void |
nextLine()
Causes a line throw so that the subsequent fields are placed on the next line of the screen |
void |
setAddItemLabel(String addItemLabel)
Sets text to be used as the button text to add a new empty item in the multiplicity |
void |
setCustomMultiplicityGroup(MultiplicityGroup customMultiplicityGroup)
|
void |
setDefaultItemsCreated(int defaultItemsCreated)
|
void |
setFields(Map<Integer,List<MultiplicityFieldConfiguration>> fields)
|
void |
setItemLabel(String itemLabel)
Sets text to be used as the header for each multiplicity item |
void |
setLayoutType(MultiplicityConfiguration.MultiplicityType multiplicityType)
|
void |
setMetaData(Metadata metaData)
|
void |
setMultiplicityType(MultiplicityConfiguration.MultiplicityType multiplicityType)
Sets the MultiplicityType required for this config Valid values are defined in #MultiplicityConfiguration.MultiplicityType |
void |
setNestedConfig(MultiplicityConfiguration config)
If this multiplicity is to contain other nested multiplicities, create a MultiplicityConfiguration for the child multiplicity and set as a nested config in the parent. |
void |
setParent(FieldDescriptor parentFd)
The parent fd defines the high level parent field that contains the repeating elements |
void |
setParent(String fieldKey,
String messageKey,
String parentPath,
Metadata meta)
Creates a field descriptor for the parent for this multiplicity This defines the high level parent field that contains the repeating elements Will use default widget and binding. |
void |
setShowHeaders(boolean showHeaders)
|
void |
setStyleType(MultiplicityConfiguration.StyleType styleType)
|
void |
setTitle(SectionTitle title)
|
void |
setUpdateable(boolean updateable)
Sets if this multiplicity will be updateable or display. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected Map<String,String> concatenatedFields
Constructor Detail |
---|
public MultiplicityConfiguration(MultiplicityConfiguration.MultiplicityType multiplicityType, MultiplicityConfiguration.StyleType styleType, Metadata metaData)
multiplicityType
- the type of multiplicity required, MultiplicityTypestyleType
- the style type for this multiplicity, StyleTypemetaData
- the metadata for the parentFdMethod Detail |
---|
public void nextLine()
public void addFieldConfiguration(MultiplicityFieldConfiguration fieldDescriptor)
fieldDescriptor
- public void setFields(Map<Integer,List<MultiplicityFieldConfiguration>> fields)
public void addConcatenatedField(MultiplicityFieldConfiguration parentField, String fieldKey)
fieldKey
- public MultiplicityConfiguration copy()
public MultiplicityConfiguration.MultiplicityType getMultiplicityType()
public void setMultiplicityType(MultiplicityConfiguration.MultiplicityType multiplicityType)
#MultiplicityConfiguration.MultiplicityType
multiplicityType
- public FieldDescriptor getParentFd()
public void setParent(FieldDescriptor parentFd)
parentFd
- public Map<Integer,List<MultiplicityFieldConfiguration>> getFields()
public String getItemLabel()
public void setItemLabel(String itemLabel)
itemLabel
- public String getAddItemLabel()
public void setAddItemLabel(String addItemLabel)
addItemLabel
- public MultiplicityConfiguration.StyleType getStyleType()
public void setStyleType(MultiplicityConfiguration.StyleType styleType)
public MultiplicityConfiguration getNestedConfig()
public void setNestedConfig(MultiplicityConfiguration config)
config
- public boolean isShowHeaders()
public void setShowHeaders(boolean showHeaders)
showHeaders
- public Map<String,String> getConcatenatedFields()
public boolean isUpdateable()
public void setUpdateable(boolean updateable)
updateable
- public MultiplicityConfiguration.MultiplicityType getLayoutType()
public void setLayoutType(MultiplicityConfiguration.MultiplicityType multiplicityType)
public Metadata getMetaData()
public void setMetaData(Metadata metaData)
public SectionTitle getTitle()
public void setTitle(SectionTitle title)
public void setParent(String fieldKey, String messageKey, String parentPath, Metadata meta)
fieldKey
- messageKey
- parentPath
- meta
- public void addField(String fieldKey, String messageKey, String parentPath, Metadata meta)
fieldKey
- messageKey
- parentPath
- meta
- public MultiplicityGroup getCustomMultiplicityGroup()
public void setCustomMultiplicityGroup(MultiplicityGroup customMultiplicityGroup)
public void setDefaultItemsCreated(int defaultItemsCreated)
public int getDefaultItemsCreated()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |