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

« back to all changes in this revision

Viewing changes to mod/rng-schema/src/main/com/thaiopensource/relaxng/edit/UnaryPattern.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.relaxng.edit;
 
2
 
 
3
public abstract class UnaryPattern extends Pattern {
 
4
  private Pattern child;
 
5
 
 
6
  public UnaryPattern(Pattern child) {
 
7
    this.child = child;
 
8
  }
 
9
 
 
10
  public Pattern getChild() {
 
11
    return child;
 
12
  }
 
13
 
 
14
  public void setChild(Pattern child) {
 
15
    this.child = child;
 
16
  }
 
17
}