org.apache.xerces.dom3.as
Interface CharacterDataEditAS
- NodeEditAS
public interface CharacterDataEditAS
boolean | canAppendData(String arg)- Determines if data can be appended.
|
boolean | canDeleteData(int offset, int count)- Determines if data can be deleted.
|
boolean | canInsertData(int offset, String arg)- Determines if data can be inserted.
|
boolean | canReplaceData(int offset, int count, String arg)- Determines if data can be replaced.
|
boolean | canSetData(int offset, int count)- Determines if data can be set.
|
boolean | getIsWhitespaceOnly()-
true if content only whitespace; false for
non-whitespace.
|
canAppendData
public boolean canAppendData(String arg)
Determines if data can be appended.
arg - Argument to be appended.
true if no reason it can't be done;
false if it can't be done.
canDeleteData
public boolean canDeleteData(int offset,
int count) Determines if data can be deleted.
offset - Offset.count - Number of 16-bit units to delete.
true if no reason it can't be done;
false if it can't be done.
canInsertData
public boolean canInsertData(int offset,
String arg) Determines if data can be inserted.
offset - Offset.arg - Argument to be set.
true if no reason it can't be done;
false if it can't be done.
canReplaceData
public boolean canReplaceData(int offset,
int count,
String arg) Determines if data can be replaced.
offset - Offset.count - Replacement.arg - Argument to be set.
true if no reason it can't be done;
false if it can't be done.
canSetData
public boolean canSetData(int offset,
int count) Determines if data can be set.
offset - Offset.count - Argument to be set.
true if no reason it can't be done;
false if it can't be done.
getIsWhitespaceOnly
public boolean getIsWhitespaceOnly()
true if content only whitespace; false for
non-whitespace.
Copyright B) 1999-2004 Apache XML Project. All Rights Reserved.