Class FileField
- java.lang.Object
-
- org.silverpeas.core.contribution.content.form.AbstractField
-
- org.silverpeas.core.contribution.content.form.field.TextField
-
- org.silverpeas.core.contribution.content.form.field.FileField
-
- All Implemented Interfaces:
Serializable
,Comparable<Field>
,Field
public class FileField extends TextField
A FileField stores an attachment reference.- See Also:
Field
,FieldDisplayer
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
PARAM_ID_SUFFIX
static String
TYPE
The text field type name.-
Fields inherited from class org.silverpeas.core.contribution.content.form.field.TextField
CONTENT_TYPE, CONTENT_TYPE_FLOAT, CONTENT_TYPE_INT, PARAM_MAXLENGTH
-
Fields inherited from interface org.silverpeas.core.contribution.content.form.Field
FILE_PARAM_NAME_SUFFIX, TYPE_FILE
-
-
Constructor Summary
Constructors Constructor Description FileField()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Tests equality between this field and the specified field.String
getAttachmentId()
String
getStringValue()
Gets the normalizedString
value of this field.String
getTypeName()
Returns the type name.int
hashCode()
boolean
isReadOnly()
Returns true if the value is read only.void
setAttachmentId(String attachmentId)
void
setStringValue(String value)
Sets the specifiedString
normalized value.-
Methods inherited from class org.silverpeas.core.contribution.content.form.field.TextField
acceptObjectValue, acceptStringValue, acceptValue, acceptValue, compareTo, getObjectValue, getValue, getValue, isNull, setNull, setObjectValue, setValue, setValue
-
Methods inherited from class org.silverpeas.core.contribution.content.form.AbstractField
getName, getOccurrence, setName, setOccurrence
-
-
-
-
Field Detail
-
TYPE
public static final String TYPE
The text field type name.- See Also:
- Constant Field Values
-
PARAM_ID_SUFFIX
public static final String PARAM_ID_SUFFIX
- See Also:
- Constant Field Values
-
-
Method Detail
-
getTypeName
public String getTypeName()
Description copied from class:TextField
Returns the type name.- Specified by:
getTypeName
in interfaceField
- Overrides:
getTypeName
in classTextField
- Returns:
- the name of this field type.
-
getAttachmentId
public String getAttachmentId()
-
setAttachmentId
public void setAttachmentId(String attachmentId)
-
getStringValue
public String getStringValue()
Description copied from interface:Field
Gets the normalizedString
value of this field.- Returns:
- the
String
representation of the value of this field.
-
setStringValue
public void setStringValue(String value)
Description copied from interface:Field
Sets the specifiedString
normalized value.- Parameters:
value
- theString
value to set
-
isReadOnly
public boolean isReadOnly()
Description copied from class:TextField
Returns true if the value is read only.- Specified by:
isReadOnly
in classTextField
-
equals
public boolean equals(Object o)
Description copied from class:TextField
Tests equality between this field and the specified field.
-
-