libbluray | branch: master | hpi1 <[email protected]> | Tue Jun 24 13:16:12 2014 +0300| [067b01bc57eb37218afa064a3a2521bd174761ac] | committer: hpi1
Fix J2ME build > http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=067b01bc57eb37218afa064a3a2521bd174761ac --- src/libbluray/bdj/java-j2me/java/io/Closeable.java | 23 ++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/libbluray/bdj/java-j2me/java/io/Closeable.java b/src/libbluray/bdj/java-j2me/java/io/Closeable.java new file mode 100644 index 0000000..25b9108 --- /dev/null +++ b/src/libbluray/bdj/java-j2me/java/io/Closeable.java @@ -0,0 +1,23 @@ +/* + * This file is part of libbluray + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see + * <http://www.gnu.org/licenses/>. + */ + +package java.io; + +public interface Closeable { + public abstract void close() throws IOException; +} _______________________________________________ libbluray-devel mailing list [email protected] https://mailman.videolan.org/listinfo/libbluray-devel
