diff options
Diffstat (limited to 'src/de/fhswf/in/inf/se/notepadMinusMinus/model/Grades.java')
| -rw-r--r-- | src/de/fhswf/in/inf/se/notepadMinusMinus/model/Grades.java | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/de/fhswf/in/inf/se/notepadMinusMinus/model/Grades.java b/src/de/fhswf/in/inf/se/notepadMinusMinus/model/Grades.java index dda5db8..631097e 100644 --- a/src/de/fhswf/in/inf/se/notepadMinusMinus/model/Grades.java +++ b/src/de/fhswf/in/inf/se/notepadMinusMinus/model/Grades.java @@ -11,6 +11,12 @@ import javax.xml.bind.annotation.XmlRootElement; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; +/** + * TODO Add comment here + * + * @author $Author: $ + * @version $Revision: $, $Date: $ UTC + */ @XmlRootElement(name = "grades") public class Grades { @@ -22,6 +28,11 @@ public class Grades private ObjectProperty<BigDecimal> colloquium = new SimpleObjectProperty<>( new BigDecimal("0.0")); + /** + * TODO Add method comment here + * + * @return + */ @XmlElement(name = "grade", required = true) public List<Grade> getGrades() { @@ -32,38 +43,73 @@ public class Grades return this.grades; } + /** + * TODO Add method comment here + * + * @param consumption + */ public void setGrades(List<Grade> consumption) { this.grades = consumption; } + /** + * TODO Add method comment here + * + * @return + */ public final ObjectProperty<BigDecimal> thesisProperty() { return this.thesis; } + /** + * TODO Add method comment here + * + * @return + */ @XmlAttribute(name = "thesis") public final BigDecimal getThesis() { return this.thesisProperty().get(); } + /** + * TODO Add method comment here + * + * @param thesis + */ public final void setThesis(final BigDecimal thesis) { this.thesisProperty().set(thesis); } + /** + * TODO Add method comment here + * + * @return + */ public final ObjectProperty<BigDecimal> colloquiumProperty() { return this.colloquium; } + /** + * TODO Add method comment here + * + * @return + */ @XmlAttribute(name = "colloquium") public final BigDecimal getColloquium() { return this.colloquiumProperty().get(); } + /** + * TODO Add method comment here + * + * @param colloquium + */ public final void setColloquium(final BigDecimal colloquium) { this.colloquiumProperty().set(colloquium); |
