FileDocCategorySizeDatePackage
Exam.javaAPI DocExample1534Wed May 18 09:39:02 BST 2005com.discursive.jccook.template.freemarker

Exam

public class Exam extends Object

Fields Summary
private double
score
private String
name
private Date
date
private double
weight
Constructors Summary
Methods Summary
public java.util.DategetDate()

        return date;
    
public java.lang.StringgetName()

        return name;
    
public doublegetScore()

        return score;
    
public doublegetWeight()

        return weight;
    
public voidsetDate(java.util.Date pDate)

        this.date = pDate;
    
public voidsetName(java.lang.String pName)

        name = pName;
    
public voidsetScore(double pScore)

        score = pScore;
    
public voidsetWeight(double pWeight)

        weight = pWeight;