net.sf.daileon.annotation
Annotation Type MethodTemplate


@Retention(value=RUNTIME)
@Target(value=ANNOTATION_TYPE)
public @interface MethodTemplate

Indicates the method that keeps the annotations that correspond to a domain annotation at method level.

Version:
1.0 01/01/2010
Author:
Roberto Perillo

Required Element Summary
 String annotatedClass
          Informs the name of the class that keeps the annotations that correspond to a domain annotation at method level.
 String method
          Informs the name of the actual method that keeps the annotations that correspond to the domain annotation.
 

Element Detail

annotatedClass

public abstract String annotatedClass
Informs the name of the class that keeps the annotations that correspond to a domain annotation at method level. The value indicated must be fully qualified.

Returns:
The name of the class.

method

public abstract String method
Informs the name of the actual method that keeps the annotations that correspond to the domain annotation. The name of the method must be unique in the class.

Returns:
The name of the method.