org.kohsuke.rngom.nc.NameClassBuilderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxb-xjc Show documentation
Show all versions of jaxb-xjc Show documentation
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.nc;
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.builder.NameClassBuilder;
import org.kohsuke.rngom.ast.om.Location;
import org.kohsuke.rngom.ast.om.ParsedElementAnnotation;
import java.util.List;
/**
*
* @author
* Kohsuke Kawaguchi ([email protected])
*/
public class NameClassBuilderImpl<
E extends ParsedElementAnnotation,
L extends Location,
A extends Annotations,
CL extends CommentList> implements NameClassBuilder {
public NameClass makeChoice(List nameClasses, L loc, A anno) {
NameClass result = nameClasses.get(0);
for (int i = 1; i < nameClasses.size(); i++)
result = new ChoiceNameClass(result, nameClasses.get(i));
return result;
}
public NameClass makeName(String ns, String localName, String prefix, L loc, A anno) {
return new SimpleNameClass(ns, localName);
}
public NameClass makeNsName(String ns, L loc, A anno) {
return new NsNameClass(ns);
}
public NameClass makeNsName(String ns, NameClass except, L loc, A anno) {
return new NsNameExceptNameClass(ns, except);
}
public NameClass makeAnyName(L loc, A anno) {
return NameClass.ANY;
}
public NameClass makeAnyName(NameClass except, L loc, A anno) {
return new AnyNameExceptNameClass(except);
}
public NameClass makeErrorNameClass() {
return NameClass.NULL;
}
public NameClass annotate(NameClass nc, A anno) throws BuildException {
return nc;
}
public NameClass annotateAfter(NameClass nc, E e) throws BuildException {
return nc;
}
public NameClass commentAfter(NameClass nc, CL comments) throws BuildException {
return nc;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy