diff --git a/trunk/src/com/jpexs/decompiler/flash/gui/abc/ABCPanel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/ABCPanel.java index d1088f84f..5d20583f5 100644 --- a/trunk/src/com/jpexs/decompiler/flash/gui/abc/ABCPanel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/ABCPanel.java @@ -16,11 +16,18 @@ */ package com.jpexs.decompiler.flash.gui.abc; +import com.jpexs.decompiler.flash.gui.abc.tablemodels.UIntTableModel; +import com.jpexs.decompiler.flash.gui.abc.tablemodels.DoubleTableModel; +import com.jpexs.decompiler.flash.gui.abc.tablemodels.NamespaceTableModel; +import com.jpexs.decompiler.flash.gui.abc.tablemodels.IntTableModel; +import com.jpexs.decompiler.flash.gui.abc.tablemodels.NamespaceSetTableModel; +import com.jpexs.decompiler.flash.gui.abc.tablemodels.MultinameTableModel; +import com.jpexs.decompiler.flash.gui.abc.tablemodels.DecimalTableModel; +import com.jpexs.decompiler.flash.gui.abc.tablemodels.StringTableModel; import com.jpexs.decompiler.flash.Configuration; import com.jpexs.decompiler.flash.abc.ABC; import com.jpexs.decompiler.flash.abc.ClassPath; import com.jpexs.decompiler.flash.abc.ScriptPack; -import com.jpexs.decompiler.flash.abc.gui.tablemodels.*; import com.jpexs.decompiler.flash.gui.Main; import com.jpexs.decompiler.flash.gui.TagTreeModel; import com.jpexs.decompiler.flash.gui.View; diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/DecimalTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/DecimalTableModel.java similarity index 95% rename from trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/DecimalTableModel.java rename to trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/DecimalTableModel.java index 447e2ee81..383bf02e2 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/DecimalTableModel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/DecimalTableModel.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package com.jpexs.decompiler.flash.abc.gui.tablemodels; +package com.jpexs.decompiler.flash.gui.abc.tablemodels; import com.jpexs.decompiler.flash.abc.ABC; import javax.swing.event.TableModelListener; diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/DoubleTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/DoubleTableModel.java similarity index 95% rename from trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/DoubleTableModel.java rename to trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/DoubleTableModel.java index fcf4126a8..84c52d0cf 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/DoubleTableModel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/DoubleTableModel.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package com.jpexs.decompiler.flash.abc.gui.tablemodels; +package com.jpexs.decompiler.flash.gui.abc.tablemodels; import com.jpexs.decompiler.flash.abc.ABC; import javax.swing.event.TableModelListener; diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/IntTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/IntTableModel.java similarity index 95% rename from trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/IntTableModel.java rename to trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/IntTableModel.java index de68772d0..5c9523493 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/IntTableModel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/IntTableModel.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package com.jpexs.decompiler.flash.abc.gui.tablemodels; +package com.jpexs.decompiler.flash.gui.abc.tablemodels; import com.jpexs.decompiler.flash.abc.ABC; import javax.swing.event.TableModelListener; diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/MultinameTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/MultinameTableModel.java similarity index 96% rename from trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/MultinameTableModel.java rename to trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/MultinameTableModel.java index 6d1accca4..2019cc68a 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/MultinameTableModel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/MultinameTableModel.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package com.jpexs.decompiler.flash.abc.gui.tablemodels; +package com.jpexs.decompiler.flash.gui.abc.tablemodels; import com.jpexs.decompiler.flash.abc.ABC; import java.util.ArrayList; diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/NamespaceSetTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceSetTableModel.java similarity index 95% rename from trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/NamespaceSetTableModel.java rename to trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceSetTableModel.java index 0993b1e73..3d0e64373 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/NamespaceSetTableModel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceSetTableModel.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package com.jpexs.decompiler.flash.abc.gui.tablemodels; +package com.jpexs.decompiler.flash.gui.abc.tablemodels; import com.jpexs.decompiler.flash.abc.ABC; import javax.swing.event.TableModelListener; diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/NamespaceTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceTableModel.java similarity index 95% rename from trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/NamespaceTableModel.java rename to trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceTableModel.java index 21820fb9b..20e0eae33 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/NamespaceTableModel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/NamespaceTableModel.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package com.jpexs.decompiler.flash.abc.gui.tablemodels; +package com.jpexs.decompiler.flash.gui.abc.tablemodels; import com.jpexs.decompiler.flash.abc.ABC; import javax.swing.event.TableModelListener; diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/StringTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/StringTableModel.java similarity index 95% rename from trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/StringTableModel.java rename to trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/StringTableModel.java index ac52715d9..e71289607 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/StringTableModel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/StringTableModel.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package com.jpexs.decompiler.flash.abc.gui.tablemodels; +package com.jpexs.decompiler.flash.gui.abc.tablemodels; import com.jpexs.decompiler.flash.abc.ABC; import javax.swing.event.TableModelListener; diff --git a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/UIntTableModel.java b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/UIntTableModel.java similarity index 95% rename from trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/UIntTableModel.java rename to trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/UIntTableModel.java index 298e4c36e..9f0438955 100644 --- a/trunk/src/com/jpexs/decompiler/flash/abc/gui/tablemodels/UIntTableModel.java +++ b/trunk/src/com/jpexs/decompiler/flash/gui/abc/tablemodels/UIntTableModel.java @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package com.jpexs.decompiler.flash.abc.gui.tablemodels; +package com.jpexs.decompiler.flash.gui.abc.tablemodels; import com.jpexs.decompiler.flash.abc.ABC; import javax.swing.event.TableModelListener;