com.syrtsov.ddao
Annotation Type SqlAnnotation


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

SqlAnotation have to be attached to annotation that defines new Dao operation. Operation will be executed by instance of class supplied as value attribute of this annotation.

Created by: Pavel Syrtsov Date: Apr 2, 2007 Time: 12:09:39 AM


Required Element Summary
 java.lang.Class<? extends SqlOperation> value
           
 

Element Detail

value

public abstract java.lang.Class<? extends SqlOperation> value
Returns:
class object that implements SQLOperation interface. This is the class that will be instantiated to execute operation associated with target annotation.