|
1 | 1 | package nl.digitalekabeltelevisie.data.mpeg.psi; |
2 | 2 |
|
3 | | -/** |
4 | | -* |
5 | | -* http://www.digitalekabeltelevisie.nl/dvb_inspector |
6 | | -* |
7 | | -* This code is Copyright 2009-2025 by Eric Berendsen ([email protected]) |
8 | | -* |
9 | | -* This file is part of DVB Inspector. |
10 | | -* |
11 | | -* DVB Inspector is free software: you can redistribute it and/or modify |
12 | | -* it under the terms of the GNU General Public License as published by |
13 | | -* the Free Software Foundation, either version 3 of the License, or |
14 | | -* (at your option) any later version. |
15 | | -* |
16 | | -* DVB Inspector is distributed in the hope that it will be useful, |
17 | | -* but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 | | -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
19 | | -* GNU General Public License for more details. |
20 | | -* |
21 | | -* You should have received a copy of the GNU General Public License |
22 | | -* along with DVB Inspector. If not, see <http://www.gnu.org/licenses/>. |
23 | | -* |
24 | | -* The author requests that he be notified of any application, applet, or |
25 | | -* other binary that makes use of this code, but that's more out of curiosity |
26 | | -* than anything and is not required. |
27 | | -* |
28 | | -*/ |
29 | | - |
30 | | -import javax.swing.tree.DefaultMutableTreeNode; |
| 3 | +import static nl.digitalekabeltelevisie.util.Utils.*; |
| 4 | + |
| 5 | +import java.util.ArrayList; |
| 6 | +import java.util.List; |
31 | 7 |
|
32 | 8 | import nl.digitalekabeltelevisie.controller.KVP; |
33 | 9 | import nl.digitalekabeltelevisie.controller.TreeNode; |
|
36 | 12 | import nl.digitalekabeltelevisie.util.LookUpList; |
37 | 13 | import nl.digitalekabeltelevisie.util.Utils; |
38 | 14 |
|
39 | | -import static nl.digitalekabeltelevisie.util.Utils.*; |
40 | | - |
41 | | -import java.util.ArrayList; |
42 | | -import java.util.List; |
43 | | - |
44 | 15 | // based on EN 303 560 V1.1.1 (2018-05) 5.3.2.3.1 DFIT structure |
45 | 16 |
|
46 | 17 | public class DFITSection extends TableSectionExtendedSyntax { |
@@ -101,7 +72,7 @@ public FontInfo(int font_info_type) { |
101 | 72 |
|
102 | 73 |
|
103 | 74 | @Override |
104 | | - public DefaultMutableTreeNode getJTreeNode(int modus) { |
| 75 | + public KVP getJTreeNode(int modus) { |
105 | 76 |
|
106 | 77 | KVP t = new KVP("Font Info"); |
107 | 78 | t.add(new KVP("font_info_type",font_info_type,fontInfoTypeList.get(font_info_type))); |
|
0 commit comments