net.java.ao
Annotation Type Implementation


@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface Implementation

Used to specify a defined implementation for an entity. Example:

@Implementation(PersonImpl.class)
 public interface Person extends Entity {
     // ...
 }

The parameter is not optional.

Author:
Daniel Spiewak

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

Element Detail

value

public abstract java.lang.Class<?> value


Copyright © 2007-2014. All Rights Reserved.