blob: f9c9aecfd3c7098e3fa834c0e5d241e818c4b3ae [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package com.sun.jdi.connect.spi;
import java.io.IOException;
public abstract class Connection {
public abstract void close() throws IOException;
public abstract boolean isOpen();
public abstract byte[] readPacket() throws IOException;
public abstract void writePacket(byte[] arg1) throws IOException;
}