Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Result.java
Package: exams.rar [view]
Upload User: nbxinmin
Upload Date: 2021-10-09
Package Size: 46k
Code Size: 2k
Category:
ISAPI-IE
Development Platform:
Java
- package com.xdf.exams.bean;
- import java.util.Date;
- import java.util.HashSet;
- import java.util.Set;
- /**
- * Result generated by MyEclipse - Hibernate Tools
- */
- public class Result implements java.io.Serializable {
- // Fields
- private Long resultid;
- private Student student;
- private Subject subject;
- private int score;
- private Date starttime;
- private Date endtime;
- private Set examrecords = new HashSet(0);
- // Constructors
- /** default constructor */
- public Result() {
- }
- /** minimal constructor */
- public Result(Student student, Subject subject, int score, Date starttime, Date endtime) {
- this.student = student;
- this.subject = subject;
- this.score = score;
- this.starttime = starttime;
- this.endtime = endtime;
- }
- /** full constructor */
- public Result(Student student, Subject subject, int score, Date starttime, Date endtime, Set examrecords) {
- this.student = student;
- this.subject = subject;
- this.score = score;
- this.starttime = starttime;
- this.endtime = endtime;
- this.examrecords = examrecords;
- }
- // Property accessors
- public Long getResultid() {
- return this.resultid;
- }
- public void setResultid(Long resultid) {
- this.resultid = resultid;
- }
- public Student getStudent() {
- return this.student;
- }
- public void setStudent(Student student) {
- this.student = student;
- }
- public Subject getSubject() {
- return this.subject;
- }
- public void setSubject(Subject subject) {
- this.subject = subject;
- }
- public int getScore() {
- return this.score;
- }
- public void setScore(int score) {
- this.score = score;
- }
- public Date getStarttime() {
- return this.starttime;
- }
- public void setStarttime(Date starttime) {
- this.starttime = starttime;
- }
- public Date getEndtime() {
- return this.endtime;
- }
- public void setEndtime(Date endtime) {
- this.endtime = endtime;
- }
- public Set getExamrecords() {
- return this.examrecords;
- }
- public void setExamrecords(Set examrecords) {
- this.examrecords = examrecords;
- }
- }