Skip to content

Commit

Permalink
Extra comments for clarity.
Browse files Browse the repository at this point in the history
  • Loading branch information
Agadar committed Feb 4, 2017
1 parent 4829e94 commit f5d7e1d
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -27,14 +27,16 @@ public class Resolution {
public String category;

/**
* Which council this resolution was send to.
* Which council this resolution was send to. Has no value if this resolution
* is currently at vote.
*/
@XmlElement(name = "COUNCIL")
@XmlJavaTypeAdapter(Council.Adapter.class)
public Council council;

/**
* This resolution's id as it is known to the specific Council it's in.
* This resolution's id as it is known to the specific Council it's in. Has
* no value if this resolution is currently at vote.
*/
@XmlElement(name = "COUNCILID")
public int councilId;
@@ -77,7 +79,8 @@ public class Resolution {
public String proposedBy;

/**
* This resolution's id as it is known to the World Assembly as a whole.
* This resolution's id as it is known to the World Assembly as a whole. Has
* no value if this resolution is currently at vote.
*/
@XmlElement(name = "RESID")
public int id;

0 comments on commit f5d7e1d

Please sign in to comment.