10 lines
251 B
Java
10 lines
251 B
Java
|
//: annotations/database/Uniqueness.java
|
|||
|
// <20>2015 MindView LLC: see Copyright.txt
|
|||
|
// Sample of nested annotations
|
|||
|
package annotations.database;
|
|||
|
|
|||
|
public @interface Uniqueness {
|
|||
|
Constraints constraints()
|
|||
|
default @Constraints(unique=true);
|
|||
|
} ///:~
|