package com.ybxiang.ejbws;
|
| public class Human extends Animal implements java.io.Serializable{
| private String email;
|
| public void setEmail(String email) {
| this.email = email;
| }
|
| public String getEmail() {
| return email;
| }
|
| public String toString(){
| return
"Human-->name:"+this.getName()+",age:"+this.getAge()+","+"email:"+email;
| }
|
| }
|
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263899#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...