home *** CD-ROM | disk | FTP | other *** search
- package org.apache.cocoon.ojb.samples.bean;
-
- import java.io.Serializable;
-
- public class Employee implements Serializable {
- // $FF: renamed from: id int
- private int field_0 = 1;
- protected int departmentId = 1;
- protected String name = "My Name";
-
- public int getId() {
- return this.field_0;
- }
-
- public int getDepartmentId() {
- return this.departmentId;
- }
-
- public String getName() {
- return this.name;
- }
-
- public void setId(int newId) {
- this.field_0 = newId;
- }
-
- public void setDepartmentId(int newDepartmentId) {
- this.departmentId = newDepartmentId;
- }
-
- public void setName(String newName) {
- this.name = newName;
- }
- }
-