JADE Java Persistence API
1.0

com.jadeworld.jade.persistence
Annotation Type ApplicationEntity


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

Specifies that the class is a subclass of the JADE Application class. Each JADE schema needs one such class, so each Java packge needs one class with this annotation.


Optional Element Summary
 java.lang.String name
          The name of the JADE class.
 java.lang.String superclass
          The name of the JADE superclass, which is either Application or a subclass of Application.
 

name

public abstract java.lang.String name
The name of the JADE class. Defaults to the unqualified name of the Java class.

Default:
""

superclass

public abstract java.lang.String superclass
The name of the JADE superclass, which is either Application or a subclass of Application. Defaults to Application, which is the case where the JADE superschema is RootSchema.

Default:
"Application"

JADE Java Persistence API
1.0

Copyright © 2007 Jade Software Corporation