| org.sakaiproject.sitemanage.api.SectionField
All known Subclasses: org.sakaiproject.sitemanage.impl.SectionFieldImpl,
SectionField | public interface SectionField (Code) | | A SectionField models an input string used to look up a Section. Some typical
SectionFields might include "Department", "Course", and "Section Number".
From the strings in these SectionFields, one should be able to generate an EID
for a Section.
author: jholtzman@berkeley.edu |
Method Summary | |
public String | getLabelKey() Gets the key to use in looking up the locale-specific label for this SectionField. | public int | getMaxSize() Gets the maximum number of characters allowed in this SectionField. | public String | getValue() Gets the current value for this SectionField. | public void | setValue(String value) Sets the value for this SectionField. |
getLabelKey | public String getLabelKey()(Code) | | Gets the key to use in looking up the locale-specific label for this SectionField.
|
getMaxSize | public int getMaxSize()(Code) | | Gets the maximum number of characters allowed in this SectionField.
|
getValue | public String getValue()(Code) | | Gets the current value for this SectionField.
|
setValue | public void setValue(String value)(Code) | | Sets the value for this SectionField.
Parameters: value - |
|
|