org.unlaxer.diagram.TextBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unlaxer-diagram Show documentation
Show all versions of unlaxer-diagram Show documentation
a simple parser combinator inspired by RelaxNG
The newest version!
package org.unlaxer.diagram;
public class TextBuilder implements Builder{
final String text;
public TextBuilder(String text) {
super();
this.text = text;
}
@Override
public String build() {
return text;
}
@Override
public Builder addInner(Builder inner) {
// nop inner;
return this;
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy