Example #1
0
 /** @see com.bloatit.model.Milestone#getOffer() */
 @XmlElement
 @XmlIDREF
 public RestOffer getOffer() {
   final RestOffer offer = new RestOffer(model.getOffer());
   if (offer.isNull()) {
     return null;
   }
   return offer;
 }
Example #2
0
 /** @see com.bloatit.model.Milestone#getReleases() */
 @XmlElement
 public RestReleaseList getReleases() {
   return new RestReleaseList(model.getReleases());
 }
Example #3
0
 /** @see com.bloatit.model.Milestone#getMilestoneState() */
 @XmlElement
 public MilestoneState getMilestoneState() {
   return model.getMilestoneState();
 }
Example #4
0
 /** @see com.bloatit.model.Milestone#getPosition() */
 @XmlElement
 public int getPosition() {
   return model.getPosition();
 }
Example #5
0
 /** @see com.bloatit.model.Milestone#getDescription() */
 @XmlElement
 public String getDescription() {
   return model.getDescription();
 }
Example #6
0
 /** @see com.bloatit.model.Milestone#getTitle() */
 @XmlElement
 public String getTitle() {
   return model.getTitle();
 }
Example #7
0
 /** @see com.bloatit.model.Milestone#getAmount() */
 @XmlAttribute
 public BigDecimal getAmount() {
   return model.getAmount();
 }
Example #8
0
 /** @see com.bloatit.model.Milestone#getExpirationDate() */
 @XmlAttribute
 @XmlJavaTypeAdapter(DateAdapter.class)
 public Date getExpirationDate() {
   return model.getExpirationDate();
 }
Example #9
0
 /** @see com.bloatit.model.Milestone#getMinorBugsPercent() */
 @XmlElement
 public int getMinorBugsPercent() {
   return model.getMinorBugsPercent();
 }
Example #10
0
 /** @see com.bloatit.model.Milestone#getFatalBugsPercent() */
 @XmlElement
 public int getFatalBugsPercent() {
   return model.getFatalBugsPercent();
 }
Example #11
0
 /** @see com.bloatit.model.Milestone#getReleaseDate() */
 @XmlAttribute
 @XmlJavaTypeAdapter(DateAdapter.class)
 public Date getReleaseDate() {
   return model.getReleaseDate();
 }
Example #12
0
 @XmlAttribute
 @XmlID
 public String getId() {
   return model.getId().toString();
 }