Person.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package bible.jndi;
  2. /**
  3.  * Class Person
  4.  *
  5.  *
  6.  * @author
  7.  * @version %I%, %G%
  8.  */
  9. public class Person implements java.io.Serializable {
  10.   private String firstName;
  11.   private String lastName;
  12.   /**
  13.    * Constructor Person
  14.    *
  15.    *
  16.    */
  17.   public Person() {
  18.     firstName = "Joe";
  19.     lastName  = "Zuffoletto";
  20.   }
  21.   /**
  22.    * Method getFullName
  23.    *
  24.    *
  25.    * @return
  26.    *
  27.    */
  28.   public String getFullName() {
  29.     return firstName + " " + lastName;
  30.   }
  31. }
  32. /*--- Formatted in Bible Style on Thu, Sep 6, '01 ---*/
  33. /*------ Formatted by Jindent 3.24 Gold 1.02 --- http://www.jindent.de ------*/