public class TextSettings extends BaseClass
TextImportSettings
.config, id, scClassName
Constructor and Description |
---|
TextSettings() |
TextSettings(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
com.google.gwt.core.client.JavaScriptObject |
create() |
EscapingMode |
getEscapingMode()
EscapingMode expected for escaping special characters embedded in text values. |
java.lang.String[] |
getFieldList()
For export, a set of fields to export.
|
java.lang.String |
getFieldSeparator()
Separator between field values.
|
java.lang.String |
getLineSeparator()
Separator between Records.
|
static TextSettings |
getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj) |
boolean |
isCreated()
Definition of a hilite style.
|
void |
setEscapingMode(EscapingMode escapingMode)
EscapingMode expected for escaping special characters embedded in text values. |
void |
setFieldList(java.lang.String... fieldList)
For export, a set of fields to export.
|
void |
setFieldSeparator(java.lang.String fieldSeparator)
Separator between field values.
|
void |
setJavaScriptObject(com.google.gwt.core.client.JavaScriptObject jsObj) |
void |
setLineSeparator(java.lang.String lineSeparator)
Separator between Records.
|
asSGWTComponent, destroy, doAddHandler, doInit, error, error, errorIfNotCreated, fireEvent, getAttribute, getAttributeAsBoolean, getAttributeAsDate, getAttributeAsDouble, getAttributeAsElement, getAttributeAsFloat, getAttributeAsInt, getAttributeAsJavaScriptObject, getAttributeAsMap, getAttributeAsString, getAttributeAsStringArray, getClassName, getConfig, getHandlerCount, getID, getJsObj, getOrCreateJsObj, getRef, getScClassName, internalSetID, internalSetID, onBind, onInit, registerID, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setID, setProperty, setProperty, setProperty, setProperty, setScClassName
public TextSettings()
public TextSettings(com.google.gwt.core.client.JavaScriptObject jsObj)
public static TextSettings getOrCreateRef(com.google.gwt.core.client.JavaScriptObject jsObj)
public void setJavaScriptObject(com.google.gwt.core.client.JavaScriptObject jsObj)
public com.google.gwt.core.client.JavaScriptObject create()
public void setEscapingMode(EscapingMode escapingMode) throws java.lang.IllegalStateException
EscapingMode
expected for escaping special characters embedded in text values.escapingMode
- escapingMode Default value is "backslash"java.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic EscapingMode getEscapingMode()
EscapingMode
expected for escaping special characters embedded in text values.public void setFieldSeparator(java.lang.String fieldSeparator) throws java.lang.IllegalStateException
fieldSeparator
- . See String
. Default value is ","java.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String getFieldSeparator()
String
public void setLineSeparator(java.lang.String lineSeparator) throws java.lang.IllegalStateException
TextExportSettings
.lineSeparator
- . See String
. Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been createdpublic java.lang.String getLineSeparator()
TextExportSettings
.String
public boolean isCreated()
See Hiliting
for an overview.
public java.lang.String[] getFieldList()
Fields may be specified that are not in the DataSource but for which data values are present in the provided Records. In this case the field is assumed to be of type "text".
For values, in order.
If fieldList
is unset, DataSource fields are used, in order.
If more values exist in a given Record than the listed fields or than all DataSource fields, remaining values are ignored.
public void setFieldList(java.lang.String... fieldList) throws java.lang.IllegalStateException
Fields may be specified that are not in the DataSource but for which data values are present in the provided Records. In this case the field is assumed to be of type "text".
For values, in order.
If fieldList
is unset, DataSource fields are used, in order.
If more values exist in a given Record than the listed fields or than all DataSource fields, remaining values are ignored.
fieldList
- fieldList Default value is nulljava.lang.IllegalStateException
- this property cannot be changed after the underlying component has been created