~inf5750-charting/dhis2-academy/charting

« back to all changes in this revision

Viewing changes to local/vn/dhis-service-spreadsheet-reporting/src/main/java/org/hisp/dhis/reportsheet/GenericItem.java

  • Committer: Abyot Asalefew Gizaw
  • Date: 2012-10-12 00:13:55 UTC
  • Revision ID: abyota@gmail.com-20121012001355-yehfghfqirdvqmd7
Updating the acadmy trunk with the main DHIS2 trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
     */
74
74
    protected String expression;
75
75
 
 
76
    /**
 
77
     * The extraExpression for this Object.
 
78
     */
 
79
    protected String extraExpression;    
 
80
    
76
81
    // -------------------------------------------------------------------------
77
82
    // Getters & setters
78
83
    // -------------------------------------------------------------------------
137
142
        this.expression = expression;
138
143
    }
139
144
 
 
145
    public String getExtraExpression()
 
146
    {
 
147
        return extraExpression;
 
148
    }
 
149
 
 
150
    public void setExtraExpression( String extraExpression )
 
151
    {
 
152
        this.extraExpression = extraExpression;
 
153
    }
 
154
 
140
155
}