com.mindoo.remote.api.symphony.document
Interface IRemoteHiddenTextField

All Superinterfaces:
IRemoteField

public interface IRemoteHiddenTextField
extends IRemoteField

This class is a subclass of the Field class and represents a hidden text field in a document.

Creation and access


Method Summary
 java.lang.String getCondition()
          This property returns or sets the condition of a hidden text field.
 boolean isVisible()
          This property returns whether the field is visible.
 void setCondition(java.lang.String condition)
          This property returns or sets the condition of a hidden text field.
 void setContent(java.lang.String content)
          This property returns or sets the content of a hidden text field.
 
Methods inherited from interface com.mindoo.remote.api.symphony.document.IRemoteField
getContent, getRange, getType, remove
 

Method Detail

setContent

void setContent(java.lang.String content)
                throws RemoteEclipseAPIException
This property returns or sets the content of a hidden text field.

Parameters:
content - new content
Throws:
RemoteEclipseAPIException

isVisible

boolean isVisible()
                  throws RemoteEclipseAPIException
This property returns whether the field is visible.

Returns:
true, when the field is visible.
Throws:
RemoteEclipseAPIException

getCondition

java.lang.String getCondition()
                              throws RemoteEclipseAPIException
This property returns or sets the condition of a hidden text field. The condition is a String expression, it can be comprehended as a boolean expression, and decide whether the hidden text field is hidden.

Returns:
condition
Throws:
RemoteEclipseAPIException

setCondition

void setCondition(java.lang.String condition)
                  throws RemoteEclipseAPIException
This property returns or sets the condition of a hidden text field. The condition is a String expression, it can be comprehended as a boolean expression, and decide whether the hidden text field is hidden.

Parameters:
condition - new condition
Throws:
RemoteEclipseAPIException