libbluray | branch: master | hpi1 <[email protected]> | Mon Sep 17 14:56:34 2012 +0300| [5d7a65ae891ed2d463fb4e46e86d61dc0cd0c42f] | committer: hpi1
Cosmetics > http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=5d7a65ae891ed2d463fb4e46e86d61dc0cd0c42f --- .../java/org/bluray/storage/StorageManager.java | 13 +++------- .../bdj/java/org/videolan/BDJThreadGroup.java | 27 ++++++++++++++++---- 2 files changed, 26 insertions(+), 14 deletions(-) diff --git a/src/libbluray/bdj/java/org/bluray/storage/StorageManager.java b/src/libbluray/bdj/java/org/bluray/storage/StorageManager.java index 0e4ca32..aa043fc 100644 --- a/src/libbluray/bdj/java/org/bluray/storage/StorageManager.java +++ b/src/libbluray/bdj/java/org/bluray/storage/StorageManager.java @@ -20,23 +20,18 @@ package org.bluray.storage; public class StorageManager { - public static StorageManager getInstance() - { + public static StorageManager getInstance() { throw new Error("Not implemented"); } - protected StorageManager() - { - + protected StorageManager() { } - public DataAreaInfo getBindingunitDataAreaInfo() - { + public DataAreaInfo getBindingunitDataAreaInfo() { throw new Error("Not implemented"); } - public DataAreaInfo getPersistentDataAreaInfo() - { + public DataAreaInfo getPersistentDataAreaInfo() { throw new Error("Not implemented"); } } diff --git a/src/libbluray/bdj/java/org/videolan/BDJThreadGroup.java b/src/libbluray/bdj/java/org/videolan/BDJThreadGroup.java index a5c13df..23ba3d3 100644 --- a/src/libbluray/bdj/java/org/videolan/BDJThreadGroup.java +++ b/src/libbluray/bdj/java/org/videolan/BDJThreadGroup.java @@ -1,19 +1,36 @@ +/* + * This file is part of libbluray + * Copyright (C) 2010 William Hahne + * + * 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 org.videolan; import javax.tv.xlet.XletContext; public class BDJThreadGroup extends ThreadGroup { - public BDJThreadGroup(String name, XletContext context) - { + public BDJThreadGroup(String name, XletContext context) { super(name); this.context = context; } - public XletContext getContext() - { + public XletContext getContext() { return context; } - + private XletContext context; } _______________________________________________ libbluray-devel mailing list [email protected] http://mailman.videolan.org/listinfo/libbluray-devel
