lib resource texts moved to lib project

This commit is contained in:
2014-08-25 10:29:45 +02:00
parent 453fd420d4
commit dec9261261
69 changed files with 2007 additions and 1743 deletions
@@ -12,10 +12,10 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.␍ */
* License along with this library.
*/
package com.jpexs.decompiler.flash.treeitems;
import com.jpexs.decompiler.flash.AppStrings;
import com.jpexs.decompiler.flash.SWF;
/**
@@ -25,9 +25,11 @@ import com.jpexs.decompiler.flash.SWF;
public class HeaderItem implements TreeItem {
private final SWF swf;
private final String name;
public HeaderItem(SWF swf) {
public HeaderItem(SWF swf, String name) {
this.swf = swf;
this.name = name;
}
@Override
@@ -37,7 +39,7 @@ public class HeaderItem implements TreeItem {
@Override
public String toString() {
return AppStrings.translate("node.header");
return name;
}
}