1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XCharacterData.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __com_sun_star_xml_dom_XCharacterData_idl__
32 #define __com_sun_star_xml_dom_XCharacterData_idl__
34 #ifndef __com_sun_star_xml_dom_XNode_idl__
35 #include
<com
/sun
/star
/xml
/dom
/XNode.idl
>
38 module com
{ module sun
{ module star
{ module xml
{ module dom
{
40 interface XCharacterData
: XNode
43 Append the string to the end of the character data of the node.
45 DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
47 void appendData
([in] string arg
) raises
(DOMException
);
50 Remove a range of 16-bit units from the node.
52 DOMException - INDEX_SIZE_ERR: Raised if the specified offset is negative or greater
53 than the number of 16-bit units in data, or if the specified count is negative.
54 NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
56 void deleteData
([in] long offset
, [in] long count
) raises
(DOMException
);
59 Return the character data of the node that implements this interface.
61 DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
62 DOMException - DOMSTRING_SIZE_ERR: Raised when it would return more characters
63 than fit in a DOMString variable on the implementation platform.
67 string getData
() raises
(DOMException
);
70 The number of 16-bit units that are available through data and the
71 substringData method below.
76 Insert a string at the specified 16-bit unit offset.
78 DOMException - INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than
79 the number of 16-bit units in data.
80 NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
82 void insertData
([in] long offset
, [in] string arg
) raises
(DOMException
);
85 Replace the characters starting at the specified 16-bit unit offset
86 with the specified string.
88 DOMException - INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than
89 the number of 16-bit units in data, or if the specified count is negative.
90 NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
92 void replaceData
([in] long offset
, [in] long count
, [in] string arg
) raises
(DOMException
);
95 Set the character data of the node that implements this interface.
97 DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
98 DOMException - DOMSTRING_SIZE_ERR: Raised when it would return more characters than
99 fit in a DOMString variable on the implementation platform.
101 void setData
([in] string data
) raises
(DOMException
);
104 Extracts a range of data from the node.
106 DOMException - INDEX_SIZE_ERR: Raised if the specified offset is negative or greater
107 than the number of 16-bit units in data, or if the specified count is negative.
108 DOMSTRING_SIZE_ERR: Raised if the specified range of text does not fit into a DOMString.
110 string subStringData
([in] long offset
, [in] long count
) raises
(DOMException
);