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
 Class<?> value
           
 

Element Detail

value

public abstract Class<?> value


Copyright © 2007-2011. All Rights Reserved.