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

📄 coffee.java

📁 EmployeeArray的应用及EmployeeArray在输入输出的控制
💻 JAVA
字号:
package uml;


public class Coffee {

	/**
	 * @uml.property  name="Code"
	 */
	private String code = "";

	/**
	 * Getter of the property <tt>Code</tt>
	 * @return  Returns the code.
	 * @uml.property  name="Code"
	 */
	public String getCode() {
		return code;
	}

	/**
	 * Setter of the property <tt>Code</tt>
	 * @param Code  The code to set.
	 * @uml.property  name="Code"
	 */
	public void setCode(String code) {
		this.code = code;
	}

	/**
	 * @uml.property  name="Description"
	 */
	private String description = "";

	/**
	 * Getter of the property <tt>Description</tt>
	 * @return  Returns the description.
	 * @uml.property  name="Description"
	 */
	public String getDescription() {
		return description;
	}

	/**
	 * Setter of the property <tt>Description</tt>
	 * @param Description  The description to set.
	 * @uml.property  name="Description"
	 */
	public void setDescription(String description) {
		this.description = description;
	}

	/**
	 * @uml.property  name="Price"
	 */
	private double price;

	/**
	 * Getter of the property <tt>Price</tt>
	 * @return  Returns the price.
	 * @uml.property  name="Price"
	 */
	public double getPrice() {
		return price;
	}

	/**
	 * Setter of the property <tt>Price</tt>
	 * @param Price  The price to set.
	 * @uml.property  name="Price"
	 */
	public void setPrice(double price) {
		this.price = price;
	}

	/**
	 * @uml.property  name="Country_of_origin"
	 */
	private String country_of_origin = "";

	/**
	 * Getter of the property <tt>Country_of_origin</tt>
	 * @return  Returns the country_of_origin.
	 * @uml.property  name="Country_of_origin"
	 */
	public String getCountry_of_origin() {
		return country_of_origin;
	}

	/**
	 * Setter of the property <tt>Country_of_origin</tt>
	 * @param Country_of_origin  The country_of_origin to set.
	 * @uml.property  name="Country_of_origin"
	 */
	public void setCountry_of_origin(String country_of_origin) {
		this.country_of_origin = country_of_origin;
	}

	/**
	 * @uml.property  name="Type_of_roast"
	 */
	private String type_of_roast = "";

	/**
	 * Getter of the property <tt>Type_of_roast</tt>
	 * @return  Returns the type_of_roast.
	 * @uml.property  name="Type_of_roast"
	 */
	public String getType_of_roast() {
		return type_of_roast;
	}

	/**
	 * Setter of the property <tt>Type_of_roast</tt>
	 * @param Type_of_roast  The type_of_roast to set.
	 * @uml.property  name="Type_of_roast"
	 */
	public void setType_of_roast(String type_of_roast) {
		this.type_of_roast = type_of_roast;
	}

	/**
	 * @uml.property  name="Flavor"
	 */
	private String flavor = "";

	/**
	 * Getter of the property <tt>Flavor</tt>
	 * @return  Returns the flavor.
	 * @uml.property  name="Flavor"
	 */
	public String getFlavor() {
		return flavor;
	}

	/**
	 * Setter of the property <tt>Flavor</tt>
	 * @param Flavor  The flavor to set.
	 * @uml.property  name="Flavor"
	 */
	public void setFlavor(String flavor) {
		this.flavor = flavor;
	}

	/**
	 * @uml.property  name="Aroma"
	 */
	private String aroma = "";

	/**
	 * Getter of the property <tt>Aroma</tt>
	 * @return  Returns the aroma.
	 * @uml.property  name="Aroma"
	 */
	public String getAroma() {
		return aroma;
	}

	/**
	 * Setter of the property <tt>Aroma</tt>
	 * @param Aroma  The aroma to set.
	 * @uml.property  name="Aroma"
	 */
	public void setAroma(String aroma) {
		this.aroma = aroma;
	}

	/**
	 * @uml.property  name="Acidity"
	 */
	private String acidity = "";

	/**
	 * Getter of the property <tt>Acidity</tt>
	 * @return  Returns the acidity.
	 * @uml.property  name="Acidity"
	 */
	public String getAcidity() {
		return acidity;
	}

	/**
	 * Setter of the property <tt>Acidity</tt>
	 * @param Acidity  The acidity to set.
	 * @uml.property  name="Acidity"
	 */
	public void setAcidity(String acidity) {
		this.acidity = acidity;
	}

	/**
	 * @uml.property  name="Body"
	 */
	private String body = "";

	/**
	 * Getter of the property <tt>Body</tt>
	 * @return  Returns the body.
	 * @uml.property  name="Body"
	 */
	public String getBody() {
		return body;
	}

	/**
	 * Setter of the property <tt>Body</tt>
	 * @param Body  The body to set.
	 * @uml.property  name="Body"
	 */
	public void setBody(String body) {
		this.body = body;
	}

}

⌨️ 快捷键说明

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