提交 b7ee72f5 编写于 作者: D darcy

6963723: Project Coin: Retrofit more JDK classes for ARM

Reviewed-by: alanb, malenkov, prr, amenkov
上级 3f257dab
...@@ -60,7 +60,7 @@ import org.xml.sax.helpers.DefaultHandler; ...@@ -60,7 +60,7 @@ import org.xml.sax.helpers.DefaultHandler;
* *
* @author Philip Milne * @author Philip Milne
*/ */
public class XMLDecoder { public class XMLDecoder implements AutoCloseable {
private final DocumentHandler handler = new DocumentHandler(); private final DocumentHandler handler = new DocumentHandler();
private final InputSource input; private final InputSource input;
private Object owner; private Object owner;
......
...@@ -204,7 +204,7 @@ import java.nio.charset.UnsupportedCharsetException; ...@@ -204,7 +204,7 @@ import java.nio.charset.UnsupportedCharsetException;
* *
* @author Philip Milne * @author Philip Milne
*/ */
public class XMLEncoder extends Encoder { public class XMLEncoder extends Encoder implements AutoCloseable {
private final CharsetEncoder encoder; private final CharsetEncoder encoder;
private final String charset; private final String charset;
......
...@@ -36,7 +36,7 @@ package java.io; ...@@ -36,7 +36,7 @@ package java.io;
* @see java.io.ObjectInputStream * @see java.io.ObjectInputStream
* @since JDK1.1 * @since JDK1.1
*/ */
public interface ObjectInput extends DataInput { public interface ObjectInput extends DataInput, AutoCloseable {
/** /**
* Read and return an object. The class that implements this interface * Read and return an object. The class that implements this interface
* defines where the object is "read" from. * defines where the object is "read" from.
......
...@@ -36,7 +36,7 @@ package java.io; ...@@ -36,7 +36,7 @@ package java.io;
* @see java.io.ObjectInputStream * @see java.io.ObjectInputStream
* @since JDK1.1 * @since JDK1.1
*/ */
public interface ObjectOutput extends DataOutput { public interface ObjectOutput extends DataOutput, AutoCloseable {
/** /**
* Write an object to the underlying storage or stream. The * Write an object to the underlying storage or stream. The
* class that implements this interface defines how the object is * class that implements this interface defines how the object is
......
...@@ -343,7 +343,7 @@ import sun.misc.LRUCache; ...@@ -343,7 +343,7 @@ import sun.misc.LRUCache;
* *
* @since 1.5 * @since 1.5
*/ */
public final class Scanner implements Iterator<String> { public final class Scanner implements Iterator<String>, Closeable {
// Internal buffer used to hold input // Internal buffer used to hold input
private CharBuffer buf; private CharBuffer buf;
......
...@@ -107,7 +107,7 @@ import java.util.List; ...@@ -107,7 +107,7 @@ import java.util.List;
* @author Florian Bomers * @author Florian Bomers
*/ */
public interface MidiDevice { public interface MidiDevice extends AutoCloseable {
/** /**
......
...@@ -38,7 +38,7 @@ package javax.sound.midi; ...@@ -38,7 +38,7 @@ package javax.sound.midi;
* *
* @author Kara Kytle * @author Kara Kytle
*/ */
public interface Receiver { public interface Receiver extends AutoCloseable {
//$$fb 2002-04-12: fix for 4662090: Contradiction in Receiver specification //$$fb 2002-04-12: fix for 4662090: Contradiction in Receiver specification
......
...@@ -35,7 +35,7 @@ package javax.sound.midi; ...@@ -35,7 +35,7 @@ package javax.sound.midi;
* *
* @author Kara Kytle * @author Kara Kytle
*/ */
public interface Transmitter { public interface Transmitter extends AutoCloseable {
/** /**
......
...@@ -70,7 +70,7 @@ package javax.sound.sampled; ...@@ -70,7 +70,7 @@ package javax.sound.sampled;
* @see LineEvent * @see LineEvent
* @since 1.3 * @since 1.3
*/ */
public interface Line { public interface Line extends AutoCloseable {
/** /**
* Obtains the <code>Line.Info</code> object describing this * Obtains the <code>Line.Info</code> object describing this
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册