1 26 package org.objectweb.util.explorer.context.lib; 27 28 import org.objectweb.util.explorer.context.api.Decoder; 29 30 38 public abstract class AbstractDecoder 39 implements Decoder 40 { 41 42 48 49 protected Decoder next_ = null; 50 51 57 63 69 72 public void setNext(Decoder next) { 73 next_ = next; 74 } 75 76 79 public abstract Object decode(Object node); 80 81 } 82 83 84 | Popular Tags |