1 55 56 package org.jboss.axis.encoding; 57 58 import org.xml.sax.SAXException ; 59 60 66 public class CallbackTarget implements Target 67 { 68 public Callback target; 69 public Object hint; 70 71 public CallbackTarget(Callback target, Object hint) 72 { 73 this.target = target; 74 this.hint = hint; 75 } 76 77 public void set(Object value) throws SAXException  78 { 79 target.setValue(value, hint); 80 } 81 } 82 | Popular Tags |