Menu

[r11]: / branches / dasho / DOM / interface / CharacterData.h  Maximize  Restore  History

Download this file

30 lines (22 with data), 969 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef _CharacterData_H_
#define _CharacterData_H_
#include "DOM.h"
class CharacterData : Node {
public:
String getData()
throw (DOMException&);
void setData(String data)
throw (DOMException&);
int getLength();
String substringData(int offset, int count)
throw (DOMException&);
void appendData(String arg)
throw (DOMException&);
void insertData(int offset, String arg)
throw (DOMException&);
void deleteData(int offset, int count)
throw (DOMException&);
void replaceData(int offset, int count, String arg)
throw (DOMException&);
};
#endif // _CharacterData_H_
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.