~ubuntu-branches/ubuntu/utopic/jing-trang/utopic

« back to all changes in this revision

Viewing changes to mod/dtd-parse/src/main/com/thaiopensource/xml/dtd/om/Pcdata.java

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Thibault
  • Date: 2009-09-01 15:53:03 UTC
  • Revision ID: james.westby@ubuntu.com-20090901155303-2kweef05h5v9j3ni
Tags: upstream-20090818
ImportĀ upstreamĀ versionĀ 20090818

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package com.thaiopensource.xml.dtd.om;
 
2
 
 
3
public class Pcdata extends ModelGroup {
 
4
  
 
5
  public Pcdata() { }
 
6
 
 
7
  public int getType() {
 
8
    return PCDATA;
 
9
  }
 
10
 
 
11
  public void accept(ModelGroupVisitor visitor) throws Exception {
 
12
    visitor.pcdata();
 
13
  }
 
14
}