barvalue.java

来自「该部分提供了对photo的一些操作」· Java 代码 · 共 36 行

JAVA
36
字号
package photo;

public class BarValue {
	private double barValue;
	private String rowKey;
	private String columnKey;
	public double getBarValue() {
		return barValue;
	} 
	public void setBarValue(double barValue) {
		this.barValue = barValue;
	}
	public String getColumnKey() {
		return columnKey;
	}
	public void setColumnKey(String columnKey) {
		this.columnKey = columnKey;
	}
	public String getRowKey() {
		return rowKey;
	}
	public void setRowKey(String rowKey) {
		this.rowKey = rowKey;
	}
	public BarValue(){
		
	}
	public BarValue(double barValue, String rowKey, String columnKey) {
		super();
		this.barValue = barValue;
		this.rowKey = rowKey;
		this.columnKey = columnKey;
	}
	
}

⌨️ 快捷键说明

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