01: /*
02: * Card.java
03: *
04: * Created on November 7, 2006, 3:57 PM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.test;
11:
12: /**
13: *
14: * @author jindra
15: */
16: public class Card {
17: public @interface RequestForEnhancement {
18: int id();
19:
20: String synopsis();
21:
22: String engineer() default "[unassigned]";
23:
24: String date() default "[unimplemented]";
25: }
26:
27: public @interface Second {
28:
29: }
30:
31: public enum Suit {
32: CLUBS, DIAMONDS, HEARTS, SPADES
33: }
34:
35: /** Creates a new instance of Card */
36: public Card() {
37: }
38:
39: }
|