All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.emul.java.lang.annotation.Annotation Maven / Gradle / Ivy

package java.lang.annotation;

/**
 * Source compatibility for runtime Annotation objects.
 * 
 * @author "James X. Nelson ([email protected])"
 *
 */
public interface Annotation {
    
  //Copied from java.lang.annotation.Annotation for api compatibility
  
    boolean equals(Object obj);

    int hashCode();

    String toString();

    Class annotationType();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy