01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.debug.jdi.tests.program;
11:
12: /**
13: * Interface type for target VM tests.
14: * This interface is intended to be loaded by the target VM.
15: *
16: * WARNING, WARNING:
17: * Tests in org.eclipse.debug.jdi.tests assume the content of this interface.
18: * So if this interface or one of the types in this
19: * package is changed, the corresponding tests must also be changed.
20: */
21:
22: import java.io.OutputStream;
23:
24: /**
25: *
26: */
27: public interface Printable extends Cloneable {
28: /**
29: * the number 1
30: */
31: int CONSTANT = 1;
32:
33: /**
34: * Prints to the specified output stream
35: * @param out
36: */
37: public void print(OutputStream out);
38: }
|