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.wrapper;
023:
024: import java.sql.Date;
025: import java.sql.Time;
026:
027: public class ExecutionResultWrapper extends DataWrapper {
028: Date executionDate;
029: Time time;
030: String tester;
031: String executionStatus;
032: int numberOfFail;
033: int numberOfSuccess;
034: int numberOfUnknow;
035:
036: /**
037: * @return Returns the executionDate.
038: */
039: public Date getExecutionDate() {
040: return executionDate;
041: }
042:
043: /**
044: * @param executionDate The executionDate to set.
045: */
046: public void setExecutionDate(Date executionDate) {
047: this .executionDate = executionDate;
048: }
049:
050: /**
051: * @return Returns the executionStatus.
052: */
053: public String getExecutionStatus() {
054: return executionStatus;
055: }
056:
057: /**
058: * @param executionStatus The executionStatus to set.
059: */
060: public void setExecutionStatus(String executionStatus) {
061: this .executionStatus = executionStatus;
062: }
063:
064: /**
065: * @return Returns the numberOfFail.
066: */
067: public int getNumberOfFail() {
068: return numberOfFail;
069: }
070:
071: /**
072: * @param numberOfFail The numberOfFail to set.
073: */
074: public void setNumberOfFail(int numberOfFail) {
075: this .numberOfFail = numberOfFail;
076: }
077:
078: /**
079: * @return Returns the numberOfSuccess.
080: */
081: public int getNumberOfSuccess() {
082: return numberOfSuccess;
083: }
084:
085: /**
086: * @param numberOfSuccess The numberOfSuccess to set.
087: */
088: public void setNumberOfSuccess(int numberOfSuccess) {
089: this .numberOfSuccess = numberOfSuccess;
090: }
091:
092: /**
093: * @return Returns the numberOfUnknow.
094: */
095: public int getNumberOfUnknow() {
096: return numberOfUnknow;
097: }
098:
099: /**
100: * @param numberOfUnknow The numberOfUnknow to set.
101: */
102: public void setNumberOfUnknow(int numberOfUnknow) {
103: this .numberOfUnknow = numberOfUnknow;
104: }
105:
106: /**
107: * @return Returns the tester.
108: */
109: public String getTester() {
110: return tester;
111: }
112:
113: /**
114: * @param tester The tester to set.
115: */
116: public void setTester(String tester) {
117: this .tester = tester;
118: }
119:
120: /**
121: * @return Returns the time.
122: */
123: public Time getTime() {
124: return time;
125: }
126:
127: /**
128: * @param time The time to set.
129: */
130: public void setTime(Time time) {
131: this.time = time;
132: }
133: }
|