blob: 318205ea46961ecab8ad0d43314725e299956744 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.core.framework.prompt;
import java.net.UnknownHostException;
import java.rmi.RemoteException;
import org.eclipse.osee.connection.service.IServiceConnector;
import org.eclipse.osee.ote.core.TestScript;
/**
* @author Ken J. Aguilar
*/
public class ScriptSteppingPrompt extends AbstractInteractivePrompt<String> implements ISteppingPrompt {
public ScriptSteppingPrompt(IServiceConnector connector, TestScript script, String id, String message) throws UnknownHostException {
super(connector, script, id, message);
}
@Override
public void doPrompt() throws Exception {
getScript().getUserSession().initiateResumePrompt(createRemoteReference(IResumeResponse.class));
}
@Override
public void step() throws RemoteException {
// environment.singleStepEnv();
endPrompt("RESUME", null);
}
@Override
public void resume() throws RemoteException {
endPrompt("CONTINUE", null);
}
}