All Packages Class Hierarchy This Package Previous Next Index
Class com.openly.dt.EncodingDynamicTag
com.openly.dt.EncodingDynamicTag
- public abstract class EncodingDynamicTag
- extends java.lang.Object
- implements com.openly.dt.DynamicTag
EncodingDynamicTag is an abstract class that provides methods to use for implementing when you want to write encoded bytes in writeValue() this class is declared abstract because the metods just call each other. classes extending this should override either getValue() or writeValue(); the other method will automatically work. Check out Java and Linking related books at Openly.com!

-
EncodingDynamicTag() -

-
getValue(String, Params) - the interface method.
-
writeValue(String, Params, OutputStream) - the interface method.

EncodingDynamicTag public EncodingDynamicTag()

getValue public java.lang.String getValue(java.lang.String param, com.openly.util.Params params)
- the interface method. danger! subclass must over ride this or writeValue() to avoid infinite loop
writeValue public void writeValue(java.lang.String param, com.openly.util.Params params, java.io.OutputStream outputStream) throws java.io.IOException
- the interface method. danger! subclass must over ride this or getValue() to avoid infinite loop
All Packages Class Hierarchy This Package Previous Next Index