⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 doctorinfo.java

📁 BEA WebLogic Server 8.1大全 = BEA webLogic server 8.1 unleashed (美) Mark Artiges等著 袁毅 ... [等] 译 eng
💻 JAVA
字号:
import java.io.Serializable;

/**
 * Class DoctorInfo
 * Description: A user-defined data type to be used as a Web Service 
 * 				operation parameter
 *
 * Copyright:    Copyright (c) 2002
 * Company:      Gamma Enterprise Technologies
 * @author Jeff Marin <jeffm@getgamma.com>
 * @version 1.0  9/27/2002
 */

public class DoctorInfo implements Serializable {
	public int id;
	public String firstName;
	public String lastName;
	public float officeVisitCharge;
	
	public DoctorInfo() {
	}
	
	public DoctorInfo(int id, String firstName, String lastName, float officeVisitCharge) {
		this.id = id;
		this.firstName = firstName;
		this.lastName = lastName;
		this.officeVisitCharge = officeVisitCharge;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -