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

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

The newest version!
package com.thaiopensource.relaxng.edit;

public class OneOrMorePattern extends UnaryPattern {
  public OneOrMorePattern(Pattern child) {
    super(child);
  }

  public  T accept(PatternVisitor visitor) {
    return visitor.visitOneOrMore(this);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy