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