kecheng.java

来自「JSP开发的学生信息管理系统」· Java 代码 · 共 84 行

JAVA
84
字号
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi space 
// Source File Name:   Kecheng.java

package mypackage;

import java.io.Serializable;

public class Kecheng
	implements Serializable
{

	private String courseId;
	private String courseName;
	private String courseType;
	private String flag;
	private String courseName1;
	private int xuefen;

	public Kecheng()
	{
	}

	public void setCourseId(String s)
	{
		courseId = s.trim();
	}

	public String getCourseId()
	{
		return courseId;
	}

	public void setCourseName(String s)
		throws Exception
	{
		courseName = new String(s.getBytes("iso-8859-1"));
	}

	public String getCourseName()
	{
		return courseName;
	}

	public void setCourseType(String s)
		throws Exception
	{
		courseType = new String(s.getBytes("iso-8859-1"));
	}

	public String getCourseType()
	{
		return courseType;
	}

	public void setXuefen(int i)
	{
		xuefen = i;
	}

	public int getXuefen()
	{
		return xuefen;
	}

	public void setFlag(String s)
	{
		flag = s.trim();
	}

	public String getFlag()
	{
		return flag;
	}

	public void setCourseName1(String s)
		throws Exception
	{
		if (courseName == null)
			courseName = new String(s.getBytes("iso-8859-1"));
	}
}

⌨️ 快捷键说明

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