1*d1766043SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*d1766043SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*d1766043SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*d1766043SAndrew Rist * distributed with this work for additional information
6*d1766043SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*d1766043SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*d1766043SAndrew Rist * "License"); you may not use this file except in compliance
9*d1766043SAndrew Rist * with the License.  You may obtain a copy of the License at
10*d1766043SAndrew Rist *
11*d1766043SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*d1766043SAndrew Rist *
13*d1766043SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*d1766043SAndrew Rist * software distributed under the License is distributed on an
15*d1766043SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*d1766043SAndrew Rist * KIND, either express or implied.  See the License for the
17*d1766043SAndrew Rist * specific language governing permissions and limitations
18*d1766043SAndrew Rist * under the License.
19*d1766043SAndrew Rist *
20*d1766043SAndrew Rist *************************************************************/
21*d1766043SAndrew Rist
22*d1766043SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#ifndef __com_sun_star_xml_dom_XCharacterData_idl__
25cdf0e10cSrcweir#define __com_sun_star_xml_dom_XCharacterData_idl__
26cdf0e10cSrcweir
27cdf0e10cSrcweir#ifndef __com_sun_star_xml_dom_XNode_idl__
28cdf0e10cSrcweir#include <com/sun/star/xml/dom/XNode.idl>
29cdf0e10cSrcweir#endif
30cdf0e10cSrcweir
31cdf0e10cSrcweirmodule com { module sun { module star { module xml { module dom {
32cdf0e10cSrcweir
33cdf0e10cSrcweirinterface XCharacterData: XNode
34cdf0e10cSrcweir{
35cdf0e10cSrcweir    /**
36cdf0e10cSrcweir    Append the string to the end of the character data of the node.
37cdf0e10cSrcweir    Throws:
38cdf0e10cSrcweir        DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
39cdf0e10cSrcweir    */
40cdf0e10cSrcweir    void appendData([in] string arg) raises (DOMException);
41cdf0e10cSrcweir
42cdf0e10cSrcweir    /**
43cdf0e10cSrcweir    Remove a range of 16-bit units from the node.
44cdf0e10cSrcweir    Throws:
45cdf0e10cSrcweir        DOMException - INDEX_SIZE_ERR: Raised if the specified offset is negative or greater
46cdf0e10cSrcweir            than the number of 16-bit units in data, or if the specified count is negative.
47cdf0e10cSrcweir        NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
48cdf0e10cSrcweir    */
49cdf0e10cSrcweir    void deleteData([in] long offset, [in] long count) raises (DOMException);
50cdf0e10cSrcweir
51cdf0e10cSrcweir    /**
52cdf0e10cSrcweir    Return the character data of the node that implements this interface.
53cdf0e10cSrcweir    Throws:
54cdf0e10cSrcweir        DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
55cdf0e10cSrcweir        DOMException - DOMSTRING_SIZE_ERR: Raised when it would return more characters
56cdf0e10cSrcweir            than fit in a DOMString variable on the implementation platform.
57cdf0e10cSrcweir
58cdf0e10cSrcweir
59cdf0e10cSrcweir    */
60cdf0e10cSrcweir    string getData() raises (DOMException);
61cdf0e10cSrcweir
62cdf0e10cSrcweir    /**
63cdf0e10cSrcweir    The number of 16-bit units that are available through data and the
64cdf0e10cSrcweir    substringData method below.
65cdf0e10cSrcweir    */
66cdf0e10cSrcweir    long getLength();
67cdf0e10cSrcweir
68cdf0e10cSrcweir    /**
69cdf0e10cSrcweir    Insert a string at the specified 16-bit unit offset.
70cdf0e10cSrcweir    Throws:
71cdf0e10cSrcweir    DOMException - INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than
72cdf0e10cSrcweir                                   the number of 16-bit units in data.
73cdf0e10cSrcweir                   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
74cdf0e10cSrcweir    */
75cdf0e10cSrcweir    void insertData([in] long offset, [in] string arg) raises (DOMException);
76cdf0e10cSrcweir
77cdf0e10cSrcweir    /**
78cdf0e10cSrcweir    Replace the characters starting at the specified 16-bit unit offset
79cdf0e10cSrcweir    with the specified string.
80cdf0e10cSrcweir    Throws;
81cdf0e10cSrcweir    DOMException - INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than
82cdf0e10cSrcweir                      the number of 16-bit units in data, or if the specified count is negative.
83cdf0e10cSrcweir                   NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
84cdf0e10cSrcweir    */
85cdf0e10cSrcweir    void replaceData([in] long offset, [in] long count, [in] string arg) raises (DOMException);
86cdf0e10cSrcweir
87cdf0e10cSrcweir    /**
88cdf0e10cSrcweir    Set the character data of the node that implements this interface.
89cdf0e10cSrcweir    Throws:
90cdf0e10cSrcweir        DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
91cdf0e10cSrcweir        DOMException - DOMSTRING_SIZE_ERR: Raised when it would return more characters than
92cdf0e10cSrcweir            fit in a DOMString variable on the implementation platform.
93cdf0e10cSrcweir    */
94cdf0e10cSrcweir    void setData([in] string data) raises (DOMException);
95cdf0e10cSrcweir
96cdf0e10cSrcweir    /**
97cdf0e10cSrcweir    Extracts a range of data from the node.
98cdf0e10cSrcweir    Throws:
99cdf0e10cSrcweir        DOMException - INDEX_SIZE_ERR: Raised if the specified offset is negative or greater
100cdf0e10cSrcweir            than the number of 16-bit units in data, or if the specified count is negative.
101cdf0e10cSrcweir        DOMSTRING_SIZE_ERR: Raised if the specified range of text does not fit into a DOMString.
102cdf0e10cSrcweir    */
103cdf0e10cSrcweir    string subStringData([in] long offset, [in] long count) raises (DOMException);
104cdf0e10cSrcweir
105cdf0e10cSrcweir};
106cdf0e10cSrcweir};};};};};
107cdf0e10cSrcweir
108cdf0e10cSrcweir#endif
109