org.apache.commons.codec.GWTCommonsCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gwt-commons-codec Show documentation
Show all versions of gwt-commons-codec Show documentation
The Apache Commons Codec component contains encoders and decoders for
various formats such as Base16, Base32, Base64, digest, and Hexadecimal. In addition to these
widely used encoders and decoders, the codec package also maintains a
collection of phonetic encoding utilities.
This is a port for GWT, which enables program, to use Apache Commons Codec
also in the frontend compiled by the gwt compiler to java-script.
package org.apache.commons.codec;
import com.google.gwt.core.client.EntryPoint;
/**
* dummy entry point.
*
* @author Manfred Tremmel
*/
public class GWTCommonsCodec implements EntryPoint {
@Override
public void onModuleLoad() {
// Dummy Entry Point
}
}