001: /*
002: * Created on 6 juin 2005
003: * SalomeTMF is a Test Managment Framework
004: * Copyright (C) 2005 France Telecom R&D
005: *
006: * This library is free software; you can redistribute it and/or
007: * modify it under the terms of the GNU Lesser General Public
008: * License as published by the Free Software Foundation; either
009: * version 2 of the License, or (at your option) any later version.
010: *
011: * This library is distributed in the hope that it will be useful,
012: * but WITHOUT ANY WARRANTY; without even the implied warranty of
013: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
014: * Lesser General Public License for more details.
015: *
016: * You should have received a copy of the GNU Lesser General Public
017: * License along with this library; if not, write to the Free Software
018: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
019: *
020: * Contact: mikael.marche@rd.francetelecom.com
021: */
022: package org.objectweb.salome_tmf.api.data;
023:
024: import java.sql.Date;
025:
026: /**
027: * @author marchemi
028: *
029: * TODO To change the template for this generated type comment go to
030: * Window - Preferences - Java - Code Style - Code Templates
031: */
032: public class TestWrapper extends DataWrapper {
033: String conceptor;
034: Date creationDate;
035: int idSuite;
036: String type;
037:
038: // TODO [RNA]
039: String testExtension;
040:
041: /**
042: * @return Returns the testExtension.
043: */
044: public String getTestExtension() {
045: return testExtension;
046: }
047:
048: /**
049: * @param testExtension The testExtension to set.
050: */
051: public void setTestExtension(String testExtension) {
052: this .testExtension = testExtension;
053: }
054:
055: /**
056: * @return Returns the conceptor.
057: */
058: public String getConceptor() {
059: return conceptor;
060: }
061:
062: /**
063: * @param conceptor The conceptor to set.
064: */
065: public void setConceptor(String conceptor) {
066: this .conceptor = conceptor;
067: }
068:
069: /**
070: * @return Returns the creationDate.
071: */
072: public Date getCreationDate() {
073: return creationDate;
074: }
075:
076: /**
077: * @param creationDate The creationDate to set.
078: */
079: public void setCreationDate(Date creationDate) {
080: this .creationDate = creationDate;
081: }
082:
083: /**
084: * @return Returns the idSuite.
085: */
086: public int getIdSuite() {
087: return idSuite;
088: }
089:
090: /**
091: * @param idSuite The idSuite to set.
092: */
093: public void setIdSuite(int idSuite) {
094: this .idSuite = idSuite;
095: }
096:
097: public String getType() {
098: return type;
099: }
100:
101: public void setType(String type) {
102: this.type = type;
103: }
104: }
|