← Back to team overview

dhis2-devs team mailing list archive

[Branch ~dhis2-devs-core/dhis2/trunk] Rev 21935: Javadoc

 

------------------------------------------------------------
revno: 21935
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2016-02-10 16:44:56 +0100
message:
  Javadoc
modified:
  dhis-2/dhis-api/src/main/java/org/hisp/dhis/dataelement/DataElementCategoryCombo.java


--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk

Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/dataelement/DataElementCategoryCombo.java'
--- dhis-2/dhis-api/src/main/java/org/hisp/dhis/dataelement/DataElementCategoryCombo.java	2016-01-11 06:09:26 +0000
+++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/dataelement/DataElementCategoryCombo.java	2016-02-10 15:44:56 +0000
@@ -65,13 +65,21 @@
     private List<DataElementCategory> categories = new ArrayList<>();
 
     /**
-     * A set of category option combos. Use getSortedOptionCombos() to get a
-     * sorted list of category option combos.
+     * A set of category option combinations. Use getSortedOptionCombos() to get a
+     * sorted list of category option combinations.
      */
     private Set<DataElementCategoryOptionCombo> optionCombos = new HashSet<>();
 
+    /**
+     * Type of data dimension. Category combinations of type DISAGGREGATION can
+     * be linked to data elements, whereas type ATTRIBUTE can be linked to data
+     * sets.
+     */
     private DataDimensionType dataDimensionType;
 
+    /**
+     * Indicates whether to skip total values for the categories in reports.
+     */
     private boolean skipTotal;
 
     // -------------------------------------------------------------------------