java.module.annotation
Annotation Type ClassesDirectoryPath


@Target(value={SUPERPACKAGE,TYPE})
@Retention(value=RUNTIME)
public @interface ClassesDirectoryPath

Indicates the path relative to the root of the module archive for searching classes and resources. This metadata annotation is applied to the development module, i.e. the superpackage construct.

For example,

    @ClassesDirectoryPath("WEB-INF/classes")
    superpackage com.wombat.webapp {
       ...
    }
 

Since:
1.7.0
Author:
Stanley M. Ho

Required Element Summary
 String value
          The path relative to the root of the module archive for searching classes and resources.
 

Element Detail

value

public abstract String value
The path relative to the root of the module archive for searching classes and resources.