FileDocCategorySizeDatePackage
Compatability.javaAPI DocApache Ant 1.701925Wed Dec 13 06:16:22 GMT 2006org.apache.tools.ant.taskdefs.optional.extension

Compatability

public final class Compatability extends Object
Enum used in (@link Extension) to indicate the compatability of one extension to another. See (@link Extension) for instances of object. WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING This file is from excalibur.extension package. Dont edit this file directly as there is no unit tests to make sure it is operational in ant. Edit file in excalibur and run tests there before changing ants file. WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
see
Extension

Fields Summary
private final String
name
A string representaiton of compatability level.
Constructors Summary
Compatability(String name)
Create a compatability enum with specified name.

param
name the name of compatability level

        this.name = name;
    
Methods Summary
public java.lang.StringtoString()
Return name of compatability level.

return
the name of compatability level

        return name;