1 18 19 package org.objectweb.jac.aspects.gui; 20 21 import org.objectweb.jac.core.rtti.FieldItem; 22 import org.objectweb.jac.core.rtti.ClassRepository; 23 24 27 28 public class HandlerResult { 29 public Object object; 30 public FieldItem field; 31 public FieldItem container; 32 public Object extraOption; 33 public CustomizedView target; 34 35 42 public HandlerResult(CustomizedView target, 43 FieldItem container,Object object, String fieldname, 44 Object extraOption) { 45 this.target = target; 46 this.container = container; 47 this.object = object; 48 if (fieldname!=null) 49 this.field = 50 ClassRepository.get().getClass(object).getField(fieldname); 51 this.extraOption = extraOption; 52 } 53 } 54 | Popular Tags |