Uses of Class
com.sun.codemodel.JVar
-
Packages that use JVar Package Description com.sun.codemodel Library for generating Java source codecom.sun.tools.xjc.generator.bean com.sun.tools.xjc.outline Provides the outline of the generated Java source code so that additional processing (such as adding more annotations) can be done on the generated code. -
-
Uses of JVar in com.sun.codemodel
Subclasses of JVar in com.sun.codemodel Modifier and Type Class Description classJFieldVarA field that can have aJDocCommentassociated with itMethods in com.sun.codemodel that return JVar Modifier and Type Method Description JVarJBlock. decl(int mods, JType type, String name, JExpression init)Adds a local variable declaration to this blockJVarJBlock. decl(JType type, String name)Adds a local variable declaration to this blockJVarJBlock. decl(JType type, String name, JExpression init)Adds a local variable declaration to this blockJVarJForLoop. init(int mods, JType type, String var, JExpression e)JVarJForLoop. init(JType type, String var, JExpression e)JVarJVar. init(JExpression init)Initialize this variableJVar[]JMethod. listParams()Returns all the parameters in an array.JVarJMethod. listVarParam()Returns the variable parameterJVarJCatchBlock. param(String name)JVarJMethod. param(int mods, JType type, String name)Add the specified variable to the list of parameters for this method signature.JVarJMethod. param(int mods, Class<?> type, String name)JVarJMethod. param(JType type, String name)JVarJMethod. param(Class<?> type, String name)JVarJForEach. var()Returns a reference to the loop variable.JVarJMethod. varParam(JType type, String name)Add the specified variable argument to the list of parameters for this method signature.JVarJMethod. varParam(Class<?> type, String name)Methods in com.sun.codemodel that return types with arguments of type JVar Modifier and Type Method Description List<JVar>JMethod. params()Returns the list of variable of this method.Methods in com.sun.codemodel with parameters of type JVar Modifier and Type Method Description JCommentPartJDocComment. addParam(JVar param)Append a text to an @param tag.JFormatterJFormatter. b(JVar v)Cause the JVar to generate source for itselfvoidJForLoop. init(JVar v, JExpression e)static JFieldRefJExpr. ref(JExpression lhs, JVar field)JFieldRefJExpression. ref(JVar field)JFieldRefJExpressionImpl. ref(JVar field)JFieldRefJClass. staticRef(JVar field)Static field reference. -
Uses of JVar in com.sun.tools.xjc.generator.bean
Methods in com.sun.tools.xjc.generator.bean that return JVar Modifier and Type Method Description abstract JVarMethodWriter. addParameter(JType type, String name)Adds a parameter to the previously declared method.JVarMethodWriter. addParameter(Class type, String name) -
Uses of JVar in com.sun.tools.xjc.outline
Methods in com.sun.tools.xjc.outline with parameters of type JVar Modifier and Type Method Description voidFieldAccessor. toRawValue(JBlock block, JVar $var)Dumps everything in this field into the given variable.
-