All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.relaxng.edit.UnaryPattern Maven / Gradle / Ivy

There is a newer version: 20220510
Show newest version
package com.thaiopensource.relaxng.edit;

public abstract class UnaryPattern extends Pattern {
  private Pattern child;

  public UnaryPattern(Pattern child) {
    this.child = child;
  }

  public Pattern getChild() {
    return child;
  }

  public void setChild(Pattern child) {
    this.child = child;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy