blob: 762eb4017ba05f4241218f97d8d2103a4b6bf128 [file] [log] [blame]
/* ------------------------------------------------------------------------------
- Copyright (c) 2015 Intecs.
- All rights reserved. This program and the accompanying materials
- are made available under the terms of the Eclipse Public License v1.0
- which accompanies this distribution, and is available at
- http://www.eclipse.org/legal/epl-v10.html
-
- Contributors:
- L. Baracchi, laura.baracchi@intecs.it
------------------------------------------------------------------------------*/
package org.polarsys.chess.core.util;
/**
* Used to save and display the results data from End to End Response Time Analysis .
*/
public class EndToEndResultData {
/** The scenario name. */
public String scenarioName ="";
/** The deadline. */
public String deadline ="";
/** The resp time. */
public String respTime ="";
}