| org.apache.xerces.dom3.as.CharacterDataEditAS
CharacterDataEditAS | public interface CharacterDataEditAS extends NodeEditAS(Code) | | |
Method Summary | |
public boolean | canAppendData(String arg) Determines if data can be appended.
Parameters: arg - Argument to be appended. | public boolean | canDeleteData(int offset, int count) Determines if data can be deleted.
Parameters: offset - Offset. Parameters: count - Number of 16-bit units to delete. | public boolean | canInsertData(int offset, String arg) Determines if data can be inserted.
Parameters: offset - Offset. Parameters: arg - Argument to be set. | public boolean | canReplaceData(int offset, int count, String arg) Determines if data can be replaced.
Parameters: offset - Offset. Parameters: count - Replacement. Parameters: arg - Argument to be set. | public boolean | canSetData(int offset, int count) Determines if data can be set.
Parameters: offset - Offset. Parameters: count - Argument to be set. | public boolean | getIsWhitespaceOnly() true if content only whitespace; false for
non-whitespace. |
canAppendData | public boolean canAppendData(String arg)(Code) | | Determines if data can be appended.
Parameters: 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)(Code) | | Determines if data can be deleted.
Parameters: offset - Offset. Parameters: 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)(Code) | | Determines if data can be inserted.
Parameters: offset - Offset. Parameters: 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)(Code) | | Determines if data can be replaced.
Parameters: offset - Offset. Parameters: count - Replacement. Parameters: 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)(Code) | | Determines if data can be set.
Parameters: offset - Offset. Parameters: 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()(Code) | | true if content only whitespace; false for
non-whitespace.
|
|
|