1 26 27 package org.objectweb.openccm.generator.java.ast.lib; 28 29 import org.objectweb.openccm.generator.java.ast.api.StaticObject; 30 31 36 37 public class StaticObjectImpl 38 implements StaticObject 39 { 40 46 47 private boolean static_; 48 49 55 56 public 57 StaticObjectImpl() 58 { 59 static_ = false; 61 } 62 63 69 75 80 public void 81 setStatic(boolean b) 82 { 83 static_ = b; 84 } 85 86 91 public boolean 92 isStatic() 93 { 94 return static_; 95 } 96 } 97 | Popular Tags |