Subversion Repositories bacoAlunos

Rev

Rev 465 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
464 jmachado 1
package pt.estgp.estgweb.services.common;
2
 
3
/**
4
 * @author Jorge Machado
5
 * @date 18/Nov/2009
6
 * @time 11:21:02
7
 * @email machadofisher@gmail.com
8
 */
9
public class DefaultFacetLabel implements IFacetLabel
10
{
11
    1.5.0/docs/api/java/lang/String.html">String label;
12
    int ocurrences;
13
 
14
 
15
    public 1.5.0/docs/api/java/lang/String.html">String getLabel() {
16
        return label;
17
    }
18
 
19
    public void setLabel(1.5.0/docs/api/java/lang/String.html">String label) {
20
        this.label = label;
21
    }
22
 
465 jmachado 23
    public int getOccurrences() {
464 jmachado 24
        return ocurrences;
25
    }
26
 
465 jmachado 27
    public void setOccurrences(int ocurrences) {
464 jmachado 28
        this.ocurrences = ocurrences;
29
    }
30
}