Package com.sun.tools.rngom.ast.builder
Interface NameClassBuilder<N extends ParsedNameClass,E extends ParsedElementAnnotation,L extends Location,A extends Annotations<E,L,CL>,CL extends CommentList<L>>
-
- All Known Implementing Classes:
NameClassBuilderImpl
public interface NameClassBuilder<N extends ParsedNameClass,E extends ParsedElementAnnotation,L extends Location,A extends Annotations<E,L,CL>,CL extends CommentList<L>>- Author:
- Kohsuke Kawaguchi (kk@kohsuke.org)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Nannotate(N nc, A anno)NannotateAfter(N nc, E e)NcommentAfter(N nc, CL comments)NmakeAnyName(L loc, A anno)NmakeAnyName(N except, L loc, A anno)Caller must enforce constraints on except.NmakeChoice(List<N> nameClasses, L loc, A anno)NmakeErrorNameClass()NmakeName(String ns, String localName, String prefix, L loc, A anno)NmakeNsName(String ns, L loc, A anno)NmakeNsName(String ns, N except, L loc, A anno)Caller must enforce constraints on except.
-
-
-
Method Detail
-
annotate
N annotate(N nc, A anno) throws BuildException
- Throws:
BuildException
-
annotateAfter
N annotateAfter(N nc, E e) throws BuildException
- Throws:
BuildException
-
commentAfter
N commentAfter(N nc, CL comments) throws BuildException
- Throws:
BuildException
-
makeNsName
N makeNsName(String ns, N except, L loc, A anno)
Caller must enforce constraints on except.
-
makeErrorNameClass
N makeErrorNameClass()
-
-