FileDocCategorySizeDatePackage
CharacterDataEditAS.javaAPI DocApache Xerces 3.0.12970Fri Sep 14 20:33:52 BST 2007org.apache.xerces.dom3.as

CharacterDataEditAS

public interface CharacterDataEditAS implements NodeEditAS
deprecated
This interface extends the NodeEditAS interface with additional methods for document editing. An object implementing this interface must also implement NodeEditAS interface.

See also the Document Object Model (DOM) Level 3 Abstract Schemas and Load and Save Specification.

Fields Summary
Constructors Summary
Methods Summary
public booleancanAppendData(java.lang.String arg)
Determines if data can be appended.

param
arg Argument to be appended.
return
true if no reason it can't be done; false if it can't be done.

public booleancanDeleteData(int offset, int count)
Determines if data can be deleted.

param
offset Offset.
param
count Number of 16-bit units to delete.
return
true if no reason it can't be done; false if it can't be done.

public booleancanInsertData(int offset, java.lang.String arg)
Determines if data can be inserted.

param
offset Offset.
param
arg Argument to be set.
return
true if no reason it can't be done; false if it can't be done.

public booleancanReplaceData(int offset, int count, java.lang.String arg)
Determines if data can be replaced.

param
offset Offset.
param
count Replacement.
param
arg Argument to be set.
return
true if no reason it can't be done; false if it can't be done.

public booleancanSetData(int offset, int count)
Determines if data can be set.

param
offset Offset.
param
count Argument to be set.
return
true if no reason it can't be done; false if it can't be done.

public booleangetIsWhitespaceOnly()
true if content only whitespace; false for non-whitespace.