section.java

来自「another bean example it is more advance 」· Java 代码 · 共 52 行

JAVA
52
字号
package tr.edu.compe515.assignment7.objects;


public class Section {
	private String oid;
	private Course course;
	private int sectionno;
	private int semester;
	private int year;
	private String instructor;
	public Section() {
		// TODO Auto-generated constructor stub
	}
	public String getOid() {
		return oid;
	}
	public void setOid(String oid) {
		this.oid = oid;
	}
	public Course getCourse() {
		return course;
	}
	public void setCourse(Course course) {
		this.course = course;
	}
	public int getSectionno() {
		return sectionno;
	}
	public void setSectionno(int sectionno) {
		this.sectionno = sectionno;
	}
	public int getSemester() {
		return semester;
	}
	public void setSemester(int semester) {
		this.semester = semester;
	}
	public int getYear() {
		return year;
	}
	public void setYear(int year) {
		this.year = year;
	}
	public String getInstructor() {
		return instructor;
	}
	public void setInstructor(String instructor) {
		this.instructor = instructor;
	}

}

⌨️ 快捷键说明

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