1 16 17 package org.apache.axis.encoding; 18 19 import org.xml.sax.SAXException ; 20 21 public class CallbackTarget implements Target { 27 public Callback target; 28 public Object hint; 29 public CallbackTarget(Callback target, Object hint) 30 { 31 this.target = target; 32 this.hint = hint; 33 } 34 35 public void set(Object value) throws SAXException { 36 target.setValue(value, hint); 37 } 38 } 39 | Popular Tags |