blob: df8c6c5140780da8bd8f72a1dc9355e848f1d387 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 Wind River Systems, Inc. and others.
* 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
*******************************************************************************/
package com.google.eclipse.elt.emulator.control;
import com.google.eclipse.elt.emulator.provisional.api.TerminalState;
/**
* Provided by a view implementation.
*/
public interface ITerminalListener {
/**
* Called when the state of the connection has changed.
* @param state the state of the connection.
*/
void setState(TerminalState state);
/**
* Set the title of the terminal.
* @param title the new title.
*/
void setTerminalTitle(String title);
}