com.maryanovsky.gwtutils.client.text
Interface Decoder<T>

All Known Subinterfaces:
Transcoder<T>

public interface Decoder<T>

An interface for classes which can decode text into an object.

Author:
Maryanovsky Alexander

Method Summary
 T decode(String text)
          Creates an object from the specified textual representation.
 

Method Detail

decode

T decode(String text)
         throws ParseException
Creates an object from the specified textual representation.

Throws:
ParseException