rowselection.java

来自「本文论述了一个前台笔记本销售系统的开发过程」· Java 代码 · 共 40 行

JAVA
40
字号
package com.set.db;/** * Represents a selection of rows in a JDBC ResultSet *  * @author tommy.zeng */public final class RowSelection {	private Integer firstRow;	private Integer maxRows;	private Integer timeout;	public void setFirstRow(Integer firstRow) {		this.firstRow = firstRow;	}	public Integer getFirstRow() {		return firstRow;	}	public void setMaxRows(Integer maxRows) {		this.maxRows = maxRows;	}	public Integer getMaxRows() {		return maxRows;	}	public void setTimeout(Integer timeout) {		this.timeout = timeout;	}	public Integer getTimeout() {		return timeout;	}}

⌨️ 快捷键说明

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