mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 00:30:45 +00:00
Multilanguage support
Czech language added
This commit is contained in:
@@ -0,0 +1,167 @@
|
||||
/*
|
||||
* Copyright (C) 2011-2013 Paolo Cancedda, JPEXS
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package com.jpexs.decompiler.flash.gui.abc;
|
||||
|
||||
import java.util.*;
|
||||
import javax.swing.tree.TreePath;
|
||||
|
||||
public class TreeElement {
|
||||
|
||||
private SortedMap<String, TreeElement> branches;
|
||||
private SortedMap<String, TreeElement> leafs;
|
||||
private String name;
|
||||
private String path;
|
||||
private Object item;
|
||||
private TreeElement parent;
|
||||
|
||||
public TreeElement(String name, String path, Object item, TreeElement parent) {
|
||||
this.name = name;
|
||||
this.path = path;
|
||||
this.item = item;
|
||||
this.parent = parent;
|
||||
branches = new TreeMap<>();
|
||||
leafs = new TreeMap<>();
|
||||
}
|
||||
|
||||
public TreeElement getParent() {
|
||||
return parent;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public String getPath() {
|
||||
return path;
|
||||
}
|
||||
|
||||
public TreePath getTreePath() {
|
||||
List<TreeElement> pathList = new ArrayList<>();
|
||||
TreeElement temp = this;
|
||||
do {
|
||||
pathList.add(0, temp);
|
||||
} while ((temp = temp.getParent()) != null);
|
||||
return new TreePath(pathList.toArray());
|
||||
}
|
||||
|
||||
public Object getItem() {
|
||||
return item;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return name;
|
||||
}
|
||||
|
||||
TreeElement getBranch(String pathElement) {
|
||||
TreeElement branch = branches.get(pathElement);
|
||||
if (branch == null) {
|
||||
branch = new TreeElement(pathElement, path + "." + pathElement, null, this);
|
||||
branches.put(pathElement, branch);
|
||||
}
|
||||
return branch;
|
||||
}
|
||||
|
||||
void addLeaf(String pathElement, Object item) {
|
||||
TreeElement child = new TreeElement(pathElement, path + "." + pathElement, item, this);
|
||||
leafs.put(pathElement, child);
|
||||
}
|
||||
|
||||
public TreeElement getChild(int index) {
|
||||
Iterator<TreeElement> iter;
|
||||
int startingIndex;
|
||||
if (index < branches.size()) {
|
||||
iter = branches.values().iterator();
|
||||
startingIndex = 0;
|
||||
} else {
|
||||
iter = leafs.values().iterator();
|
||||
startingIndex = branches.size();
|
||||
}
|
||||
int ii = startingIndex;
|
||||
TreeElement child = null;
|
||||
while (ii <= index && iter.hasNext()) {
|
||||
child = iter.next();
|
||||
ii++;
|
||||
}
|
||||
return child;
|
||||
}
|
||||
|
||||
public int getChildCount() {
|
||||
return branches.size() + leafs.size();
|
||||
}
|
||||
|
||||
public boolean isLeaf() {
|
||||
return getChildCount() == 0;
|
||||
}
|
||||
|
||||
public int getIndexOfChild(TreeElement child) {
|
||||
if (getChildCount() < 1) {
|
||||
return -1;
|
||||
}
|
||||
Iterator<TreeElement> iter = branches.values().iterator();
|
||||
int ii = 0;
|
||||
TreeElement aChild = null;
|
||||
while (aChild != child && iter.hasNext()) {
|
||||
aChild = iter.next();
|
||||
if (aChild == child) {
|
||||
return ii;
|
||||
}
|
||||
ii++;
|
||||
}
|
||||
iter = leafs.values().iterator();
|
||||
while (aChild != child && iter.hasNext()) {
|
||||
aChild = iter.next();
|
||||
if (aChild == child) {
|
||||
return ii;
|
||||
}
|
||||
ii++;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
void visitBranches(TreeVisitor visitor) {
|
||||
Iterator<TreeElement> iter = branches.values().iterator();
|
||||
while (iter.hasNext()) {
|
||||
TreeElement branch = iter.next();
|
||||
visitor.onBranch(branch);
|
||||
branch.visitLeafs(visitor);
|
||||
branch.visitBranches(visitor);
|
||||
}
|
||||
}
|
||||
|
||||
void visitLeafs(TreeVisitor visitor) {
|
||||
Iterator<TreeElement> iter = leafs.values().iterator();
|
||||
while (iter.hasNext()) {
|
||||
TreeElement leaf = iter.next();
|
||||
visitor.onLeaf(leaf);
|
||||
}
|
||||
}
|
||||
|
||||
TreeElement getByPath(String fullPath) {
|
||||
TreeElement te = this;
|
||||
StringTokenizer st = new StringTokenizer(fullPath, ".");
|
||||
while (st.hasMoreTokens()) {
|
||||
String pathElement = st.nextToken();
|
||||
TreeElement nte = te.branches.get(pathElement);
|
||||
if (nte == null) {
|
||||
nte = te.leafs.get(pathElement);
|
||||
}
|
||||
te = nte;
|
||||
}
|
||||
return te;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user