blob: 54b32cfac69b9fccf2b721a35dfa282cb4c841c7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.jdi.tests.program;
/**
* Interface type for target VM tests.
* This interface is intended to be loaded by the target VM.
*
* WARNING, WARNING:
* Tests in org.eclipse.debug.jdi.tests assume the content of this interface.
* So if this interface or one of the types in this
* package is changed, the corresponding tests must also be changed.
*/
import java.io.OutputStream;
/**
*
*/
public interface Printable extends Cloneable {
/**
* the number 1
*/
int CONSTANT = 1;
/**
* Prints to the specified output stream
* @param out
*/
public void print(OutputStream out);
}