de.saar.chorus.domgraph.codec
Annotation Type CodecMetadata
@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface CodecMetadata
An annotation type for adding metadata to a codec class.
Each codec class must be annotated with CodecMetadata in order
to be registered with the CodecManager
. Use this
annotation to specify a name and extension for the codec.
You may optionally annotate a codec as "experimental=true" to
mark it as experimental.
- Author:
- Alexander Koller
name
public abstract String name
extension
public abstract String extension
experimental
public abstract boolean experimental
- Default:
- false