1 /*******************************************************************************
2  * Copyright (c) 1997, 2008 by ProSyst Software GmbH
3  * http://www.prosyst.com
4  *
5  * This program and the accompanying materials
6  * are made available under the terms of the Eclipse Public License 2.0
7  * which accompanies this distribution, and is available at
8  * https://www.eclipse.org/legal/epl-2.0/
9  *
10  * SPDX-License-Identifier: EPL-2.0
11  *
12  * Contributors:
13  *    ProSyst Software GmbH - initial API and implementation
14  *******************************************************************************/
15 package javax.microedition.io;
16 
17 public abstract interface Connection {
18 
close()19 	public abstract void close() throws java.io.IOException;
20 
21 }
22