libbluray | branch: master | hpi1 <[email protected]> | Mon Nov 17 14:35:14 2014 +0200| [b5e696e0c52ab9142a3983d12b36cc0926a1f61f] | committer: hpi1
Add missing file headers > http://git.videolan.org/gitweb.cgi/libbluray.git/?a=commit;h=b5e696e0c52ab9142a3983d12b36cc0926a1f61f --- .../bdj/java/org/videolan/bdjo/AppCache.java | 20 ++++++++++++++- .../bdj/java/org/videolan/bdjo/AppEntry.java | 19 ++++++++++++++ .../bdj/java/org/videolan/bdjo/AppProfile.java | 27 +++++++++++++++++--- src/libbluray/bdj/java/org/videolan/bdjo/Bdjo.java | 19 ++++++++++++++ .../java/org/videolan/bdjo/GraphicsResolution.java | 21 ++++++++++++++- .../bdj/java/org/videolan/bdjo/PlayListTable.java | 25 +++++++++++++++--- .../bdj/java/org/videolan/bdjo/TerminalInfo.java | 19 ++++++++++++++ 7 files changed, 141 insertions(+), 9 deletions(-) diff --git a/src/libbluray/bdj/java/org/videolan/bdjo/AppCache.java b/src/libbluray/bdj/java/org/videolan/bdjo/AppCache.java index a1a4dfb..76bfaaa 100644 --- a/src/libbluray/bdj/java/org/videolan/bdjo/AppCache.java +++ b/src/libbluray/bdj/java/org/videolan/bdjo/AppCache.java @@ -1,5 +1,23 @@ -package org.videolan.bdjo; +/* + * This file is part of libbluray + * Copyright (C) 2010 VideoLAN + * + * 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.bdjo; public class AppCache { public AppCache(int type, String refToName, String language) diff --git a/src/libbluray/bdj/java/org/videolan/bdjo/AppEntry.java b/src/libbluray/bdj/java/org/videolan/bdjo/AppEntry.java index 1f7fc2d..996eef5 100644 --- a/src/libbluray/bdj/java/org/videolan/bdjo/AppEntry.java +++ b/src/libbluray/bdj/java/org/videolan/bdjo/AppEntry.java @@ -1,3 +1,22 @@ +/* + * This file is part of libbluray + * Copyright (C) 2010 VideoLAN + * + * 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.bdjo; import java.util.BitSet; diff --git a/src/libbluray/bdj/java/org/videolan/bdjo/AppProfile.java b/src/libbluray/bdj/java/org/videolan/bdjo/AppProfile.java index 2d9c3fa..d6009dc 100644 --- a/src/libbluray/bdj/java/org/videolan/bdjo/AppProfile.java +++ b/src/libbluray/bdj/java/org/videolan/bdjo/AppProfile.java @@ -1,3 +1,22 @@ +/* + * This file is part of libbluray + * Copyright (C) 2010 VideoLAN + * + * 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.bdjo; public class AppProfile { @@ -8,22 +27,22 @@ public class AppProfile { this.minor = minor; this.micro = micro; } - + public short getProfile() { return profile; } - + public byte getMajor() { return major; } - + public byte getMinor() { return minor; } - + public byte getMicro() { return micro; diff --git a/src/libbluray/bdj/java/org/videolan/bdjo/Bdjo.java b/src/libbluray/bdj/java/org/videolan/bdjo/Bdjo.java index 6af6b7f..bbd6fc1 100644 --- a/src/libbluray/bdj/java/org/videolan/bdjo/Bdjo.java +++ b/src/libbluray/bdj/java/org/videolan/bdjo/Bdjo.java @@ -1,3 +1,22 @@ +/* + * This file is part of libbluray + * Copyright (C) 2010 VideoLAN + * + * 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.bdjo; import org.videolan.Arrays; diff --git a/src/libbluray/bdj/java/org/videolan/bdjo/GraphicsResolution.java b/src/libbluray/bdj/java/org/videolan/bdjo/GraphicsResolution.java index 81f12cf..cbd4a72 100644 --- a/src/libbluray/bdj/java/org/videolan/bdjo/GraphicsResolution.java +++ b/src/libbluray/bdj/java/org/videolan/bdjo/GraphicsResolution.java @@ -1,3 +1,22 @@ +/* + * This file is part of libbluray + * Copyright (C) 2010 VideoLAN + * + * 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.bdjo; public class GraphicsResolution { @@ -9,7 +28,7 @@ public class GraphicsResolution { public static final GraphicsResolution QHD_960_540 = new GraphicsResolution(6, 960, 540); GraphicsResolution(int id, int width, int height) -{ + { this.id = id; this.width = width; this.height = height; diff --git a/src/libbluray/bdj/java/org/videolan/bdjo/PlayListTable.java b/src/libbluray/bdj/java/org/videolan/bdjo/PlayListTable.java index c50146c..b527cd2 100644 --- a/src/libbluray/bdj/java/org/videolan/bdjo/PlayListTable.java +++ b/src/libbluray/bdj/java/org/videolan/bdjo/PlayListTable.java @@ -1,3 +1,22 @@ +/* + * This file is part of libbluray + * Copyright (C) 2010 VideoLAN + * + * 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.bdjo; import org.videolan.Arrays; @@ -9,17 +28,17 @@ public class PlayListTable { this.autostartFirst = autostartFirst; this.playLists = playLists; } - + public boolean isAccessToAll() { return accessToAll; } - + public boolean isAutostartFirst() { return autostartFirst; } - + public String[] getPlayLists() { return playLists; diff --git a/src/libbluray/bdj/java/org/videolan/bdjo/TerminalInfo.java b/src/libbluray/bdj/java/org/videolan/bdjo/TerminalInfo.java index 2c9982c..777c5cb 100644 --- a/src/libbluray/bdj/java/org/videolan/bdjo/TerminalInfo.java +++ b/src/libbluray/bdj/java/org/videolan/bdjo/TerminalInfo.java @@ -1,3 +1,22 @@ +/* + * This file is part of libbluray + * Copyright (C) 2010 VideoLAN + * + * 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.bdjo; public class TerminalInfo { _______________________________________________ libbluray-devel mailing list [email protected] https://mailman.videolan.org/listinfo/libbluray-devel
