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

jodd.proxetta.AnnotationInfo Maven / Gradle / Ivy

Go to download

Jodd Proxetta is the fastest proxy creator with unique approach for defying pointcuts and advices.

There is a newer version: 6.0.1
Show newest version
// Copyright (c) 2003-2014, Jodd Team (jodd.org). All Rights Reserved.

package jodd.proxetta;

import java.util.Set;

/**
 * Annotation information.
 */
public interface AnnotationInfo {

	String getAnnotationClassname();

	String getAnnotationSignature();

	boolean isVisible();

	/**
	 * Lookups for annotation element. May return:
	 * 
    *
  • String - for simple values,
  • *
  • Object[] - for array values
  • *
  • String[2] - pair of two strings, representing description and value
  • *
  • AnnotationInfo - nested annotation.
  • *
*/ Object getElement(String name); /** * Returns annotation element names. */ Set getElementNames(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy