org.kohsuke.rngom.parse.host.AnnotationsHost Maven / Gradle / Ivy
Go to download
Old JAXB Binding Compiler. Contains source code needed for binding customization files into java sources.
In other words: the *tool* to generate java classes for the given xml representation.
package org.kohsuke.rngom.parse.host;
import org.kohsuke.rngom.ast.builder.Annotations;
import org.kohsuke.rngom.ast.builder.BuildException;
import org.kohsuke.rngom.ast.builder.CommentList;
import org.kohsuke.rngom.ast.om.Location;
import org.kohsuke.rngom.ast.om.ParsedElementAnnotation;
/**
*
* @author
* Kohsuke Kawaguchi ([email protected])
*/
class AnnotationsHost extends Base implements Annotations {
final Annotations lhs;
final Annotations rhs;
AnnotationsHost( Annotations lhs, Annotations rhs ) {
this.lhs = lhs;
this.rhs = rhs;
}
public void addAttribute(String ns, String localName, String prefix,
String value, Location _loc) throws BuildException {
LocationHost loc = cast(_loc);
lhs.addAttribute(ns, localName, prefix, value, loc.lhs);
rhs.addAttribute(ns, localName, prefix, value, loc.rhs);
}
public void addComment(CommentList _comments) throws BuildException {
CommentListHost comments = (CommentListHost) _comments;
lhs.addComment(comments==null?null:comments.lhs);
rhs.addComment(comments==null?null:comments.rhs);
}
public void addElement(ParsedElementAnnotation _ea) throws BuildException {
ParsedElementAnnotationHost ea = (ParsedElementAnnotationHost) _ea;
lhs.addElement(ea.lhs);
rhs.addElement(ea.rhs);
}
public void addLeadingComment(CommentList _comments) throws BuildException {
CommentListHost comments = (CommentListHost) _comments;
lhs.addLeadingComment(comments.lhs);
rhs.addLeadingComment(comments.rhs);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy