public void reset() {
   if (!inReset) {
     inReset = true;
     resetLocalVariables();
     if (null != size) {
       size.reset(this.defaultSize);
     }
     if (null != translucency) {
       translucency.reset(this.defaultTranslucency);
     }
     inReset = false;
   }
 }
 public void initTree() {
   if (!inInitTree) {
     inInitTree = true;
     initLocalVariables();
     if (null != size) {
       size.initTree(this.defaultSize);
     }
     if (null != translucency) {
       translucency.initTree(this.defaultTranslucency);
     }
     inInitTree = false;
   }
 }