/* Person.java {{IS_NOTE Purpose: Description: History: Aug 10 2007, Created by Jeff Liu }}IS_NOTE Copyright (C) 2005 Potix Corporation. All Rights Reserved. {{IS_RIGHT This program is distributed under GPL Version 2.0 in the hope that it will be useful, but WITHOUT ANY WARRANTY. }}IS_RIGHT */ package demo; /** * This class is for demo usage * @author Jeff * */ public class Person { private String _name; private String _email; private String _accountId; public Person(String name, String email, String dep) { super(); _name = name; _email = email; _accountId = dep; } public String getAccountId() { return _accountId; } public void setAccountId(String account) { _accountId = account; } public String getEmail() { return _email; } public void setEmail(String email) { _email = email; } public String getName() { return _name; } public void setName(String name) { _name = name; } }