KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > attribute > Job


1 package com.tirsen.nanning.attribute;
2
3 /**
4  * @transaction required
5  */

6 public class Job {
7     /**
8      * @transient true
9      */

10     private String JavaDoc description;
11
12     private String JavaDoc boss;
13
14     public void fireAllEmployees() {
15     }
16
17     /**
18      * @nanning great
19      * @param employee
20      */

21     public void hireEmployee(String JavaDoc reason, Employee employee) {
22     }
23
24 }
25
Popular Tags