001: /*
002: * Copyright (C) 2005 - 2008 JasperSoft Corporation. All rights reserved.
003: * http://www.jaspersoft.com.
004: *
005: * Unless you have purchased a commercial license agreement from JasperSoft,
006: * the following license terms apply:
007: *
008: * This program is free software; you can redistribute it and/or modify
009: * it under the terms of the GNU General Public License version 2 as published by
010: * the Free Software Foundation.
011: *
012: * This program is distributed WITHOUT ANY WARRANTY; and without the
013: * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
014: * See the GNU General Public License for more details.
015: *
016: * You should have received a copy of the GNU General Public License
017: * along with this program; if not, see http://www.gnu.org/licenses/gpl.txt
018: * or write to:
019: *
020: * Free Software Foundation, Inc.,
021: * 59 Temple Place - Suite 330,
022: * Boston, MA USA 02111-1307
023: *
024: *
025: *
026: *
027: * ProjectInfo.java
028: *
029: * Created on 4 giugno 2003, 1.43
030: *
031: */
032:
033: package it.businesslogic.ireport;
034:
035: /**
036: *
037: * @author Administrator
038: */
039: public class ProjectInfo {
040:
041: private String name = "";
042: private String sourcesDir = "";
043: private String outputDir = "";
044: private String connection = "";
045:
046: /** Creates a new instance of ProjectInfo */
047: public ProjectInfo() {
048: }
049:
050: /** Getter for property connection.
051: * @return Value of property connection.
052: *
053: */
054: public java.lang.String getConnection() {
055: return connection;
056: }
057:
058: /** Setter for property connection.
059: * @param connection New value of property connection.
060: *
061: */
062: public void setConnection(java.lang.String connection) {
063: this .connection = connection;
064: }
065:
066: /** Getter for property name.
067: * @return Value of property name.
068: *
069: */
070: public java.lang.String getName() {
071: return name;
072: }
073:
074: /** Setter for property name.
075: * @param name New value of property name.
076: *
077: */
078: public void setName(java.lang.String name) {
079: this .name = name;
080: }
081:
082: /** Getter for property outputDir.
083: * @return Value of property outputDir.
084: *
085: */
086: public java.lang.String getOutputDir() {
087: return outputDir;
088: }
089:
090: /** Setter for property outputDir.
091: * @param outputDir New value of property outputDir.
092: *
093: */
094: public void setOutputDir(java.lang.String outputDir) {
095: this .outputDir = outputDir;
096: }
097:
098: /** Getter for property sourcesDir.
099: * @return Value of property sourcesDir.
100: *
101: */
102: public java.lang.String getSourcesDir() {
103: return sourcesDir;
104: }
105:
106: /** Setter for property sourcesDir.
107: * @param sourcesDir New value of property sourcesDir.
108: *
109: */
110: public void setSourcesDir(java.lang.String sourcesDir) {
111: this .sourcesDir = sourcesDir;
112: }
113:
114: public String toString() {
115: return this.getName();
116: }
117:
118: }
|