KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jaspersoft > jasperserver > irplugin > ResourcesSet


1 /*
2  * ControlsSet.java
3  *
4  * All rights reserved.
5  * Copyright (C) 2005 JasperSoft Corporation
6  *
7  * JasperSoft Corporation
8  * 303 Second Street, Suite 450 North
9  * San Francisco, CA 94107
10  * http://www.jaspersoft.com
11  *
12  *
13  * Created on May 30, 2006, 2:37 PM
14  *
15  */

16
17 package com.jaspersoft.jasperserver.irplugin;
18
19 /**
20  *
21  * @author gtoffoli
22  */

23 public class ResourcesSet {
24     
25     private RepositoryReportUnit reportUnit;
26     
27     /** Creates a new instance of ControlsSet */
28     public ResourcesSet() {
29     }
30
31     public RepositoryReportUnit getReportUnit() {
32         return reportUnit;
33     }
34
35     public void setReportUnit(RepositoryReportUnit reportUnit) {
36         this.reportUnit = reportUnit;
37     }
38     
39     public String JavaDoc toString()
40     {
41         return "Resources";
42     }
43 }
44
Popular Tags