blob: 4524048d2be6999cc562e6a2ae7e2d0a61f255bc [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2020
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
******************************************************************************/
/* ------------------------------------------------------------------------------
- Copyright (c) 2015 Intecs.
- All rights reserved. This program and the accompanying materials
- are made available under the terms of the Eclipse Public License v2.0
- which accompanies this distribution, and is available at
- http://www.eclipse.org/legal/epl-v20.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 ="";
}