Searched refs:JMods (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJMods.java34 public class JMods implements JGenerable { class in inherits:JGenerable
51 private JMods(int mods) { method in class:JMods
66 + new JMods(mods).toString());
71 static JMods forVar(int mods) {
73 return new JMods(mods);
76 static JMods forField(int mods) {
78 return new JMods(mods);
81 static JMods forMethod(int mods) {
83 return new JMods(mods);
86 static JMods forClas
[all...]
H A DJCatchBlock.java45 var = new JVar(JMods.forVar(JMod.NONE), exception, name, null);
55 var = new JVar(JMods.forVar(JMod.NONE),
H A DJMethod.java46 private JMods mods;
116 this.mods = JMods.forMethod(mods);
132 this.mods = JMods.forMethod(mods);
182 JVar v = new JVar(JMods.forVar(mods), type, name, null);
228 JMods.forVar(JMod.NONE),
460 public JMods mods() {
467 public JMods getMods() {
H A DJVar.java44 private JMods mods;
80 JVar(JMods mods, JType type, String name, JExpression init) {
131 public JMods mods() {
H A DJFieldVar.java56 JFieldVar(JDefinedClass owner, JMods mods, JType type, String name, JExpression init) {
H A DJForEach.java48 loopVar = new JVar(JMods.forVar(JMod.NONE), type, var, collection);
H A DJForLoop.java44 JVar v = new JVar(JMods.forVar(mods), type, var, e);
H A DJDefinedClass.java60 private JMods mods;
223 this.mods = JMods.forInterface(mods);
225 this.mods = JMods.forClass(mods);
407 JFieldVar f = new JFieldVar(this,JMods.forField(mods), type, name, init);
895 public JMods mods() {
H A DJBlock.java173 JVar v = new JVar(JMods.forVar(mods), type, name, init);

Completed in 35 milliseconds