~ubuntu-branches/ubuntu/vivid/herold/vivid

« back to all changes in this revision

Viewing changes to java/org/dbdoclet/xiphias/dom/CharacterDataImpl.java

  • Committer: Package Import Robot
  • Author(s): Mathieu Malaterre
  • Date: 2012-09-20 10:00:14 UTC
  • Revision ID: package-import@ubuntu.com-20120920100014-5pcwbw2err6on8yg
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.dbdoclet.xiphias.dom;
 
2
 
 
3
import org.w3c.dom.CharacterData;
 
4
import org.w3c.dom.DOMException;
 
5
 
 
6
public class CharacterDataImpl extends NodeImpl implements CharacterData {
 
7
 
 
8
    private String data;
 
9
    
 
10
    public void appendData(String arg) throws DOMException {
 
11
        // TODO Auto-generated method stub
 
12
 
 
13
    }
 
14
 
 
15
    public void deleteData(int offset, int count) throws DOMException {
 
16
        // TODO Auto-generated method stub
 
17
 
 
18
    }
 
19
 
 
20
    public String getData() throws DOMException {
 
21
        return data;
 
22
    }
 
23
 
 
24
    public int getLength() {
 
25
        // TODO Auto-generated method stub
 
26
        return 0;
 
27
    }
 
28
 
 
29
    public void insertData(int offset, String arg) throws DOMException {
 
30
        // TODO Auto-generated method stub
 
31
 
 
32
    }
 
33
 
 
34
    public void replaceData(int offset, int count, String arg) throws DOMException {
 
35
        // TODO Auto-generated method stub
 
36
 
 
37
    }
 
38
 
 
39
    public void setData(String data) throws DOMException {
 
40
        
 
41
        this.data = data;
 
42
        setNodeValue(data);
 
43
    }
 
44
 
 
45
    public String substringData(int offset, int count) throws DOMException {
 
46
        // TODO Auto-generated method stub
 
47
        return null;
 
48
    }
 
49
 
 
50
}