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

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

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

public class TextAnnotation extends AnnotationChild {
  private String value;

  public TextAnnotation(String value) {
    this.value = value;
  }

  public String getValue() {
    return value;
  }

  public void setValue(String value) {
    this.value = value;
  }

  public  T accept(AnnotationChildVisitor visitor) {
    return visitor.visitText(this);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy