diff --git a/trunk/src/com/jpexs/asdec/Main.java b/trunk/src/com/jpexs/asdec/Main.java
index 14bc0aa1f..fa23fc028 100644
--- a/trunk/src/com/jpexs/asdec/Main.java
+++ b/trunk/src/com/jpexs/asdec/Main.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec;
@@ -38,6 +37,8 @@ import java.awt.event.MouseEvent;
import java.io.*;
import java.util.ArrayList;
import java.util.List;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
/**
@@ -320,8 +321,19 @@ public class Main {
}
+ /**
+ * Script for updating license header in java files :-)
+ * @param dir Star directory (e.g. "src/")
+ */
public static void updateLicenseInDir(File dir){
- String license="/*\r\n * Copyright (C) 2010-2011 JPEXS\r\n * \r\n * This program is free software; you can redistribute it and/or\r\n * modify it under the terms of the GNU General Public License\r\n * as published by the Free Software Foundation; either version 2\r\n * of the License, or (at your option) any later version.\r\n * \r\n * This program is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r\n * GNU General Public License for more details.\r\n * \r\n * You should have received a copy of the GNU General Public License\r\n * along with this program; if not, write to the Free Software\r\n * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\r\n */\r\n";
+ int defaultStartYear=2010;
+ int defaultFinalYear=2011;
+ String defaultAuthor="JPEXS";
+ String defaultYearStr=""+defaultStartYear;
+ if(defaultFinalYear!=defaultStartYear){
+ defaultYearStr+="-"+defaultFinalYear;
+ }
+ String license="/*\r\n * Copyright (C) {year} {author}\r\n * \r\n * This program is free software: you can redistribute it and/or modify\r\n * it under the terms of the GNU General Public License as published by\r\n * the Free Software Foundation, either version 3 of the License, or\r\n * (at your option) any later version.\r\n * \r\n * This program is distributed in the hope that it will be useful,\r\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\r\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r\n * GNU General Public License for more details.\r\n * \r\n * You should have received a copy of the GNU General Public License\r\n * along with this program. If not, see .\r\n */\r\n";
File files[]=dir.listFiles();
for(File f:files){
@@ -340,11 +352,27 @@ public class Main {
BufferedReader br=new BufferedReader(new FileReader(f));
String s="";
boolean packageFound=false;
+ String author=defaultAuthor;
+ String yearStr=defaultYearStr;
while((s=br.readLine())!=null){
if(!packageFound){
if(s.trim().startsWith("package")){
- packageFound=true;
- pw.println(license);
+ packageFound=true;
+ pw.println(license.replace("{year}", yearStr).replace("{author}", author));
+ }else{
+ Matcher mAuthor=Pattern.compile("^.*Copyright \\(C\\) ([0-9]+)(-[0-9]+)? (.*)$").matcher(s);
+ if(mAuthor.matches()){
+ author=mAuthor.group(3).trim();
+ int startYear=Integer.parseInt(mAuthor.group(1).trim());
+ if(startYear==defaultFinalYear){
+ yearStr=""+startYear;
+ }else{
+ yearStr=""+startYear+"-"+defaultFinalYear;
+ }
+ if(!author.equals(defaultAuthor)){
+ System.out.println("Detected nodefault author:"+author+" in "+f.getAbsolutePath());
+ }
+ }
}
}
if(packageFound){
diff --git a/trunk/src/com/jpexs/asdec/SWF.java b/trunk/src/com/jpexs/asdec/SWF.java
index 1bcae1b8d..f37a199c3 100644
--- a/trunk/src/com/jpexs/asdec/SWF.java
+++ b/trunk/src/com/jpexs/asdec/SWF.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec;
diff --git a/trunk/src/com/jpexs/asdec/SWFInputStream.java b/trunk/src/com/jpexs/asdec/SWFInputStream.java
index 4f2d9e1f5..d5712bcf7 100644
--- a/trunk/src/com/jpexs/asdec/SWFInputStream.java
+++ b/trunk/src/com/jpexs/asdec/SWFInputStream.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec;
diff --git a/trunk/src/com/jpexs/asdec/SWFOutputStream.java b/trunk/src/com/jpexs/asdec/SWFOutputStream.java
index 7c67899dc..593f15378 100644
--- a/trunk/src/com/jpexs/asdec/SWFOutputStream.java
+++ b/trunk/src/com/jpexs/asdec/SWFOutputStream.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec;
diff --git a/trunk/src/com/jpexs/asdec/abc/ABC.java b/trunk/src/com/jpexs/asdec/abc/ABC.java
index 1d75529a9..5f8a8863f 100644
--- a/trunk/src/com/jpexs/asdec/abc/ABC.java
+++ b/trunk/src/com/jpexs/asdec/abc/ABC.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,9 +12,9 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
+
package com.jpexs.asdec.abc;
import com.jpexs.asdec.Main;
diff --git a/trunk/src/com/jpexs/asdec/abc/ABCInputStream.java b/trunk/src/com/jpexs/asdec/abc/ABCInputStream.java
index b3dfd899f..7ceb7c98a 100644
--- a/trunk/src/com/jpexs/asdec/abc/ABCInputStream.java
+++ b/trunk/src/com/jpexs/asdec/abc/ABCInputStream.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc;
diff --git a/trunk/src/com/jpexs/asdec/abc/ABCOutputStream.java b/trunk/src/com/jpexs/asdec/abc/ABCOutputStream.java
index 79813a9fc..0ca6d941a 100644
--- a/trunk/src/com/jpexs/asdec/abc/ABCOutputStream.java
+++ b/trunk/src/com/jpexs/asdec/abc/ABCOutputStream.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc;
diff --git a/trunk/src/com/jpexs/asdec/abc/CopyOutputStream.java b/trunk/src/com/jpexs/asdec/abc/CopyOutputStream.java
index cbc424f5f..66f0efa83 100644
--- a/trunk/src/com/jpexs/asdec/abc/CopyOutputStream.java
+++ b/trunk/src/com/jpexs/asdec/abc/CopyOutputStream.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc;
diff --git a/trunk/src/com/jpexs/asdec/abc/NotSameException.java b/trunk/src/com/jpexs/asdec/abc/NotSameException.java
index a4ca393ad..475b98dfd 100644
--- a/trunk/src/com/jpexs/asdec/abc/NotSameException.java
+++ b/trunk/src/com/jpexs/asdec/abc/NotSameException.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/AVM2Code.java b/trunk/src/com/jpexs/asdec/abc/avm2/AVM2Code.java
index 290270a02..dc42e6c37 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/AVM2Code.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/AVM2Code.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/CodeStats.java b/trunk/src/com/jpexs/asdec/abc/avm2/CodeStats.java
index 8555dbbb4..edc2516dd 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/CodeStats.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/CodeStats.java
@@ -1,59 +1,58 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.avm2;
-
-import com.jpexs.asdec.abc.ABC;
-
-/**
- *
- * @author JPEXS
- */
-public class CodeStats {
- public int maxstack=0;
- public int maxscope=0;
- public int maxlocal=0;
- public boolean has_set_dxns=false;
- public boolean has_activation=false;
- public InstructionStats instructionStats[];
-
- public String toString(ABC abc) {
- String ret="Stats: maxstack="+maxstack+", maxscope="+maxscope+", maxlocal="+maxlocal+"\r\n";
- int i=0;
- int ms=0;
- for(InstructionStats stats:instructionStats){
- int deltastack=stats.ins.definition.getStackDelta(stats.ins, abc);
- if(stats.stackpos>ms) ms=stats.stackpos;
- ret+=""+i+":"+stats.stackpos+(deltastack>=0?"+"+deltastack:deltastack)+","+stats.scopepos+" "+stats.ins.toString(abc.constants)+"\r\n";
- i++;
- }
- return ret;
- }
-
-
-
- public CodeStats(AVM2Code code) {
- instructionStats=new InstructionStats[code.code.size()];
- for(int i=0;i.
+ */
+
+package com.jpexs.asdec.abc.avm2;
+
+import com.jpexs.asdec.abc.ABC;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class CodeStats {
+ public int maxstack=0;
+ public int maxscope=0;
+ public int maxlocal=0;
+ public boolean has_set_dxns=false;
+ public boolean has_activation=false;
+ public InstructionStats instructionStats[];
+
+ public String toString(ABC abc) {
+ String ret="Stats: maxstack="+maxstack+", maxscope="+maxscope+", maxlocal="+maxlocal+"\r\n";
+ int i=0;
+ int ms=0;
+ for(InstructionStats stats:instructionStats){
+ int deltastack=stats.ins.definition.getStackDelta(stats.ins, abc);
+ if(stats.stackpos>ms) ms=stats.stackpos;
+ ret+=""+i+":"+stats.stackpos+(deltastack>=0?"+"+deltastack:deltastack)+","+stats.scopepos+" "+stats.ins.toString(abc.constants)+"\r\n";
+ i++;
+ }
+ return ret;
+ }
+
+
+
+ public CodeStats(AVM2Code code) {
+ instructionStats=new InstructionStats[code.code.size()];
+ for(int i=0;i.
*/
package com.jpexs.asdec.abc.avm2;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/ConvertException.java b/trunk/src/com/jpexs/asdec/abc/avm2/ConvertException.java
index e72fb436a..c43acb94d 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/ConvertException.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/ConvertException.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/InstructionStats.java b/trunk/src/com/jpexs/asdec/abc/avm2/InstructionStats.java
index 2ab5334ff..d8134337f 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/InstructionStats.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/InstructionStats.java
@@ -1,38 +1,37 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.avm2;
-
-import com.jpexs.asdec.abc.avm2.instructions.AVM2Instruction;
-
-/**
- *
- * @author JPEXS
- */
-public class InstructionStats {
- public boolean seen=false;
- public int stackpos=0;
- public int scopepos=0;
- public AVM2Instruction ins;
-
- public InstructionStats(AVM2Instruction ins) {
- this.ins = ins;
- }
-
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.avm2;
+
+import com.jpexs.asdec.abc.avm2.instructions.AVM2Instruction;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class InstructionStats {
+ public boolean seen=false;
+ public int stackpos=0;
+ public int scopepos=0;
+ public AVM2Instruction ins;
+
+ public InstructionStats(AVM2Instruction ins) {
+ this.ins = ins;
+ }
+
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/InvalidInstructionArguments.java b/trunk/src/com/jpexs/asdec/abc/avm2/InvalidInstructionArguments.java
index bd0b06384..7df6bb426 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/InvalidInstructionArguments.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/InvalidInstructionArguments.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/LocalDataArea.java b/trunk/src/com/jpexs/asdec/abc/avm2/LocalDataArea.java
index e9a1835ca..7846eaec0 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/LocalDataArea.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/LocalDataArea.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/UnknownInstructionCode.java b/trunk/src/com/jpexs/asdec/abc/avm2/UnknownInstructionCode.java
index fd50eff96..fd651d121 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/UnknownInstructionCode.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/UnknownInstructionCode.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/UnknownJumpException.java b/trunk/src/com/jpexs/asdec/abc/avm2/UnknownJumpException.java
index d7fc9f2b4..e04d22dee 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/UnknownJumpException.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/UnknownJumpException.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/flowgraph/Graph.java b/trunk/src/com/jpexs/asdec/abc/avm2/flowgraph/Graph.java
index 74364a83b..7cf6a5a6e 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/flowgraph/Graph.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/flowgraph/Graph.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.flowgraph;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/flowgraph/GraphPart.java b/trunk/src/com/jpexs/asdec/abc/avm2/flowgraph/GraphPart.java
index 45f06e3d6..bcbb0ee19 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/flowgraph/GraphPart.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/flowgraph/GraphPart.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.flowgraph;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/AVM2Instruction.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/AVM2Instruction.java
index 09130f5c8..b431f4193 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/AVM2Instruction.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/AVM2Instruction.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/IfTypeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/IfTypeIns.java
index cb6ae5cd6..2be1a2c5e 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/IfTypeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/IfTypeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/InstructionDefinition.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/InstructionDefinition.java
index f44da5d9f..1b7dbd296 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/InstructionDefinition.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/InstructionDefinition.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/SetTypeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/SetTypeIns.java
index b139e0008..abd9f8a1f 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/SetTypeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/SetTypeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/AddIIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/AddIIns.java
index 7b3bbf4c8..87d04c4a1 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/AddIIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/AddIIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/AddIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/AddIns.java
index 7a3dc1477..96fd4aeb2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/AddIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/AddIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DecrementIIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DecrementIIns.java
index 5fa0706a0..f9498f269 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DecrementIIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DecrementIIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DecrementIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DecrementIns.java
index a616a4134..e3640cfd5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DecrementIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DecrementIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DivideIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DivideIns.java
index ac4d3e34d..cd65b866e 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DivideIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/DivideIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/IncrementIIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/IncrementIIns.java
index 66feb8cac..ac2591be2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/IncrementIIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/IncrementIIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/IncrementIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/IncrementIns.java
index dd0939f14..409b43601 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/IncrementIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/IncrementIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/ModuloIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/ModuloIns.java
index 989cd3c3a..4e0134084 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/ModuloIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/ModuloIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/MultiplyIIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/MultiplyIIns.java
index 5d80d2606..ef7ec6a67 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/MultiplyIIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/MultiplyIIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/MultiplyIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/MultiplyIns.java
index 06c9ed25e..3fac8ef4f 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/MultiplyIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/MultiplyIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NegateIIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NegateIIns.java
index d7d32b364..2e026c4d9 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NegateIIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NegateIIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NegateIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NegateIns.java
index e64163b13..249528be6 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NegateIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NegateIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NotIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NotIns.java
index afc5d8f1f..fb2ced493 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NotIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/NotIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/SubtractIIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/SubtractIIns.java
index 73f79c22d..95d6c62d8 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/SubtractIIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/SubtractIIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/SubtractIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/SubtractIns.java
index 97dbd9ce9..287193c4a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/SubtractIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/arithmetic/SubtractIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.arithmetic;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitAndIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitAndIns.java
index ae3a7f3b2..f4a1cfcb5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitAndIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitAndIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.bitwise;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitNotIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitNotIns.java
index 49f7ebbec..94def55f2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitNotIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitNotIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.bitwise;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitOrIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitOrIns.java
index 5c0bbf33d..1849c132f 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitOrIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitOrIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.bitwise;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitXorIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitXorIns.java
index 24c671f0a..e3d16edb3 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitXorIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/BitXorIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.bitwise;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/LShiftIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/LShiftIns.java
index 060ee705b..98c2fe799 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/LShiftIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/LShiftIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.bitwise;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/RShiftIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/RShiftIns.java
index c51217c3f..ec3d2fe92 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/RShiftIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/RShiftIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.bitwise;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/URShiftIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/URShiftIns.java
index b00e88ba1..660815b40 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/URShiftIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/bitwise/URShiftIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.bitwise;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/EqualsIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/EqualsIns.java
index f4527daa3..33344b7fa 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/EqualsIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/EqualsIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.comparsion;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/GreaterEqualsIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/GreaterEqualsIns.java
index 8a3fd6feb..f87e69a36 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/GreaterEqualsIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/GreaterEqualsIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.comparsion;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/GreaterThanIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/GreaterThanIns.java
index 578fcd413..56d164116 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/GreaterThanIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/GreaterThanIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.comparsion;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/LessEqualsIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/LessEqualsIns.java
index 9b145d28d..ee45bbe77 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/LessEqualsIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/LessEqualsIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.comparsion;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/LessThanIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/LessThanIns.java
index 7aa870cbd..1e10d395d 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/LessThanIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/LessThanIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.comparsion;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/StrictEqualsIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/StrictEqualsIns.java
index ba4ae4cfe..0f642b3dd 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/StrictEqualsIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/comparsion/StrictEqualsIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.comparsion;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructIns.java
index 6da4faf3a..5a66dd90f 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.construction;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructPropIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructPropIns.java
index d90cb400b..e9b6e9b66 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructPropIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructPropIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.construction;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructSuperIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructSuperIns.java
index 1046c4be1..1e3aa500c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructSuperIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/ConstructSuperIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.construction;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewActivationIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewActivationIns.java
index 0d1eb8142..e73a71836 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewActivationIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewActivationIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.construction;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewArrayIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewArrayIns.java
index c5dad2d3f..84d0d2e53 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewArrayIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewArrayIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.construction;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewCatchIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewCatchIns.java
index 6a90cd53b..4cc3baf78 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewCatchIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewCatchIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.construction;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewClassIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewClassIns.java
index d19503707..3f752d9e2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewClassIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewClassIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.construction;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewFunctionIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewFunctionIns.java
index 41ca084ca..99a518e9a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewFunctionIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewFunctionIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.construction;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewObjectIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewObjectIns.java
index c1168a72b..1ced08953 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewObjectIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/construction/NewObjectIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.construction;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugFileIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugFileIns.java
index 0ff15e273..cbdf77f92 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugFileIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugFileIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.debug;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugIns.java
index 0d9e06a2d..a4e2a63c9 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.debug;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugLineIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugLineIns.java
index 98112506d..ebe4a33b2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugLineIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/debug/DebugLineIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.debug;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallIns.java
index a8ee756cd..32e3aafb2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.executing;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallMethodIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallMethodIns.java
index 3c0a0038f..a53aefa70 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallMethodIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallMethodIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.executing;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropLexIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropLexIns.java
index 9154849fd..fe9ee6a3a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropLexIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropLexIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.executing;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropVoidIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropVoidIns.java
index 36cfa579b..5837f4e6c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropVoidIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropVoidIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.executing;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropertyIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropertyIns.java
index cd9bf8133..8663a284c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropertyIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallPropertyIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.executing;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallStaticIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallStaticIns.java
index 28fc7d1b0..9c2924091 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallStaticIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallStaticIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.executing;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallSuperIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallSuperIns.java
index 1509a9181..f6f35ea7f 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallSuperIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallSuperIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.executing;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallSuperVoidIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallSuperVoidIns.java
index 3a143e838..efe5c09f3 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallSuperVoidIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/executing/CallSuperVoidIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.executing;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfEqIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfEqIns.java
index 70f9799ad..c87b68ca1 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfEqIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfEqIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfFalseIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfFalseIns.java
index 1ec88fa18..c7e6e430c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfFalseIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfFalseIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfGeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfGeIns.java
index 1eae0ec03..9893c33a2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfGeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfGeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfGtIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfGtIns.java
index 04f271e13..dc9d85a4c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfGtIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfGtIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfLeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfLeIns.java
index 5a97b086c..4cafe07e6 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfLeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfLeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfLtIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfLtIns.java
index de5d9c291..44bb18e4c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfLtIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfLtIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNGeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNGeIns.java
index 2790d342b..9d29d4cc1 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNGeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNGeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNGtIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNGtIns.java
index 943900633..c9ffe653f 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNGtIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNGtIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNLeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNLeIns.java
index 677ce7ef9..f43d6c739 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNLeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNLeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNLtIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNLtIns.java
index cbe289bfe..29e90d6ed 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNLtIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNLtIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNeIns.java
index bd99075d2..d30815a09 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfNeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfStrictEqIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfStrictEqIns.java
index b6df2272e..525b5f3a7 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfStrictEqIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfStrictEqIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfStrictNeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfStrictNeIns.java
index 92cff7b0f..cb3069602 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfStrictNeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfStrictNeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfTrueIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfTrueIns.java
index 145f11b32..7c595d2bb 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfTrueIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/IfTrueIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/JumpIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/JumpIns.java
index 93d75886e..7a172d108 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/JumpIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/JumpIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/LookupSwitchIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/LookupSwitchIns.java
index e3b02aeb0..53e379704 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/LookupSwitchIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/jumps/LookupSwitchIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.jumps;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/DecLocalIIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/DecLocalIIns.java
index bda5605c2..ff5464caa 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/DecLocalIIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/DecLocalIIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/DecLocalIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/DecLocalIns.java
index 7aa42fe81..6d88881ab 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/DecLocalIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/DecLocalIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal0Ins.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal0Ins.java
index 8f85013a0..48eae29f2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal0Ins.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal0Ins.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal1Ins.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal1Ins.java
index ea142d0f7..e990e9c7f 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal1Ins.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal1Ins.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal2Ins.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal2Ins.java
index 7aa87dd88..89f539487 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal2Ins.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal2Ins.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal3Ins.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal3Ins.java
index d1312d0f1..a5c88d963 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal3Ins.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocal3Ins.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocalIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocalIns.java
index c23abdf6d..cfe36a4d5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocalIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocalIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocalTypeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocalTypeIns.java
index 769a87983..bc2171501 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocalTypeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/GetLocalTypeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/IncLocalIIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/IncLocalIIns.java
index 0ec50d2a1..ffa05b660 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/IncLocalIIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/IncLocalIIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/IncLocalIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/IncLocalIns.java
index 82bd39404..711ce1ab1 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/IncLocalIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/IncLocalIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/KillIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/KillIns.java
index 4167c089c..125cee5a5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/KillIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/KillIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal0Ins.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal0Ins.java
index 992bcde5a..4f2d3b57c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal0Ins.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal0Ins.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal1Ins.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal1Ins.java
index b6fe67892..4684748b5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal1Ins.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal1Ins.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal2Ins.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal2Ins.java
index fd2f0a373..6c111e922 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal2Ins.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal2Ins.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal3Ins.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal3Ins.java
index d6016bed2..0e7a8e294 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal3Ins.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocal3Ins.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocalIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocalIns.java
index 50e8e7646..3f6a78512 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocalIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocalIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocalTypeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocalTypeIns.java
index 380fa9d77..cd949cc54 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocalTypeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/localregs/SetLocalTypeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.localregs;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/DeletePropertyIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/DeletePropertyIns.java
index 461d17d5e..eb8d5b037 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/DeletePropertyIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/DeletePropertyIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/FindPropertyIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/FindPropertyIns.java
index a55c878bf..01964e26d 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/FindPropertyIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/FindPropertyIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/FindPropertyStrictIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/FindPropertyStrictIns.java
index 5f2510da5..22615c00c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/FindPropertyStrictIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/FindPropertyStrictIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetDescendantsIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetDescendantsIns.java
index 6cca69cc4..ef7884156 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetDescendantsIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetDescendantsIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetGlobalScopeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetGlobalScopeIns.java
index 6bfb341ac..2373233bc 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetGlobalScopeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetGlobalScopeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetGlobalSlotIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetGlobalSlotIns.java
index 97007f1ea..97ef10839 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetGlobalSlotIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetGlobalSlotIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetLexIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetLexIns.java
index d333afbc9..c73736c50 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetLexIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetLexIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetPropertyIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetPropertyIns.java
index add24e27d..b40bde5d1 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetPropertyIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetPropertyIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetScopeObjectIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetScopeObjectIns.java
index 4ae3645eb..0570a73d5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetScopeObjectIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetScopeObjectIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetSlotIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetSlotIns.java
index 5ec6703a2..bc46dba5c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetSlotIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetSlotIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetSuperIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetSuperIns.java
index 2d4770f1c..2da57540b 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetSuperIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/GetSuperIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/HasNext2Ins.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/HasNext2Ins.java
index a83323fd2..e1764aa15 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/HasNext2Ins.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/HasNext2Ins.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/HasNextIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/HasNextIns.java
index 96738302a..a808d591b 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/HasNextIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/HasNextIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/InIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/InIns.java
index d1b82b9eb..6e3aab5ea 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/InIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/InIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/InitPropertyIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/InitPropertyIns.java
index dce1abb06..12db428c8 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/InitPropertyIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/InitPropertyIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/LabelIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/LabelIns.java
index 00c75eaa2..538023235 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/LabelIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/LabelIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NextNameIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NextNameIns.java
index c9dd1ce06..9ecc885ff 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NextNameIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NextNameIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NextValueIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NextValueIns.java
index 05538af22..52e8204e0 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NextValueIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NextValueIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NopIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NopIns.java
index 5bfe8db7e..54630ffd2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NopIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/NopIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ReturnValueIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ReturnValueIns.java
index 52fc61166..2cc3ac74f 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ReturnValueIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ReturnValueIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ReturnVoidIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ReturnVoidIns.java
index be5cf6b4e..4eecb5e86 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ReturnVoidIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ReturnVoidIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetGlobalSlotIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetGlobalSlotIns.java
index daa6d7db3..17cf0a19e 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetGlobalSlotIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetGlobalSlotIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetPropertyIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetPropertyIns.java
index 76a62a229..d8fe8d73a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetPropertyIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetPropertyIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetSlotIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetSlotIns.java
index 9dd1b08eb..070f16442 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetSlotIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetSlotIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetSuperIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetSuperIns.java
index eaead93d2..6e6fdf038 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetSuperIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/SetSuperIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ThrowIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ThrowIns.java
index c3fa9ead5..a0f1c0b20 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ThrowIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/other/ThrowIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.other;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/DupIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/DupIns.java
index 96c28a43d..12bb3dbe2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/DupIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/DupIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PopIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PopIns.java
index a160033b5..67f7998ab 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PopIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PopIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PopScopeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PopScopeIns.java
index cf492edaf..c098c1aa8 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PopScopeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PopScopeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushByteIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushByteIns.java
index 8daf5acef..8bbbbb9ad 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushByteIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushByteIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushDoubleIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushDoubleIns.java
index 03e6a4ef5..0b0cfcc79 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushDoubleIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushDoubleIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushFalseIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushFalseIns.java
index 5e6422267..515b4cfc2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushFalseIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushFalseIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushIntIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushIntIns.java
index 0861754aa..22e543591 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushIntIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushIntIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNamespaceIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNamespaceIns.java
index b0d0fe7b4..f78c35002 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNamespaceIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNamespaceIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNanIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNanIns.java
index 6e66e2646..c035a2f63 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNanIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNanIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNullIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNullIns.java
index 6c4fe0670..459228f10 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNullIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushNullIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushScopeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushScopeIns.java
index 1d4f285e5..3bf74d4d9 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushScopeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushScopeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushShortIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushShortIns.java
index 21115bcc7..09fe9671d 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushShortIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushShortIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushStringIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushStringIns.java
index 9c7c3b78e..903163ff0 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushStringIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushStringIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushTrueIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushTrueIns.java
index 80e283380..d3a957f76 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushTrueIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushTrueIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushUIntIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushUIntIns.java
index 8d0ec4e62..7111c5dbf 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushUIntIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushUIntIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushUndefinedIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushUndefinedIns.java
index 49ea5e4a1..5982d41ee 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushUndefinedIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushUndefinedIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushWithIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushWithIns.java
index d9bb3b834..0a7afab98 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushWithIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/PushWithIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/SwapIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/SwapIns.java
index 6cb5e46d1..48a857c1a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/SwapIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/stack/SwapIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.stack;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ApplyTypeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ApplyTypeIns.java
index 6f81c87e0..bd493e213 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ApplyTypeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ApplyTypeIns.java
@@ -1,71 +1,70 @@
-/*
- * Copyright (C) 2010-2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.avm2.instructions.types;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.avm2.AVM2Code;
-import com.jpexs.asdec.abc.avm2.ConstantPool;
-import com.jpexs.asdec.abc.avm2.LocalDataArea;
-import com.jpexs.asdec.abc.avm2.instructions.AVM2Instruction;
-import com.jpexs.asdec.abc.avm2.instructions.InstructionDefinition;
-import com.jpexs.asdec.abc.avm2.treemodel.ApplyTypeTreeItem;
-import com.jpexs.asdec.abc.avm2.treemodel.TreeItem;
-import com.jpexs.asdec.abc.types.MethodInfo;
-import java.util.ArrayList;
-import java.util.Collections;
-
-import java.util.List;
-import java.util.Stack;
-
-
-public class ApplyTypeIns extends InstructionDefinition {
-
- public ApplyTypeIns() {
- super(0x53,"applytype",new int[]{AVM2Code.DAT_ARG_COUNT});
- }
-
- @Override
- public void execute(LocalDataArea lda, ConstantPool constants, List arguments) {
- int argCount = (int) ((Long) arguments.get(0)).longValue();
- List params = new ArrayList();
- for (int i = 0;i
- }
-
- @Override
- public void translate(boolean isStatic, int classIndex, java.util.HashMap localRegs, Stack stack, java.util.Stack scopeStack, ConstantPool constants, AVM2Instruction ins, MethodInfo[] method_info, List output, com.jpexs.asdec.abc.types.MethodBody body, com.jpexs.asdec.abc.ABC abc) {
- int argCount = ins.operands[0];
- List params = new ArrayList();
- for (int i = 0;i.
+ */
+
+package com.jpexs.asdec.abc.avm2.instructions.types;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.avm2.AVM2Code;
+import com.jpexs.asdec.abc.avm2.ConstantPool;
+import com.jpexs.asdec.abc.avm2.LocalDataArea;
+import com.jpexs.asdec.abc.avm2.instructions.AVM2Instruction;
+import com.jpexs.asdec.abc.avm2.instructions.InstructionDefinition;
+import com.jpexs.asdec.abc.avm2.treemodel.ApplyTypeTreeItem;
+import com.jpexs.asdec.abc.avm2.treemodel.TreeItem;
+import com.jpexs.asdec.abc.types.MethodInfo;
+import java.util.ArrayList;
+import java.util.Collections;
+
+import java.util.List;
+import java.util.Stack;
+
+
+public class ApplyTypeIns extends InstructionDefinition {
+
+ public ApplyTypeIns() {
+ super(0x53,"applytype",new int[]{AVM2Code.DAT_ARG_COUNT});
+ }
+
+ @Override
+ public void execute(LocalDataArea lda, ConstantPool constants, List arguments) {
+ int argCount = (int) ((Long) arguments.get(0)).longValue();
+ List params = new ArrayList();
+ for (int i = 0;i
+ }
+
+ @Override
+ public void translate(boolean isStatic, int classIndex, java.util.HashMap localRegs, Stack stack, java.util.Stack scopeStack, ConstantPool constants, AVM2Instruction ins, MethodInfo[] method_info, List output, com.jpexs.asdec.abc.types.MethodBody body, com.jpexs.asdec.abc.ABC abc) {
+ int argCount = ins.operands[0];
+ List params = new ArrayList();
+ for (int i = 0;i.
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/AsTypeLateIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/AsTypeLateIns.java
index fb90774e1..b5418ec10 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/AsTypeLateIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/AsTypeLateIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceAIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceAIns.java
index 32d65141e..86c9b8ea6 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceAIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceAIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceIns.java
index dfdfff9b0..894b42db5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceOrConvertTypeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceOrConvertTypeIns.java
index 2ba076bdc..a2e232ad3 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceOrConvertTypeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceOrConvertTypeIns.java
@@ -1,27 +1,26 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.avm2.instructions.types;
-
-/**
- *
- * @author JPEXS
- */
-public interface CoerceOrConvertTypeIns {
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.avm2.instructions.types;
+
+/**
+ *
+ * @author JPEXS
+ */
+public interface CoerceOrConvertTypeIns {
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceSIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceSIns.java
index 0d1ab5f98..50f443e17 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceSIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/CoerceSIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertBIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertBIns.java
index a67a8616d..1de344932 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertBIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertBIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertDIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertDIns.java
index 3c6a78bdc..dc2625cbe 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertDIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertDIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertIIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertIIns.java
index 3ec8986c7..7c4e709bb 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertIIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertIIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertOIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertOIns.java
index 44e28ed8c..e8a276221 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertOIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertOIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertSIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertSIns.java
index 1c57b151b..5cf9d1845 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertSIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertSIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertUIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertUIns.java
index 0acc4978e..852112c20 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertUIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/ConvertUIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/InstanceOfIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/InstanceOfIns.java
index f3311d0f8..dece28497 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/InstanceOfIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/InstanceOfIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/IsTypeIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/IsTypeIns.java
index 6f39f377f..d21713c16 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/IsTypeIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/IsTypeIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/IsTypeLateIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/IsTypeLateIns.java
index 8dc032ba9..a373d67f9 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/IsTypeLateIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/IsTypeLateIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/TypeOfIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/TypeOfIns.java
index 176d6fe8a..953869c7a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/TypeOfIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/types/TypeOfIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/CheckFilterIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/CheckFilterIns.java
index 56b5c5984..375e5964d 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/CheckFilterIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/CheckFilterIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.xml;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/DXNSIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/DXNSIns.java
index acb6bb3a8..a383cebd6 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/DXNSIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/DXNSIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.xml;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/DXNSLateIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/DXNSLateIns.java
index 98d5a2987..9fd412b82 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/DXNSLateIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/DXNSLateIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.xml;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/EscXAttrIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/EscXAttrIns.java
index 010d21cc9..f0794b134 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/EscXAttrIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/EscXAttrIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.xml;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/EscXElemIns.java b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/EscXElemIns.java
index a45c87dc2..1eafb051a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/EscXElemIns.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/instructions/xml/EscXElemIns.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.instructions.xml;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/parser/ASM3Parser.java b/trunk/src/com/jpexs/asdec/abc/avm2/parser/ASM3Parser.java
index 874365f52..086e85f65 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/parser/ASM3Parser.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/parser/ASM3Parser.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.parser;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/parser/Flasm3Lexer.java b/trunk/src/com/jpexs/asdec/abc/avm2/parser/Flasm3Lexer.java
index d1bc0ba1d..cf4938bdf 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/parser/Flasm3Lexer.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/parser/Flasm3Lexer.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.parser;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/parser/MissingSymbolHandler.java b/trunk/src/com/jpexs/asdec/abc/avm2/parser/MissingSymbolHandler.java
index 2aade5321..f8f2ef6a6 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/parser/MissingSymbolHandler.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/parser/MissingSymbolHandler.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.parser;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/parser/ParseException.java b/trunk/src/com/jpexs/asdec/abc/avm2/parser/ParseException.java
index be55e79c9..963de9a7c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/parser/ParseException.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/parser/ParseException.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.parser;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/parser/ParsedSymbol.java b/trunk/src/com/jpexs/asdec/abc/avm2/parser/ParsedSymbol.java
index a9598dfcf..5b57a28d0 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/parser/ParsedSymbol.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/parser/ParsedSymbol.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.parser;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ApplyTypeTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ApplyTypeTreeItem.java
index cf4d56845..a4980efe4 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ApplyTypeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ApplyTypeTreeItem.java
@@ -1,55 +1,54 @@
-/*
- * Copyright (C) 2010-2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.avm2.treemodel;
-
-import com.jpexs.asdec.abc.avm2.ConstantPool;
-import com.jpexs.asdec.abc.avm2.instructions.AVM2Instruction;
-import java.util.List;
-
-
-public class ApplyTypeTreeItem extends TreeItem {
- public TreeItem object;
- public List params;
-
- public ApplyTypeTreeItem(AVM2Instruction instruction, TreeItem object, List params) {
- super(instruction, PRECEDENCE_PRIMARY);
- this.params=params;
- this.object=object;
- }
-
-
- @Override
- public String toString(ConstantPool constants) {
- String ret=object.toString(constants);
- if(!params.isEmpty())
- {
- ret+=hilight(".<");
- for(int i=0;i0){
- ret+=hilight(",");
- }
- ret+=params.get(i).toString(constants);
- }
- ret+=hilight(">");
- }
- return ret;
- }
-
-}
+/*
+ * Copyright (C) 2010-2011 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 .
+ */
+
+package com.jpexs.asdec.abc.avm2.treemodel;
+
+import com.jpexs.asdec.abc.avm2.ConstantPool;
+import com.jpexs.asdec.abc.avm2.instructions.AVM2Instruction;
+import java.util.List;
+
+
+public class ApplyTypeTreeItem extends TreeItem {
+ public TreeItem object;
+ public List params;
+
+ public ApplyTypeTreeItem(AVM2Instruction instruction, TreeItem object, List params) {
+ super(instruction, PRECEDENCE_PRIMARY);
+ this.params=params;
+ this.object=object;
+ }
+
+
+ @Override
+ public String toString(ConstantPool constants) {
+ String ret=object.toString(constants);
+ if(!params.isEmpty())
+ {
+ ret+=hilight(".<");
+ for(int i=0;i0){
+ ret+=hilight(",");
+ }
+ ret+=params.get(i).toString(constants);
+ }
+ ret+=hilight(">");
+ }
+ return ret;
+ }
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/BooleanTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/BooleanTreeItem.java
index a7fb53bbb..0246ae74b 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/BooleanTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/BooleanTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/BreakTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/BreakTreeItem.java
index fb649879a..d59f46bff 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/BreakTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/BreakTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallMethodTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallMethodTreeItem.java
index fc0987b27..f2308ef77 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallMethodTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallMethodTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallPropertyTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallPropertyTreeItem.java
index 101283ea9..cd2897592 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallPropertyTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallPropertyTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallStaticTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallStaticTreeItem.java
index 33eb543ef..80d3a351a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallStaticTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallStaticTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallSuperTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallSuperTreeItem.java
index a684d53f7..7d28ee802 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallSuperTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallSuperTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallTreeItem.java
index 440c36007..3442038f5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CallTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ClassTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ClassTreeItem.java
index fbfba63ce..485bdaf6d 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ClassTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ClassTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CoerceTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CoerceTreeItem.java
index 5b76a60ff..fd69ffa22 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CoerceTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/CoerceTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructPropTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructPropTreeItem.java
index 46e96aeba..f3da2414c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructPropTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructPropTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructSuperTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructSuperTreeItem.java
index e819c1bb1..390834475 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructSuperTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructSuperTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructTreeItem.java
index a70708723..f93848d4b 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConstructTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ContinueTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ContinueTreeItem.java
index 2e2225fde..52a17df37 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ContinueTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ContinueTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConvertTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConvertTreeItem.java
index ff3351e23..34e13aa7c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConvertTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ConvertTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/DecLocalTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/DecLocalTreeItem.java
index 28a518f1b..3feb25cc3 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/DecLocalTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/DecLocalTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/DecrementTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/DecrementTreeItem.java
index 792c96157..dd33c163c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/DecrementTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/DecrementTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/EachTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/EachTreeItem.java
index 4fdb4e56e..fb4c4aa98 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/EachTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/EachTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FindPropertyTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FindPropertyTreeItem.java
index 8d7630c87..8d3831bdc 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FindPropertyTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FindPropertyTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FloatValueTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FloatValueTreeItem.java
index dbc171908..fe3433716 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FloatValueTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FloatValueTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FullMultinameTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FullMultinameTreeItem.java
index 22e1ee512..16b3b75a5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FullMultinameTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/FullMultinameTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetDescendantsTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetDescendantsTreeItem.java
index 5f5c0bad1..4497546f0 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetDescendantsTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetDescendantsTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetLexTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetLexTreeItem.java
index a9153c5b8..644466ab5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetLexTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetLexTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetPropertyTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetPropertyTreeItem.java
index a8d750f5d..44bcde377 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetPropertyTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetPropertyTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetSlotTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetSlotTreeItem.java
index 431c49cf8..83d35d208 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetSlotTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetSlotTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetSuperTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetSuperTreeItem.java
index 9c723b032..ea949b6e3 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetSuperTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/GetSuperTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IncLocalTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IncLocalTreeItem.java
index b5b3871d0..9653d2530 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IncLocalTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IncLocalTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IncrementTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IncrementTreeItem.java
index 48e2affbf..20c028337 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IncrementTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IncrementTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/InitPropertyTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/InitPropertyTreeItem.java
index f2829a2d2..55b992059 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/InitPropertyTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/InitPropertyTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IntegerValueTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IntegerValueTreeItem.java
index a88d4f260..299811a1e 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IntegerValueTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/IntegerValueTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/LocalRegTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/LocalRegTreeItem.java
index d8b32668f..fd9aa673e 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/LocalRegTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/LocalRegTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NameSpaceTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NameSpaceTreeItem.java
index bcd149006..0cf17aca9 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NameSpaceTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NameSpaceTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NameValuePair.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NameValuePair.java
index 92fe7524e..e9a366781 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NameValuePair.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NameValuePair.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NanTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NanTreeItem.java
index a28f46a90..f47982080 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NanTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NanTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewActivationTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewActivationTreeItem.java
index 9d605f758..2c6801ca2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewActivationTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewActivationTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewArrayTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewArrayTreeItem.java
index 1df5f209d..fbb52039c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewArrayTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewArrayTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewFunctionTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewFunctionTreeItem.java
index 306165986..bcd975e2a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewFunctionTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewFunctionTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewObjectTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewObjectTreeItem.java
index afa25d1ad..e9ae5b192 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewObjectTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NewObjectTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NullTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NullTreeItem.java
index 004912803..571221445 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NullTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NullTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NumberValueTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NumberValueTreeItem.java
index 8a81e799d..895bbd1a7 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NumberValueTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/NumberValueTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/PostDecrementTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/PostDecrementTreeItem.java
index 2121efc6a..4465056de 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/PostDecrementTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/PostDecrementTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/PostIncrementTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/PostIncrementTreeItem.java
index c338a3a54..45622eca0 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/PostIncrementTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/PostIncrementTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ReturnValueTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ReturnValueTreeItem.java
index 936748b95..0f64ef309 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ReturnValueTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ReturnValueTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ReturnVoidTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ReturnVoidTreeItem.java
index 5aa97fcc0..11cfecfef 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ReturnVoidTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ReturnVoidTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetGlobalSlotTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetGlobalSlotTreeItem.java
index 21b7eace9..a7b6ea6a0 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetGlobalSlotTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetGlobalSlotTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetLocalTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetLocalTreeItem.java
index 854419a34..4ddf72fa5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetLocalTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetLocalTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetPropertyTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetPropertyTreeItem.java
index 537c836d6..2f48bbc7b 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetPropertyTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetPropertyTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetSlotTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetSlotTreeItem.java
index 05421019b..cb8fa4afd 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetSlotTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetSlotTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetSuperTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetSuperTreeItem.java
index 2cb669dd2..a8987902a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetSuperTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetSuperTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetTypeTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetTypeTreeItem.java
index ecff6f1b9..b6b4a8e0d 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetTypeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/SetTypeTreeItem.java
@@ -1,28 +1,27 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.avm2.treemodel;
-
-/**
- *
- * @author JPEXS
- */
-public interface SetTypeTreeItem {
- public TreeItem getObject();
- public TreeItem getValue();
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.avm2.treemodel;
+
+/**
+ *
+ * @author JPEXS
+ */
+public interface SetTypeTreeItem {
+ public TreeItem getObject();
+ public TreeItem getValue();
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/StringTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/StringTreeItem.java
index 35e5b74b3..e352fa101 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/StringTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/StringTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ThisTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ThisTreeItem.java
index dea92e691..bbdd5102a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ThisTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ThisTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ThrowTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ThrowTreeItem.java
index 1067032bf..1ad3d003b 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ThrowTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/ThrowTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/TreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/TreeItem.java
index ce3d3d0ac..8bda35315 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/TreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/TreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/UndefinedTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/UndefinedTreeItem.java
index 992e0607a..ba193e741 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/UndefinedTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/UndefinedTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/UnparsedTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/UnparsedTreeItem.java
index e9a1f16d5..120e09b2b 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/UnparsedTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/UnparsedTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/WithTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/WithTreeItem.java
index f6850e67d..973c8ea31 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/WithTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/WithTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/Block.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/Block.java
index 44f9cfc00..af8997cf2 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/Block.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/Block.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/DoWhileTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/DoWhileTreeItem.java
index 932eed820..0f163c3d5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/DoWhileTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/DoWhileTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ExceptionTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ExceptionTreeItem.java
index 54561c0a3..a1ec6ac01 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ExceptionTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ExceptionTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ForEachTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ForEachTreeItem.java
index ab4ef9a21..8982be030 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ForEachTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ForEachTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ForTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ForTreeItem.java
index 9100e4e93..2a14e1c9b 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ForTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/ForTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/IfTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/IfTreeItem.java
index 6bf204404..63b0e9ddc 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/IfTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/IfTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/LoopTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/LoopTreeItem.java
index bdec5d5e8..d642f2ff0 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/LoopTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/LoopTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/SwitchTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/SwitchTreeItem.java
index a794cc4f6..486bbc7db 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/SwitchTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/SwitchTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/TernarOpTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/TernarOpTreeItem.java
index 06fab290f..2c2f920b0 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/TernarOpTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/TernarOpTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/TryTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/TryTreeItem.java
index c228d6de2..0af6d800e 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/TryTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/TryTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/WhileTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/WhileTreeItem.java
index 4cab0a2c9..12bba058c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/WhileTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/clauses/WhileTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AddTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AddTreeItem.java
index 41f2c3e32..64b4f61c5 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AddTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AddTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AndTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AndTreeItem.java
index f9aa504c8..e12918f17 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AndTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AndTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AsTypeTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AsTypeTreeItem.java
index 25a02ad66..e45b96740 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AsTypeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/AsTypeTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BinaryOpTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BinaryOpTreeItem.java
index b6bef4ee5..ebeba4efc 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BinaryOpTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BinaryOpTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitAndTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitAndTreeItem.java
index 11174acdf..0b5c99712 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitAndTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitAndTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitNotTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitNotTreeItem.java
index 4fec8f393..51b5a4c4c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitNotTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitNotTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitOrTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitOrTreeItem.java
index 297d00e00..43c80c849 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitOrTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitOrTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitXorTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitXorTreeItem.java
index 6337ccebe..a6ce597db 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitXorTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/BitXorTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/DeletePropertyTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/DeletePropertyTreeItem.java
index c9df7771b..e9e77fe2e 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/DeletePropertyTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/DeletePropertyTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/DivideTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/DivideTreeItem.java
index c76dfcfd4..d65d1ab77 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/DivideTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/DivideTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/EqTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/EqTreeItem.java
index 2a0a74242..36a2f7ec6 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/EqTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/EqTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/GeTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/GeTreeItem.java
index 20aab048d..68f29ca5c 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/GeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/GeTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/GtTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/GtTreeItem.java
index 9206a22f6..d5fbf99bc 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/GtTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/GtTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/InTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/InTreeItem.java
index b0a4f7b4b..c94457a09 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/InTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/InTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/InstanceOfTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/InstanceOfTreeItem.java
index 2dd04bbc8..7f48bb28d 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/InstanceOfTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/InstanceOfTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/IsTypeTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/IsTypeTreeItem.java
index 308f7b814..fe8dae5c1 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/IsTypeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/IsTypeTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LShiftTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LShiftTreeItem.java
index 1306ebdf9..4423ac048 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LShiftTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LShiftTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LeTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LeTreeItem.java
index d76bff5d5..3e2262ce8 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LeTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LtTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LtTreeItem.java
index 4505e4cb9..04d1a7062 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LtTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/LtTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/ModuloTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/ModuloTreeItem.java
index adb5233ca..d719a3a70 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/ModuloTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/ModuloTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/MultiplyTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/MultiplyTreeItem.java
index fbfdbc7f8..3088f6f10 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/MultiplyTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/MultiplyTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NegTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NegTreeItem.java
index 49fd445ba..db471afca 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NegTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NegTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NeqTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NeqTreeItem.java
index 7865f44f0..d694991b8 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NeqTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NeqTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NotTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NotTreeItem.java
index 313f614b2..8912ca834 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NotTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/NotTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/OrTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/OrTreeItem.java
index a1d352a6c..49a16228f 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/OrTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/OrTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/PreDecrementTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/PreDecrementTreeItem.java
index 4fcd26e6f..484c6c5bd 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/PreDecrementTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/PreDecrementTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/PreIncrementTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/PreIncrementTreeItem.java
index 2671c2938..9d24bec22 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/PreIncrementTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/PreIncrementTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/RShiftTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/RShiftTreeItem.java
index bd98f6fae..8aa0bedec 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/RShiftTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/RShiftTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/StrictEqTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/StrictEqTreeItem.java
index 5d83e71fc..ee3f99a98 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/StrictEqTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/StrictEqTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/StrictNeqTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/StrictNeqTreeItem.java
index 11eb8b7f3..53b9cf161 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/StrictNeqTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/StrictNeqTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/SubtractTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/SubtractTreeItem.java
index c68f678c9..a331d64f3 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/SubtractTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/SubtractTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/TypeOfTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/TypeOfTreeItem.java
index 4521b077b..8522e06dc 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/TypeOfTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/TypeOfTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/URShiftTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/URShiftTreeItem.java
index 53dabc2e1..b5fb6f87a 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/URShiftTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/URShiftTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/UnaryOpTreeItem.java b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/UnaryOpTreeItem.java
index e8b891aa1..a841deafe 100644
--- a/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/UnaryOpTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/abc/avm2/treemodel/operations/UnaryOpTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.avm2.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/ABCComboBoxModel.java b/trunk/src/com/jpexs/asdec/abc/gui/ABCComboBoxModel.java
index d712fdb5c..104edf9ac 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/ABCComboBoxModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/ABCComboBoxModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/ASMSourceEditorPane.java b/trunk/src/com/jpexs/asdec/abc/gui/ASMSourceEditorPane.java
index 7fbabcbf9..d534202eb 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/ASMSourceEditorPane.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/ASMSourceEditorPane.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/ClassesListTree.java b/trunk/src/com/jpexs/asdec/abc/gui/ClassesListTree.java
index c9a685458..32a1f0747 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/ClassesListTree.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/ClassesListTree.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 JPEXS, Paolo Cancedda
*
- * 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/ClassesListTreeModel.java b/trunk/src/com/jpexs/asdec/abc/gui/ClassesListTreeModel.java
index 1f152fd63..16be563bb 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/ClassesListTreeModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/ClassesListTreeModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 JPEXS, Paolo Cancedda
*
- * 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/ConstantsListModel.java b/trunk/src/com/jpexs/asdec/abc/gui/ConstantsListModel.java
index 288755e3e..3d6d254ad 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/ConstantsListModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/ConstantsListModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/DecompiledEditorPane.java b/trunk/src/com/jpexs/asdec/abc/gui/DecompiledEditorPane.java
index ed36a537a..3b42b8bd8 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/DecompiledEditorPane.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/DecompiledEditorPane.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,9 +12,9 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
+
package com.jpexs.asdec.abc.gui;
import com.jpexs.asdec.Main;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/DetailPanel.java b/trunk/src/com/jpexs/asdec/abc/gui/DetailPanel.java
index d8abbc21b..dcfbd29e8 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/DetailPanel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/DetailPanel.java
@@ -1,121 +1,120 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.gui;
-
-import com.jpexs.asdec.Main;
-import java.awt.BorderLayout;
-import java.awt.CardLayout;
-import java.awt.FlowLayout;
-import java.awt.event.ActionEvent;
-import java.awt.event.ActionListener;
-import java.util.HashMap;
-import javax.swing.BorderFactory;
-import javax.swing.JButton;
-import javax.swing.JComponent;
-import javax.swing.JLabel;
-import javax.swing.JOptionPane;
-import javax.swing.JPanel;
-import javax.swing.SwingConstants;
-import javax.swing.border.BevelBorder;
-import javax.swing.border.EtchedBorder;
-
-/**
- *
- * @author JPEXS
- */
-public class DetailPanel extends JPanel implements ActionListener {
- public MethodTraitDetailPanel methodTraitPanel;
- public JPanel unsupportedTraitPanel;
- public SlotConstTraitDetailPanel slotConstTraitPanel;
- public static final String METHOD_TRAIT_CARD="Method/Getter/Setter Trait";
- public static final String UNSUPPORTED_TRAIT_CARD="Unsupported Trait Type";
- public static final String SLOT_CONST_TRAIT_CARD="Slot/Const Trait";
- private JPanel innerPanel;
- public JButton saveButton;
- private HashMap cardMap=new HashMap();
- private String selectedCard;
- private JLabel selectedLabel;
-
- public DetailPanel()
- {
- innerPanel=new JPanel();
- CardLayout layout=new CardLayout();
- innerPanel.setLayout(layout);
- methodTraitPanel=new MethodTraitDetailPanel();
- cardMap.put(METHOD_TRAIT_CARD, methodTraitPanel);
-
- unsupportedTraitPanel=new JPanel(new BorderLayout());
- JLabel unsup=new JLabel("Editing of this trait type is currently unsupported",SwingConstants.CENTER);
- unsupportedTraitPanel.add(unsup,BorderLayout.CENTER);
-
- cardMap.put(UNSUPPORTED_TRAIT_CARD, unsupportedTraitPanel);
-
- slotConstTraitPanel=new SlotConstTraitDetailPanel();
- cardMap.put(SLOT_CONST_TRAIT_CARD,slotConstTraitPanel);
-
- for(String key:cardMap.keySet())
- {
- innerPanel.add(cardMap.get(key),key);
- }
-
- setLayout(new BorderLayout());
- add(innerPanel,BorderLayout.CENTER);
-
- JPanel buttonsPanel=new JPanel();
- buttonsPanel.setLayout(new FlowLayout());
- saveButton = new JButton("Save trait");
- saveButton.setActionCommand("SAVEDETAIL");
- saveButton.addActionListener(this);
- buttonsPanel.setBorder(new BevelBorder(BevelBorder.RAISED));
- buttonsPanel.add(saveButton);
- add(buttonsPanel,BorderLayout.SOUTH);
- selectedCard=UNSUPPORTED_TRAIT_CARD;
- layout.show(innerPanel, UNSUPPORTED_TRAIT_CARD);
- saveButton.setVisible(false);
- selectedLabel=new JLabel("");
- selectedLabel.setText(selectedCard);
- selectedLabel.setBorder(new BevelBorder(BevelBorder.RAISED));
- selectedLabel.setHorizontalAlignment(SwingConstants.CENTER);
- add(selectedLabel,BorderLayout.NORTH);
- }
-
- public void showCard(String name)
- {
- CardLayout layout=(CardLayout)innerPanel.getLayout();
- layout.show(innerPanel, name);
- saveButton.setVisible(cardMap.get(name) instanceof TraitDetail);
- selectedCard=name;
- selectedLabel.setText(selectedCard);
- }
-
- public void actionPerformed(ActionEvent e) {
- if (e.getActionCommand().equals("SAVEDETAIL")) {
- if(cardMap.get(selectedCard) instanceof TraitDetail)
- {
- if(((TraitDetail)cardMap.get(selectedCard)).save())
- {
- int lasttrait = Main.abcMainFrame.decompiledTextArea.lastTraitIndex;
- Main.abcMainFrame.decompiledTextArea.reloadClass();
- Main.abcMainFrame.decompiledTextArea.gotoTrait(lasttrait);
- JOptionPane.showMessageDialog(this, "Trait Successfully saved");
- }
- }
- }
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.gui;
+
+import com.jpexs.asdec.Main;
+import java.awt.BorderLayout;
+import java.awt.CardLayout;
+import java.awt.FlowLayout;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import java.util.HashMap;
+import javax.swing.BorderFactory;
+import javax.swing.JButton;
+import javax.swing.JComponent;
+import javax.swing.JLabel;
+import javax.swing.JOptionPane;
+import javax.swing.JPanel;
+import javax.swing.SwingConstants;
+import javax.swing.border.BevelBorder;
+import javax.swing.border.EtchedBorder;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class DetailPanel extends JPanel implements ActionListener {
+ public MethodTraitDetailPanel methodTraitPanel;
+ public JPanel unsupportedTraitPanel;
+ public SlotConstTraitDetailPanel slotConstTraitPanel;
+ public static final String METHOD_TRAIT_CARD="Method/Getter/Setter Trait";
+ public static final String UNSUPPORTED_TRAIT_CARD="Unsupported Trait Type";
+ public static final String SLOT_CONST_TRAIT_CARD="Slot/Const Trait";
+ private JPanel innerPanel;
+ public JButton saveButton;
+ private HashMap cardMap=new HashMap();
+ private String selectedCard;
+ private JLabel selectedLabel;
+
+ public DetailPanel()
+ {
+ innerPanel=new JPanel();
+ CardLayout layout=new CardLayout();
+ innerPanel.setLayout(layout);
+ methodTraitPanel=new MethodTraitDetailPanel();
+ cardMap.put(METHOD_TRAIT_CARD, methodTraitPanel);
+
+ unsupportedTraitPanel=new JPanel(new BorderLayout());
+ JLabel unsup=new JLabel("Editing of this trait type is currently unsupported",SwingConstants.CENTER);
+ unsupportedTraitPanel.add(unsup,BorderLayout.CENTER);
+
+ cardMap.put(UNSUPPORTED_TRAIT_CARD, unsupportedTraitPanel);
+
+ slotConstTraitPanel=new SlotConstTraitDetailPanel();
+ cardMap.put(SLOT_CONST_TRAIT_CARD,slotConstTraitPanel);
+
+ for(String key:cardMap.keySet())
+ {
+ innerPanel.add(cardMap.get(key),key);
+ }
+
+ setLayout(new BorderLayout());
+ add(innerPanel,BorderLayout.CENTER);
+
+ JPanel buttonsPanel=new JPanel();
+ buttonsPanel.setLayout(new FlowLayout());
+ saveButton = new JButton("Save trait");
+ saveButton.setActionCommand("SAVEDETAIL");
+ saveButton.addActionListener(this);
+ buttonsPanel.setBorder(new BevelBorder(BevelBorder.RAISED));
+ buttonsPanel.add(saveButton);
+ add(buttonsPanel,BorderLayout.SOUTH);
+ selectedCard=UNSUPPORTED_TRAIT_CARD;
+ layout.show(innerPanel, UNSUPPORTED_TRAIT_CARD);
+ saveButton.setVisible(false);
+ selectedLabel=new JLabel("");
+ selectedLabel.setText(selectedCard);
+ selectedLabel.setBorder(new BevelBorder(BevelBorder.RAISED));
+ selectedLabel.setHorizontalAlignment(SwingConstants.CENTER);
+ add(selectedLabel,BorderLayout.NORTH);
+ }
+
+ public void showCard(String name)
+ {
+ CardLayout layout=(CardLayout)innerPanel.getLayout();
+ layout.show(innerPanel, name);
+ saveButton.setVisible(cardMap.get(name) instanceof TraitDetail);
+ selectedCard=name;
+ selectedLabel.setText(selectedCard);
+ }
+
+ public void actionPerformed(ActionEvent e) {
+ if (e.getActionCommand().equals("SAVEDETAIL")) {
+ if(cardMap.get(selectedCard) instanceof TraitDetail)
+ {
+ if(((TraitDetail)cardMap.get(selectedCard)).save())
+ {
+ int lasttrait = Main.abcMainFrame.decompiledTextArea.lastTraitIndex;
+ Main.abcMainFrame.decompiledTextArea.reloadClass();
+ Main.abcMainFrame.decompiledTextArea.gotoTrait(lasttrait);
+ JOptionPane.showMessageDialog(this, "Trait Successfully saved");
+ }
+ }
+ }
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/DialogMissingSymbolHandler.java b/trunk/src/com/jpexs/asdec/abc/gui/DialogMissingSymbolHandler.java
index 101bdc7cd..ccc826b56 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/DialogMissingSymbolHandler.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/DialogMissingSymbolHandler.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/GraphFrame.java b/trunk/src/com/jpexs/asdec/abc/gui/GraphFrame.java
index 3aa084c24..0a698fd5c 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/GraphFrame.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/GraphFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/GraphTreeFrame.java b/trunk/src/com/jpexs/asdec/abc/gui/GraphTreeFrame.java
index a7cb26b7b..6d90712c8 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/GraphTreeFrame.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/GraphTreeFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/IconListRenderer.java b/trunk/src/com/jpexs/asdec/abc/gui/IconListRenderer.java
index f42cd6b1d..c6e1989b8 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/IconListRenderer.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/IconListRenderer.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/LineMarkedEditorPane.java b/trunk/src/com/jpexs/asdec/abc/gui/LineMarkedEditorPane.java
index 645e28942..0b10e1a53 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/LineMarkedEditorPane.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/LineMarkedEditorPane.java
@@ -1,67 +1,66 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.gui;
-
-import java.awt.Color;
-import java.awt.FontMetrics;
-import java.awt.Graphics;
-import javax.swing.JEditorPane;
-import javax.swing.event.CaretEvent;
-import javax.swing.event.CaretListener;
-import javax.swing.text.Element;
-
-/**
- *
- * @author JPEXS
- */
-public class LineMarkedEditorPane extends JEditorPane {
-
- int lastLine=-1;
- public LineMarkedEditorPane() {
- setOpaque(false);
- addCaretListener(new CaretListener(){
-
- public void caretUpdate(CaretEvent e) {
- int caretPosition = getCaretPosition();
- Element root = getDocument().getDefaultRootElement();
- int currentLine = root.getElementIndex(caretPosition);
- if(currentLine!=lastLine){
- lastLine=currentLine;
- repaint();
- }
- }
-
- });
- }
-
- @Override
- public void paint(Graphics g) {
- g.setColor(Color.white);
- g.fillRect(0, 0, getWidth(),getHeight());
- FontMetrics fontMetrics = g.getFontMetrics();
- int lh = fontMetrics.getHeight();
- int a = fontMetrics.getAscent();
- int d=fontMetrics.getDescent();
- int h = a + d;
- int rH = h;
- g.setColor(new Color(0xee,0xee,0xee));
- g.fillRect(0, d+lh*lastLine-1, getWidth(),lh);
- super.paint(g);
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.gui;
+
+import java.awt.Color;
+import java.awt.FontMetrics;
+import java.awt.Graphics;
+import javax.swing.JEditorPane;
+import javax.swing.event.CaretEvent;
+import javax.swing.event.CaretListener;
+import javax.swing.text.Element;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class LineMarkedEditorPane extends JEditorPane {
+
+ int lastLine=-1;
+ public LineMarkedEditorPane() {
+ setOpaque(false);
+ addCaretListener(new CaretListener(){
+
+ public void caretUpdate(CaretEvent e) {
+ int caretPosition = getCaretPosition();
+ Element root = getDocument().getDefaultRootElement();
+ int currentLine = root.getElementIndex(caretPosition);
+ if(currentLine!=lastLine){
+ lastLine=currentLine;
+ repaint();
+ }
+ }
+
+ });
+ }
+
+ @Override
+ public void paint(Graphics g) {
+ g.setColor(Color.white);
+ g.fillRect(0, 0, getWidth(),getHeight());
+ FontMetrics fontMetrics = g.getFontMetrics();
+ int lh = fontMetrics.getHeight();
+ int a = fontMetrics.getAscent();
+ int d=fontMetrics.getDescent();
+ int h = a + d;
+ int rH = h;
+ g.setColor(new Color(0xee,0xee,0xee));
+ g.fillRect(0, d+lh*lastLine-1, getWidth(),lh);
+ super.paint(g);
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/MainFrame.java b/trunk/src/com/jpexs/asdec/abc/gui/MainFrame.java
index 5edd25835..3d65ec958 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/MainFrame.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/MainFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/MethodBodyParamsPanel.java b/trunk/src/com/jpexs/asdec/abc/gui/MethodBodyParamsPanel.java
index 2628d66da..8d48bc1e5 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/MethodBodyParamsPanel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/MethodBodyParamsPanel.java
@@ -1,133 +1,133 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-package com.jpexs.asdec.abc.gui;
-
-import com.jpexs.asdec.Main;
-import com.jpexs.asdec.abc.avm2.CodeStats;
-import com.jpexs.asdec.abc.types.MethodBody;
-import java.awt.Color;
-import java.awt.Dimension;
-import java.text.NumberFormat;
-import javax.swing.JCheckBox;
-import javax.swing.JFormattedTextField;
-import javax.swing.JLabel;
-import javax.swing.JOptionPane;
-import javax.swing.JPanel;
-import javax.swing.SwingConstants;
-import javax.swing.event.ChangeEvent;
-import javax.swing.event.ChangeListener;
-
-/**
- *
- * @author JPEXS
- */
-public class MethodBodyParamsPanel extends JPanel implements ChangeListener{
-
- public JLabel maxStackLabel = new JLabel("Max stack:",SwingConstants.RIGHT);
- public JFormattedTextField maxStackField = new JFormattedTextField(NumberFormat.getNumberInstance());
- public JLabel localCountLabel = new JLabel("Local registers count:",SwingConstants.RIGHT);
- public JFormattedTextField localCountField = new JFormattedTextField(NumberFormat.getNumberInstance());
- public JLabel initScopeDepthLabel = new JLabel("Minimum scope depth:",SwingConstants.RIGHT);
- public JFormattedTextField initScopeDepthField = new JFormattedTextField(NumberFormat.getNumberInstance());
- public JLabel maxScopeDepthLabel = new JLabel("Maximum scope depth:",SwingConstants.RIGHT);
- public JFormattedTextField maxScopeDepthField = new JFormattedTextField(NumberFormat.getNumberInstance());
- public MethodBody body;
- public JCheckBox autoFillCheckBox=new JCheckBox("Auto fill on code save (GLOBAL SETTING)");
- public JLabel experimentalLabel=new JLabel("...EXPERIMENTAL");
- public MethodBodyParamsPanel() {
- setLayout(null);
-
- maxStackLabel.setBounds(10, 10, 150, 25);
- maxStackField.setBounds(10+150+10, 10, 75, 25);
- add(maxStackLabel);
- add(maxStackField);
-
- localCountLabel.setBounds(10, 10+30, 150, 25);
- localCountField.setBounds(10+150+10, 10+30, 75, 25);
- add(localCountLabel);
- add(localCountField);
-
- initScopeDepthLabel.setBounds(10, 10+30+30, 150, 25);
- initScopeDepthField.setBounds(10+150+10, 10+30+30, 75, 25);
- add(initScopeDepthLabel);
- add(initScopeDepthField);
-
- maxScopeDepthLabel.setBounds(10, 10+30+30+30, 150, 25);
- maxScopeDepthField.setBounds(10+150+10, 10+30+30+30, 75, 25);
- add(maxScopeDepthLabel);
- add(maxScopeDepthField);
-
- autoFillCheckBox.setBounds(30, 10+30+30+30+30, 230, 25);
- add(autoFillCheckBox);
- autoFillCheckBox.addChangeListener(this);
-
- experimentalLabel.setForeground(Color.red);
- experimentalLabel.setBounds(250,10+30+30+30+30, 100, 25);
- add(experimentalLabel);
-
- setPreferredSize(new Dimension(300,150));
- }
-
- public void loadFromBody(MethodBody body) {
- this.body = body;
- if (body == null) {
- maxStackField.setText("0");
- localCountField.setText("0");
- initScopeDepthField.setText("0");
- maxScopeDepthField.setText("0");
- return;
- }
- maxStackField.setText("" + body.max_stack);
- localCountField.setText("" + body.max_regs);
- initScopeDepthField.setText("" + body.init_scope_depth);
- maxScopeDepthField.setText("" + body.max_scope_depth);
- }
-
- public boolean save() {
- if (body != null) {
- body.init_scope_depth = Integer.parseInt(initScopeDepthField.getText());
- if(!autoFillCheckBox.isSelected())
- {
- body.max_stack = Integer.parseInt(maxStackField.getText());
- body.max_regs = Integer.parseInt(localCountField.getText());
- body.max_scope_depth = Integer.parseInt(maxScopeDepthField.getText());
- }else{
- if(!body.autoFillStats(Main.abcMainFrame.abc))
- {
- JOptionPane.showMessageDialog(null, "Cannot get code stats for automatic body params.\r\nUncheck autofill to avoid this message.","Warning",JOptionPane.WARNING_MESSAGE);
- }
- }
- return true;
- }
- return false;
- }
-
- public void stateChanged(ChangeEvent e) {
- if(e.getSource()==autoFillCheckBox){
- if(autoFillCheckBox.isSelected()){
- localCountField.setEnabled(false);
- maxScopeDepthField.setEnabled(false);
- maxStackField.setEnabled(false);
- }else{
- localCountField.setEnabled(true);
- maxScopeDepthField.setEnabled(true);
- maxStackField.setEnabled(true);
- }
- }
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.gui;
+
+import com.jpexs.asdec.Main;
+import com.jpexs.asdec.abc.avm2.CodeStats;
+import com.jpexs.asdec.abc.types.MethodBody;
+import java.awt.Color;
+import java.awt.Dimension;
+import java.text.NumberFormat;
+import javax.swing.JCheckBox;
+import javax.swing.JFormattedTextField;
+import javax.swing.JLabel;
+import javax.swing.JOptionPane;
+import javax.swing.JPanel;
+import javax.swing.SwingConstants;
+import javax.swing.event.ChangeEvent;
+import javax.swing.event.ChangeListener;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class MethodBodyParamsPanel extends JPanel implements ChangeListener{
+
+ public JLabel maxStackLabel = new JLabel("Max stack:",SwingConstants.RIGHT);
+ public JFormattedTextField maxStackField = new JFormattedTextField(NumberFormat.getNumberInstance());
+ public JLabel localCountLabel = new JLabel("Local registers count:",SwingConstants.RIGHT);
+ public JFormattedTextField localCountField = new JFormattedTextField(NumberFormat.getNumberInstance());
+ public JLabel initScopeDepthLabel = new JLabel("Minimum scope depth:",SwingConstants.RIGHT);
+ public JFormattedTextField initScopeDepthField = new JFormattedTextField(NumberFormat.getNumberInstance());
+ public JLabel maxScopeDepthLabel = new JLabel("Maximum scope depth:",SwingConstants.RIGHT);
+ public JFormattedTextField maxScopeDepthField = new JFormattedTextField(NumberFormat.getNumberInstance());
+ public MethodBody body;
+ public JCheckBox autoFillCheckBox=new JCheckBox("Auto fill on code save (GLOBAL SETTING)");
+ public JLabel experimentalLabel=new JLabel("...EXPERIMENTAL");
+ public MethodBodyParamsPanel() {
+ setLayout(null);
+
+ maxStackLabel.setBounds(10, 10, 150, 25);
+ maxStackField.setBounds(10+150+10, 10, 75, 25);
+ add(maxStackLabel);
+ add(maxStackField);
+
+ localCountLabel.setBounds(10, 10+30, 150, 25);
+ localCountField.setBounds(10+150+10, 10+30, 75, 25);
+ add(localCountLabel);
+ add(localCountField);
+
+ initScopeDepthLabel.setBounds(10, 10+30+30, 150, 25);
+ initScopeDepthField.setBounds(10+150+10, 10+30+30, 75, 25);
+ add(initScopeDepthLabel);
+ add(initScopeDepthField);
+
+ maxScopeDepthLabel.setBounds(10, 10+30+30+30, 150, 25);
+ maxScopeDepthField.setBounds(10+150+10, 10+30+30+30, 75, 25);
+ add(maxScopeDepthLabel);
+ add(maxScopeDepthField);
+
+ autoFillCheckBox.setBounds(30, 10+30+30+30+30, 230, 25);
+ add(autoFillCheckBox);
+ autoFillCheckBox.addChangeListener(this);
+
+ experimentalLabel.setForeground(Color.red);
+ experimentalLabel.setBounds(250,10+30+30+30+30, 100, 25);
+ add(experimentalLabel);
+
+ setPreferredSize(new Dimension(300,150));
+ }
+
+ public void loadFromBody(MethodBody body) {
+ this.body = body;
+ if (body == null) {
+ maxStackField.setText("0");
+ localCountField.setText("0");
+ initScopeDepthField.setText("0");
+ maxScopeDepthField.setText("0");
+ return;
+ }
+ maxStackField.setText("" + body.max_stack);
+ localCountField.setText("" + body.max_regs);
+ initScopeDepthField.setText("" + body.init_scope_depth);
+ maxScopeDepthField.setText("" + body.max_scope_depth);
+ }
+
+ public boolean save() {
+ if (body != null) {
+ body.init_scope_depth = Integer.parseInt(initScopeDepthField.getText());
+ if(!autoFillCheckBox.isSelected())
+ {
+ body.max_stack = Integer.parseInt(maxStackField.getText());
+ body.max_regs = Integer.parseInt(localCountField.getText());
+ body.max_scope_depth = Integer.parseInt(maxScopeDepthField.getText());
+ }else{
+ if(!body.autoFillStats(Main.abcMainFrame.abc))
+ {
+ JOptionPane.showMessageDialog(null, "Cannot get code stats for automatic body params.\r\nUncheck autofill to avoid this message.","Warning",JOptionPane.WARNING_MESSAGE);
+ }
+ }
+ return true;
+ }
+ return false;
+ }
+
+ public void stateChanged(ChangeEvent e) {
+ if(e.getSource()==autoFillCheckBox){
+ if(autoFillCheckBox.isSelected()){
+ localCountField.setEnabled(false);
+ maxScopeDepthField.setEnabled(false);
+ maxStackField.setEnabled(false);
+ }else{
+ localCountField.setEnabled(true);
+ maxScopeDepthField.setEnabled(true);
+ maxStackField.setEnabled(true);
+ }
+ }
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/MethodCodePanel.java b/trunk/src/com/jpexs/asdec/abc/gui/MethodCodePanel.java
index 6211a130b..97f2c7169 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/MethodCodePanel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/MethodCodePanel.java
@@ -1,80 +1,79 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.gui;
-
-import com.jpexs.asdec.Main;
-import java.awt.BorderLayout;
-import java.awt.FlowLayout;
-import java.awt.event.ActionEvent;
-import java.awt.event.ActionListener;
-import javax.swing.JButton;
-import javax.swing.JPanel;
-import javax.swing.JScrollPane;
-
-/**
- *
- * @author JPEXS
- */
-public class MethodCodePanel extends JPanel implements ActionListener {
- public ASMSourceEditorPane sourceTextArea;
- public JPanel buttonsPanel;
-
- public MethodCodePanel() {
- sourceTextArea = new ASMSourceEditorPane();
-
- setLayout(new BorderLayout());
- add(new JScrollPane(sourceTextArea), BorderLayout.CENTER);
- sourceTextArea.setContentType("text/flasm3");
-
- buttonsPanel = new JPanel();
- buttonsPanel.setLayout(new FlowLayout());
- JButton verifyButton = new JButton("Verify");
- verifyButton.setActionCommand("VERIFYBODY");
- verifyButton.addActionListener(this);
-
- JButton graphButton = new JButton("Graph");
- graphButton.setActionCommand("GRAPH");
- graphButton.addActionListener(this);
-
- JButton execButton = new JButton("Execute");
- execButton.setActionCommand("EXEC");
- execButton.addActionListener(this);
-
- //buttonsPan.add(graphButton);
- // buttonsPanel.add(saveButton);
- // buttonsPan.add(execButton);
-
- //add(buttonsPanel, BorderLayout.SOUTH);
- }
-
- public void actionPerformed(ActionEvent e) {
- if (Main.isWorking()) return;
- if (e.getActionCommand().equals("GRAPH")) {
- sourceTextArea.graph();
- }
-
- if (e.getActionCommand().equals("EXEC")) {
- sourceTextArea.exec();
- }
- if (e.getActionCommand().equals("VERIFYBODY")) {
- sourceTextArea.verify(Main.abcMainFrame.abc.constants, Main.abcMainFrame.abc);
- }
- }
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.gui;
+
+import com.jpexs.asdec.Main;
+import java.awt.BorderLayout;
+import java.awt.FlowLayout;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import javax.swing.JButton;
+import javax.swing.JPanel;
+import javax.swing.JScrollPane;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class MethodCodePanel extends JPanel implements ActionListener {
+ public ASMSourceEditorPane sourceTextArea;
+ public JPanel buttonsPanel;
+
+ public MethodCodePanel() {
+ sourceTextArea = new ASMSourceEditorPane();
+
+ setLayout(new BorderLayout());
+ add(new JScrollPane(sourceTextArea), BorderLayout.CENTER);
+ sourceTextArea.setContentType("text/flasm3");
+
+ buttonsPanel = new JPanel();
+ buttonsPanel.setLayout(new FlowLayout());
+ JButton verifyButton = new JButton("Verify");
+ verifyButton.setActionCommand("VERIFYBODY");
+ verifyButton.addActionListener(this);
+
+ JButton graphButton = new JButton("Graph");
+ graphButton.setActionCommand("GRAPH");
+ graphButton.addActionListener(this);
+
+ JButton execButton = new JButton("Execute");
+ execButton.setActionCommand("EXEC");
+ execButton.addActionListener(this);
+
+ //buttonsPan.add(graphButton);
+ // buttonsPanel.add(saveButton);
+ // buttonsPan.add(execButton);
+
+ //add(buttonsPanel, BorderLayout.SOUTH);
+ }
+
+ public void actionPerformed(ActionEvent e) {
+ if (Main.isWorking()) return;
+ if (e.getActionCommand().equals("GRAPH")) {
+ sourceTextArea.graph();
+ }
+
+ if (e.getActionCommand().equals("EXEC")) {
+ sourceTextArea.exec();
+ }
+ if (e.getActionCommand().equals("VERIFYBODY")) {
+ sourceTextArea.verify(Main.abcMainFrame.abc.constants, Main.abcMainFrame.abc);
+ }
+ }
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/MethodInfoPanel.java b/trunk/src/com/jpexs/asdec/abc/gui/MethodInfoPanel.java
index 2348b61f9..ff07d13fa 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/MethodInfoPanel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/MethodInfoPanel.java
@@ -1,130 +1,129 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.gui;
-
-import com.jpexs.asdec.Main;
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.methodinfo_parser.MethodInfoParser;
-import com.jpexs.asdec.abc.methodinfo_parser.ParseException;
-import com.jpexs.asdec.abc.types.MethodInfo;
-import com.jpexs.asdec.helpers.Helper;
-import java.awt.Dimension;
-import javax.swing.BoxLayout;
-import javax.swing.JEditorPane;
-import javax.swing.JLabel;
-import javax.swing.JOptionPane;
-import javax.swing.JPanel;
-import javax.swing.JScrollPane;
-import jsyntaxpane.syntaxkits.Flasm3MethodInfoSyntaxKit;
-
-/**
- *
- * @author JPEXS
- */
-public class MethodInfoPanel extends JPanel {
- public LineMarkedEditorPane paramEditor;
- public JEditorPane returnTypeEditor;
- private MethodInfo methodInfo;
- private ABC abc;
- public MethodInfoPanel()
- {
- returnTypeEditor=new JEditorPane();
- paramEditor=new LineMarkedEditorPane();
- setLayout(new BoxLayout(this,BoxLayout.PAGE_AXIS));
- add(new JLabel("Parameters:"));
- add(new JScrollPane(paramEditor));
- add(new JLabel("Return value type:"));
- JScrollPane jsp=new JScrollPane(returnTypeEditor);
- add(jsp);
- paramEditor.setContentType("text/flasm3_methodinfo");
- returnTypeEditor.setContentType("text/flasm3_methodinfo");
- jsp.setMaximumSize(new Dimension(1024,25));
- Flasm3MethodInfoSyntaxKit sk=(Flasm3MethodInfoSyntaxKit)returnTypeEditor.getEditorKit();
- sk.deinstallComponent(returnTypeEditor, "jsyntaxpane.components.LineNumbersRuler");
- }
-
- public void load(int methodInfoIndex,ABC abc)
- {
- this.abc=abc;
- if(methodInfoIndex<=0)
- {
- paramEditor.setText("");
- }
- this.methodInfo=abc.method_info[methodInfoIndex];
- int p=0;
- String ret="";
- int optParPos=0;
- if(methodInfo.flagHas_optional())
- {
- optParPos=methodInfo.param_types.length-methodInfo.optional.length;
- }
- for(int ptype:methodInfo.param_types)
- {
- if(p>0){
- ret+=",\n";
- }
- if(methodInfo.flagHas_paramnames()&&Main.PARAM_NAMES_ENABLE)
- {
- ret=ret+abc.constants.constant_string[methodInfo.paramNames[p]];
- }else{
- ret=ret+"param"+(p+1);
- }
- ret+=":";
- if(ptype==0){
- ret+="*";
- }else{
- ret+="m["+ptype+"]\""+Helper.escapeString(abc.constants.constant_multiname[ptype].toString(abc.constants))+"\"";
- }
- if(methodInfo.flagHas_optional())
- {
- if(p>=optParPos)
- {
- ret+="="+methodInfo.optional[p-optParPos].toString(abc.constants);
- }
- }
- p++;
- }
- if(methodInfo.flagNeed_rest()){
- ret+=",\n... rest";
- }
- paramEditor.setText(ret);
- if(methodInfo.ret_type==0){
- returnTypeEditor.setText("*");
- }else{
- returnTypeEditor.setText("m["+methodInfo.ret_type+"]\""+Helper.escapeString(abc.constants.constant_multiname[methodInfo.ret_type].toString(abc.constants))+"\"");
- }
- }
-
- public boolean save()
- {
- try {
- MethodInfoParser.parseParams(paramEditor.getText(), methodInfo, abc);
- } catch (ParseException ex) {
- JOptionPane.showMessageDialog(paramEditor, ex.text, "MethodInfo Params Error", JOptionPane.ERROR_MESSAGE);
- return false;
- }
- try {
- MethodInfoParser.parseReturnType(returnTypeEditor.getText(), methodInfo);
- } catch (ParseException ex) {
- JOptionPane.showMessageDialog(returnTypeEditor, ex.text, "MethodInfo Return type Error", JOptionPane.ERROR_MESSAGE);
- return false;
- }
- return true;
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.gui;
+
+import com.jpexs.asdec.Main;
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.methodinfo_parser.MethodInfoParser;
+import com.jpexs.asdec.abc.methodinfo_parser.ParseException;
+import com.jpexs.asdec.abc.types.MethodInfo;
+import com.jpexs.asdec.helpers.Helper;
+import java.awt.Dimension;
+import javax.swing.BoxLayout;
+import javax.swing.JEditorPane;
+import javax.swing.JLabel;
+import javax.swing.JOptionPane;
+import javax.swing.JPanel;
+import javax.swing.JScrollPane;
+import jsyntaxpane.syntaxkits.Flasm3MethodInfoSyntaxKit;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class MethodInfoPanel extends JPanel {
+ public LineMarkedEditorPane paramEditor;
+ public JEditorPane returnTypeEditor;
+ private MethodInfo methodInfo;
+ private ABC abc;
+ public MethodInfoPanel()
+ {
+ returnTypeEditor=new JEditorPane();
+ paramEditor=new LineMarkedEditorPane();
+ setLayout(new BoxLayout(this,BoxLayout.PAGE_AXIS));
+ add(new JLabel("Parameters:"));
+ add(new JScrollPane(paramEditor));
+ add(new JLabel("Return value type:"));
+ JScrollPane jsp=new JScrollPane(returnTypeEditor);
+ add(jsp);
+ paramEditor.setContentType("text/flasm3_methodinfo");
+ returnTypeEditor.setContentType("text/flasm3_methodinfo");
+ jsp.setMaximumSize(new Dimension(1024,25));
+ Flasm3MethodInfoSyntaxKit sk=(Flasm3MethodInfoSyntaxKit)returnTypeEditor.getEditorKit();
+ sk.deinstallComponent(returnTypeEditor, "jsyntaxpane.components.LineNumbersRuler");
+ }
+
+ public void load(int methodInfoIndex,ABC abc)
+ {
+ this.abc=abc;
+ if(methodInfoIndex<=0)
+ {
+ paramEditor.setText("");
+ }
+ this.methodInfo=abc.method_info[methodInfoIndex];
+ int p=0;
+ String ret="";
+ int optParPos=0;
+ if(methodInfo.flagHas_optional())
+ {
+ optParPos=methodInfo.param_types.length-methodInfo.optional.length;
+ }
+ for(int ptype:methodInfo.param_types)
+ {
+ if(p>0){
+ ret+=",\n";
+ }
+ if(methodInfo.flagHas_paramnames()&&Main.PARAM_NAMES_ENABLE)
+ {
+ ret=ret+abc.constants.constant_string[methodInfo.paramNames[p]];
+ }else{
+ ret=ret+"param"+(p+1);
+ }
+ ret+=":";
+ if(ptype==0){
+ ret+="*";
+ }else{
+ ret+="m["+ptype+"]\""+Helper.escapeString(abc.constants.constant_multiname[ptype].toString(abc.constants))+"\"";
+ }
+ if(methodInfo.flagHas_optional())
+ {
+ if(p>=optParPos)
+ {
+ ret+="="+methodInfo.optional[p-optParPos].toString(abc.constants);
+ }
+ }
+ p++;
+ }
+ if(methodInfo.flagNeed_rest()){
+ ret+=",\n... rest";
+ }
+ paramEditor.setText(ret);
+ if(methodInfo.ret_type==0){
+ returnTypeEditor.setText("*");
+ }else{
+ returnTypeEditor.setText("m["+methodInfo.ret_type+"]\""+Helper.escapeString(abc.constants.constant_multiname[methodInfo.ret_type].toString(abc.constants))+"\"");
+ }
+ }
+
+ public boolean save()
+ {
+ try {
+ MethodInfoParser.parseParams(paramEditor.getText(), methodInfo, abc);
+ } catch (ParseException ex) {
+ JOptionPane.showMessageDialog(paramEditor, ex.text, "MethodInfo Params Error", JOptionPane.ERROR_MESSAGE);
+ return false;
+ }
+ try {
+ MethodInfoParser.parseReturnType(returnTypeEditor.getText(), methodInfo);
+ } catch (ParseException ex) {
+ JOptionPane.showMessageDialog(returnTypeEditor, ex.text, "MethodInfo Return type Error", JOptionPane.ERROR_MESSAGE);
+ return false;
+ }
+ return true;
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/MethodTraitDetailPanel.java b/trunk/src/com/jpexs/asdec/abc/gui/MethodTraitDetailPanel.java
index cd5ec3220..7a24911ee 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/MethodTraitDetailPanel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/MethodTraitDetailPanel.java
@@ -1,60 +1,60 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-package com.jpexs.asdec.abc.gui;
-
-import com.jpexs.asdec.Main;
-import javax.swing.JScrollPane;
-import javax.swing.JTabbedPane;
-
-/**
- *
- * @author JPEXS
- */
-public class MethodTraitDetailPanel extends JTabbedPane implements TraitDetail {
-
- public MethodCodePanel methodCodePanel;
- public MethodBodyParamsPanel methodBodyParamsPanel;
- public MethodInfoPanel methodInfoPanel;
-
- public MethodTraitDetailPanel() {
- methodCodePanel = new MethodCodePanel();
- methodBodyParamsPanel = new MethodBodyParamsPanel();
- methodInfoPanel=new MethodInfoPanel();
- addTab("MethodInfo",methodInfoPanel);
- addTab("MethodBody Code", methodCodePanel);
- addTab("MethodBody params", new JScrollPane(methodBodyParamsPanel));
- setSelectedIndex(1);
- }
-
- public boolean save() {
- if(!methodInfoPanel.save())
- {
- return false;
- }
- if (!methodCodePanel.sourceTextArea.save(Main.abcMainFrame.abc.constants))
- {
- return false;
- }
- if(!methodBodyParamsPanel.save())
- {
- return false;
- }
-
- return true;
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.gui;
+
+import com.jpexs.asdec.Main;
+import javax.swing.JScrollPane;
+import javax.swing.JTabbedPane;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class MethodTraitDetailPanel extends JTabbedPane implements TraitDetail {
+
+ public MethodCodePanel methodCodePanel;
+ public MethodBodyParamsPanel methodBodyParamsPanel;
+ public MethodInfoPanel methodInfoPanel;
+
+ public MethodTraitDetailPanel() {
+ methodCodePanel = new MethodCodePanel();
+ methodBodyParamsPanel = new MethodBodyParamsPanel();
+ methodInfoPanel=new MethodInfoPanel();
+ addTab("MethodInfo",methodInfoPanel);
+ addTab("MethodBody Code", methodCodePanel);
+ addTab("MethodBody params", new JScrollPane(methodBodyParamsPanel));
+ setSelectedIndex(1);
+ }
+
+ public boolean save() {
+ if(!methodInfoPanel.save())
+ {
+ return false;
+ }
+ if (!methodCodePanel.sourceTextArea.save(Main.abcMainFrame.abc.constants))
+ {
+ return false;
+ }
+ if(!methodBodyParamsPanel.save())
+ {
+ return false;
+ }
+
+ return true;
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/SlotConstTraitDetailPanel.java b/trunk/src/com/jpexs/asdec/abc/gui/SlotConstTraitDetailPanel.java
index 2f327aea1..c9a9bd547 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/SlotConstTraitDetailPanel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/SlotConstTraitDetailPanel.java
@@ -1,90 +1,89 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.gui;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.methodinfo_parser.MethodInfoParser;
-import com.jpexs.asdec.abc.methodinfo_parser.ParseException;
-import com.jpexs.asdec.abc.types.ValueKind;
-import com.jpexs.asdec.abc.types.traits.TraitSlotConst;
-import com.jpexs.asdec.helpers.Helper;
-import java.awt.BorderLayout;
-import java.util.logging.Level;
-import java.util.logging.Logger;
-import javax.swing.JEditorPane;
-import javax.swing.JLabel;
-import javax.swing.JOptionPane;
-import javax.swing.JPanel;
-import javax.swing.JScrollPane;
-import jsyntaxpane.syntaxkits.Flasm3MethodInfoSyntaxKit;
-
-/**
- *
- * @author JPEXS
- */
-public class SlotConstTraitDetailPanel extends JPanel implements TraitDetail {
-
- public JEditorPane slotConstEditor;
- private ABC abc;
- private TraitSlotConst trait;
-
- public SlotConstTraitDetailPanel() {
- slotConstEditor=new JEditorPane();
- setLayout(new BorderLayout());
- add(new JLabel("Type and Value:"),BorderLayout.NORTH);
- add(new JScrollPane(slotConstEditor),BorderLayout.CENTER);
- slotConstEditor.setContentType("text/flasm3_methodinfo");
- Flasm3MethodInfoSyntaxKit sk=(Flasm3MethodInfoSyntaxKit)slotConstEditor.getEditorKit();
- sk.deinstallComponent(slotConstEditor, "jsyntaxpane.components.LineNumbersRuler");
- }
-
-
- public void load(TraitSlotConst trait,ABC abc){
- this.abc=abc;
- this.trait=trait;
- String s="";
- String typeStr = "*";
- if (trait.type_index > 0) {
- typeStr = "m["+trait.type_index+"]\""+Helper.escapeString(abc.constants.constant_multiname[trait.type_index].toString(abc.constants))+"\"";
- }else{
- typeStr = "*";
- }
- String valueStr = "";
- if (trait.value_kind != 0) {
- valueStr = " = " + (new ValueKind(trait.value_index, trait.value_kind)).toString(abc.constants);
- }
-
- s=typeStr + valueStr;
-
- slotConstEditor.setText(s);
- }
-
- public boolean save() {
- try {
- if(!MethodInfoParser.parseSlotConst(slotConstEditor.getText(), trait, abc)){
- return false;
- }
- } catch (ParseException ex) {
- JOptionPane.showMessageDialog(slotConstEditor, ex.text, "SlotConst typevalue Error", JOptionPane.ERROR_MESSAGE);
- return false;
- }
- return true;
- }
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.gui;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.methodinfo_parser.MethodInfoParser;
+import com.jpexs.asdec.abc.methodinfo_parser.ParseException;
+import com.jpexs.asdec.abc.types.ValueKind;
+import com.jpexs.asdec.abc.types.traits.TraitSlotConst;
+import com.jpexs.asdec.helpers.Helper;
+import java.awt.BorderLayout;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+import javax.swing.JEditorPane;
+import javax.swing.JLabel;
+import javax.swing.JOptionPane;
+import javax.swing.JPanel;
+import javax.swing.JScrollPane;
+import jsyntaxpane.syntaxkits.Flasm3MethodInfoSyntaxKit;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class SlotConstTraitDetailPanel extends JPanel implements TraitDetail {
+
+ public JEditorPane slotConstEditor;
+ private ABC abc;
+ private TraitSlotConst trait;
+
+ public SlotConstTraitDetailPanel() {
+ slotConstEditor=new JEditorPane();
+ setLayout(new BorderLayout());
+ add(new JLabel("Type and Value:"),BorderLayout.NORTH);
+ add(new JScrollPane(slotConstEditor),BorderLayout.CENTER);
+ slotConstEditor.setContentType("text/flasm3_methodinfo");
+ Flasm3MethodInfoSyntaxKit sk=(Flasm3MethodInfoSyntaxKit)slotConstEditor.getEditorKit();
+ sk.deinstallComponent(slotConstEditor, "jsyntaxpane.components.LineNumbersRuler");
+ }
+
+
+ public void load(TraitSlotConst trait,ABC abc){
+ this.abc=abc;
+ this.trait=trait;
+ String s="";
+ String typeStr = "*";
+ if (trait.type_index > 0) {
+ typeStr = "m["+trait.type_index+"]\""+Helper.escapeString(abc.constants.constant_multiname[trait.type_index].toString(abc.constants))+"\"";
+ }else{
+ typeStr = "*";
+ }
+ String valueStr = "";
+ if (trait.value_kind != 0) {
+ valueStr = " = " + (new ValueKind(trait.value_index, trait.value_kind)).toString(abc.constants);
+ }
+
+ s=typeStr + valueStr;
+
+ slotConstEditor.setText(s);
+ }
+
+ public boolean save() {
+ try {
+ if(!MethodInfoParser.parseSlotConst(slotConstEditor.getText(), trait, abc)){
+ return false;
+ }
+ } catch (ParseException ex) {
+ JOptionPane.showMessageDialog(slotConstEditor, ex.text, "SlotConst typevalue Error", JOptionPane.ERROR_MESSAGE);
+ return false;
+ }
+ return true;
+ }
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/TraitDetail.java b/trunk/src/com/jpexs/asdec/abc/gui/TraitDetail.java
index 589501189..d749a871f 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/TraitDetail.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/TraitDetail.java
@@ -1,27 +1,26 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.gui;
-
-/**
- *
- * @author JPEXS
- */
-public interface TraitDetail {
- public boolean save();
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.gui;
+
+/**
+ *
+ * @author JPEXS
+ */
+public interface TraitDetail {
+ public boolean save();
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/TraitsList.java b/trunk/src/com/jpexs/asdec/abc/gui/TraitsList.java
index 58343dcaa..ea04def97 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/TraitsList.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/TraitsList.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/TraitsListModel.java b/trunk/src/com/jpexs/asdec/abc/gui/TraitsListModel.java
index 5fdd71f22..7efa3dc7e 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/TraitsListModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/TraitsListModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/Tree.java b/trunk/src/com/jpexs/asdec/abc/gui/Tree.java
index 2b8363eae..5882702b4 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/Tree.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/Tree.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2011 Paolo Cancedda
*
- * 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,9 +12,9 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
+
package com.jpexs.asdec.abc.gui;
import java.util.StringTokenizer;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/TreeElement.java b/trunk/src/com/jpexs/asdec/abc/gui/TreeElement.java
index bc385d435..2f140539a 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/TreeElement.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/TreeElement.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,9 +12,9 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
+
package com.jpexs.asdec.abc.gui;
import java.util.*;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/TreeVisitor.java b/trunk/src/com/jpexs/asdec/abc/gui/TreeVisitor.java
index a61dd2f9f..0574141d5 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/TreeVisitor.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/TreeVisitor.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2011 Paolo Cancedda
*
- * 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,9 +12,9 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
+
package com.jpexs.asdec.abc.gui;
public interface TreeVisitor {
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/UsageFrame.java b/trunk/src/com/jpexs/asdec/abc/gui/UsageFrame.java
index b36c3708a..0345e5074 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/UsageFrame.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/UsageFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,9 +12,9 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
+
package com.jpexs.asdec.abc.gui;
import com.jpexs.asdec.Main;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/UsageListModel.java b/trunk/src/com/jpexs/asdec/abc/gui/UsageListModel.java
index ff4b7894f..4b90f66f9 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/UsageListModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/UsageListModel.java
@@ -1,53 +1,52 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.gui;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.usages.MultinameUsage;
-import javax.swing.DefaultListModel;
-
-/**
- *
- * @author JPEXS
- */
-public class UsageListModel extends DefaultListModel{
-
- private ABC abc;
- public UsageListModel(ABC abc){
- this.abc=abc;
- }
- @Override
- public Object get(int index) {
- return ((MultinameUsage)super.get(index)).toString(abc);
- }
-
- @Override
- public Object getElementAt(int index) {
- return ((MultinameUsage)super.getElementAt(index)).toString(abc);
- }
-
- public MultinameUsage getUsage(int index){
- return ((MultinameUsage)super.getElementAt(index));
- }
-
-
-
-
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.gui;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.usages.MultinameUsage;
+import javax.swing.DefaultListModel;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class UsageListModel extends DefaultListModel{
+
+ private ABC abc;
+ public UsageListModel(ABC abc){
+ this.abc=abc;
+ }
+ @Override
+ public Object get(int index) {
+ return ((MultinameUsage)super.get(index)).toString(abc);
+ }
+
+ @Override
+ public Object getElementAt(int index) {
+ return ((MultinameUsage)super.getElementAt(index)).toString(abc);
+ }
+
+ public MultinameUsage getUsage(int index){
+ return ((MultinameUsage)super.getElementAt(index));
+ }
+
+
+
+
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/DecimalTableModel.java b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/DecimalTableModel.java
index 4bb6c6fea..66c3aaec2 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/DecimalTableModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/DecimalTableModel.java
@@ -1,147 +1,146 @@
-/*
- * Copyright (C) 2010-2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.gui.tablemodels;
-
-import com.jpexs.asdec.abc.ABC;
-
-import javax.swing.event.TableModelListener;
-import javax.swing.table.TableModel;
-
-public class DecimalTableModel implements TableModel {
- private ABC abc;
- private static final String columnNames[] = new String[]{"Index", "Value"};
- private static final Class classes[] = new Class[]{Long.class, String.class};
-
- public DecimalTableModel(ABC abc) {
- this.abc = abc;
- }
-
- /**
- * Returns the number of rows in the model. A
- * JTable uses this method to determine how many rows it
- * should display. This method should be quick, as it
- * is called frequently during rendering.
- *
- * @return the number of rows in the model
- * @see #getColumnCount
- */
- public int getRowCount() {
- return abc.constants.constant_decimal.length;
- }
-
- /**
- * Returns the number of columns in the model. A
- * JTable uses this method to determine how many columns it
- * should create and display by default.
- *
- * @return the number of columns in the model
- * @see #getRowCount
- */
- public int getColumnCount() {
- return 2;
- }
-
- /**
- * Returns the name of the column at columnIndex. This is used
- * to initialize the table's column header name. Note: this name does
- * not need to be unique; two columns in a table can have the same name.
- *
- * @param columnIndex the index of the column
- * @return the name of the column
- */
- public String getColumnName(int columnIndex) {
- return columnNames[columnIndex];
- }
-
- /**
- * Returns the most specific superclass for all the cell values
- * in the column. This is used by the JTable to set up a
- * default renderer and editor for the column.
- *
- * @param columnIndex the index of the column
- * @return the common ancestor class of the object values in the model.
- */
- public Class> getColumnClass(int columnIndex) {
- return classes[columnIndex];
- }
-
- /**
- * Returns true if the cell at rowIndex and
- * columnIndex
- * is editable. Otherwise, setValueAt on the cell will not
- * change the value of that cell.
- *
- * @param rowIndex the row whose value to be queried
- * @param columnIndex the column whose value to be queried
- * @return true if the cell is editable
- * @see #setValueAt
- */
- public boolean isCellEditable(int rowIndex, int columnIndex) {
- return false;
- }
-
- /**
- * Returns the value for the cell at columnIndex and
- * rowIndex.
- *
- * @param rowIndex the row whose value is to be queried
- * @param columnIndex the column whose value is to be queried
- * @return the value Object at the specified cell
- */
- public Object getValueAt(int rowIndex, int columnIndex) {
- if (columnIndex == 0) return rowIndex;
- else {
- return abc.constants.constant_decimal[rowIndex];
- }
- }
-
- /**
- * Sets the value in the cell at columnIndex and
- * rowIndex to aValue.
- *
- * @param aValue the new value
- * @param rowIndex the row whose value is to be changed
- * @param columnIndex the column whose value is to be changed
- * @see #getValueAt
- * @see #isCellEditable
- */
- public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
-
- }
-
- /**
- * Adds a listener to the list that is notified each time a change
- * to the data model occurs.
- *
- * @param l the TableModelListener
- */
- public void addTableModelListener(TableModelListener l) {
-
- }
-
- /**
- * Removes a listener from the list that is notified each time a
- * change to the data model occurs.
- *
- * @param l the TableModelListener
- */
- public void removeTableModelListener(TableModelListener l) {
-
- }
-}
+/*
+ * Copyright (C) 2010-2011 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 .
+ */
+
+package com.jpexs.asdec.abc.gui.tablemodels;
+
+import com.jpexs.asdec.abc.ABC;
+
+import javax.swing.event.TableModelListener;
+import javax.swing.table.TableModel;
+
+public class DecimalTableModel implements TableModel {
+ private ABC abc;
+ private static final String columnNames[] = new String[]{"Index", "Value"};
+ private static final Class classes[] = new Class[]{Long.class, String.class};
+
+ public DecimalTableModel(ABC abc) {
+ this.abc = abc;
+ }
+
+ /**
+ * Returns the number of rows in the model. A
+ * JTable uses this method to determine how many rows it
+ * should display. This method should be quick, as it
+ * is called frequently during rendering.
+ *
+ * @return the number of rows in the model
+ * @see #getColumnCount
+ */
+ public int getRowCount() {
+ return abc.constants.constant_decimal.length;
+ }
+
+ /**
+ * Returns the number of columns in the model. A
+ * JTable uses this method to determine how many columns it
+ * should create and display by default.
+ *
+ * @return the number of columns in the model
+ * @see #getRowCount
+ */
+ public int getColumnCount() {
+ return 2;
+ }
+
+ /**
+ * Returns the name of the column at columnIndex. This is used
+ * to initialize the table's column header name. Note: this name does
+ * not need to be unique; two columns in a table can have the same name.
+ *
+ * @param columnIndex the index of the column
+ * @return the name of the column
+ */
+ public String getColumnName(int columnIndex) {
+ return columnNames[columnIndex];
+ }
+
+ /**
+ * Returns the most specific superclass for all the cell values
+ * in the column. This is used by the JTable to set up a
+ * default renderer and editor for the column.
+ *
+ * @param columnIndex the index of the column
+ * @return the common ancestor class of the object values in the model.
+ */
+ public Class> getColumnClass(int columnIndex) {
+ return classes[columnIndex];
+ }
+
+ /**
+ * Returns true if the cell at rowIndex and
+ * columnIndex
+ * is editable. Otherwise, setValueAt on the cell will not
+ * change the value of that cell.
+ *
+ * @param rowIndex the row whose value to be queried
+ * @param columnIndex the column whose value to be queried
+ * @return true if the cell is editable
+ * @see #setValueAt
+ */
+ public boolean isCellEditable(int rowIndex, int columnIndex) {
+ return false;
+ }
+
+ /**
+ * Returns the value for the cell at columnIndex and
+ * rowIndex.
+ *
+ * @param rowIndex the row whose value is to be queried
+ * @param columnIndex the column whose value is to be queried
+ * @return the value Object at the specified cell
+ */
+ public Object getValueAt(int rowIndex, int columnIndex) {
+ if (columnIndex == 0) return rowIndex;
+ else {
+ return abc.constants.constant_decimal[rowIndex];
+ }
+ }
+
+ /**
+ * Sets the value in the cell at columnIndex and
+ * rowIndex to aValue.
+ *
+ * @param aValue the new value
+ * @param rowIndex the row whose value is to be changed
+ * @param columnIndex the column whose value is to be changed
+ * @see #getValueAt
+ * @see #isCellEditable
+ */
+ public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
+
+ }
+
+ /**
+ * Adds a listener to the list that is notified each time a change
+ * to the data model occurs.
+ *
+ * @param l the TableModelListener
+ */
+ public void addTableModelListener(TableModelListener l) {
+
+ }
+
+ /**
+ * Removes a listener from the list that is notified each time a
+ * change to the data model occurs.
+ *
+ * @param l the TableModelListener
+ */
+ public void removeTableModelListener(TableModelListener l) {
+
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/DoubleTableModel.java b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/DoubleTableModel.java
index 30d6920d6..a875e8459 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/DoubleTableModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/DoubleTableModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui.tablemodels;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/IntTableModel.java b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/IntTableModel.java
index d51de7387..3d4469133 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/IntTableModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/IntTableModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui.tablemodels;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/MultinameTableModel.java b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/MultinameTableModel.java
index 6395b696f..12def5802 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/MultinameTableModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/MultinameTableModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui.tablemodels;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/NamespaceSetTableModel.java b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/NamespaceSetTableModel.java
index efb8faec3..805329c4e 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/NamespaceSetTableModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/NamespaceSetTableModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui.tablemodels;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/NamespaceTableModel.java b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/NamespaceTableModel.java
index c5cf60940..51dae57e8 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/NamespaceTableModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/NamespaceTableModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui.tablemodels;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/StringTableModel.java b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/StringTableModel.java
index 64bab6a8d..70eabbb98 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/StringTableModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/StringTableModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui.tablemodels;
diff --git a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/UIntTableModel.java b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/UIntTableModel.java
index cf9736cb0..cbb24bec5 100644
--- a/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/UIntTableModel.java
+++ b/trunk/src/com/jpexs/asdec/abc/gui/tablemodels/UIntTableModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.gui.tablemodels;
diff --git a/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/MethodInfoLexer.java b/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/MethodInfoLexer.java
index d44941d1b..41abf8ada 100644
--- a/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/MethodInfoLexer.java
+++ b/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/MethodInfoLexer.java
@@ -1,9 +1,22 @@
-/* The following code was generated by JFlex 1.4.3 on 11.7.11 15:46 */
+/*
+ * Copyright (C) 2010-2011 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 .
+ */
+
+package com.jpexs.asdec.abc.methodinfo_parser;
-/* Method info lexer specification */
-
-package com.jpexs.asdec.abc.methodinfo_parser;
-
/**
* This class is a scanner generated by
@@ -489,28 +502,28 @@ public final class MethodInfoLexer {
private boolean zzEOFDone;
/* user code: */
-
- StringBuffer string = new StringBuffer();
- boolean isMultiname=false;
- long multinameId=0;
-
-
- /**
- * Create an empty lexer, yyrset will be called later to reset and assign
- * the reader
- */
- public MethodInfoLexer() {
-
- }
-
- public int yychar() {
- return yychar;
- }
-
- public int yyline() {
- return yyline+1;
- }
-
+
+ StringBuffer string = new StringBuffer();
+ boolean isMultiname=false;
+ long multinameId=0;
+
+
+ /**
+ * Create an empty lexer, yyrset will be called later to reset and assign
+ * the reader
+ */
+ public MethodInfoLexer() {
+
+ }
+
+ public int yychar() {
+ return yychar;
+ }
+
+ public int yyline() {
+ return yyline+1;
+ }
+
/**
@@ -900,7 +913,7 @@ public final class MethodInfoLexer {
}
case 44: break;
case 14:
- { char val = (char) Integer.parseInt(yytext().substring(1),8);
+ { char val = (char) Integer.parseInt(yytext().substring(1),8);
string.append( val );
}
case 45: break;
@@ -925,8 +938,8 @@ public final class MethodInfoLexer {
}
case 50: break;
case 35:
- { String s=yytext();
- long ns=Long.parseLong(s.substring(3,s.length()-2));
+ { String s=yytext();
+ long ns=Long.parseLong(s.substring(3,s.length()-2));
return new ParsedSymbol(ParsedSymbol.TYPE_NAMESPACE,new Long(ns));
}
case 51: break;
@@ -935,12 +948,12 @@ public final class MethodInfoLexer {
}
case 52: break;
case 11:
- { yybegin(YYINITIAL);
- // length also includes the trailing quote
- if(isMultiname){
- return new ParsedSymbol(ParsedSymbol.TYPE_MULTINAME,new Long(multinameId));
- }else{
- return new ParsedSymbol(ParsedSymbol.TYPE_STRING,string.toString());
+ { yybegin(YYINITIAL);
+ // length also includes the trailing quote
+ if(isMultiname){
+ return new ParsedSymbol(ParsedSymbol.TYPE_MULTINAME,new Long(multinameId));
+ }else{
+ return new ParsedSymbol(ParsedSymbol.TYPE_STRING,string.toString());
}
}
case 53: break;
@@ -953,8 +966,8 @@ public final class MethodInfoLexer {
}
case 55: break;
case 4:
- { isMultiname=false;
- yybegin(STRING);
+ { isMultiname=false;
+ yybegin(STRING);
string.setLength(0);
}
case 56: break;
@@ -995,10 +1008,10 @@ public final class MethodInfoLexer {
}
case 65: break;
case 26:
- { isMultiname=true;
- String s=yytext();
- multinameId=Long.parseLong(s.substring(2,s.length()-2));
- yybegin(STRING);
+ { isMultiname=true;
+ String s=yytext();
+ multinameId=Long.parseLong(s.substring(2,s.length()-2));
+ yybegin(STRING);
string.setLength(0);
}
case 66: break;
diff --git a/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/MethodInfoParser.java b/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/MethodInfoParser.java
index f5ede1010..c628a381f 100644
--- a/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/MethodInfoParser.java
+++ b/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/MethodInfoParser.java
@@ -1,346 +1,346 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-package com.jpexs.asdec.abc.methodinfo_parser;
-
-import com.jpexs.asdec.Main;
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.types.MethodInfo;
-import com.jpexs.asdec.abc.types.ValueKind;
-import com.jpexs.asdec.abc.types.traits.TraitSlotConst;
-import java.io.ByteArrayInputStream;
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.List;
-
-/**
- *
- * @author JPEXS
- */
-public class MethodInfoParser {
-
- public static boolean parseSlotConst(String text,TraitSlotConst trait,ABC abc) throws ParseException{
- MethodInfoLexer lexer = new MethodInfoLexer(new ByteArrayInputStream(text.getBytes()));
- ParsedSymbol symb;
- int type_index=-1;
- ValueKind value=new ValueKind(0,0);
- try{
- ParsedSymbol symbType=lexer.yylex();
- if(symbType.type==ParsedSymbol.TYPE_STAR)
- {
- type_index=0;
- }else if(symbType.type==ParsedSymbol.TYPE_MULTINAME){
- type_index=(int)(long)(Long)symbType.value;
- }else{
- throw new ParseException("Multiname or * expected", lexer.yyline());
- }
- ParsedSymbol symbEqual=lexer.yylex();
- if(symbEqual.type==ParsedSymbol.TYPE_ASSIGN)
- {
- ParsedSymbol symbValue;
- String nstype="";
- do{
- symbValue=lexer.yylex();
- if(symbValue.type>=8&&symbValue.type<=13){
- nstype=nstype+symbValue.type+":";
- }
- }while(symbValue.type>=8&&symbValue.type<=13);
- if((!nstype.equals(""))&&(symbValue.type!=ParsedSymbol.TYPE_NAMESPACE))
- {
- throw new ParseException("Namespace expected", lexer.yyline());
- }
- int id=0;
- switch(symbValue.type)
- {
- case ParsedSymbol.TYPE_INTEGER:
- value=new ValueKind(abc.constants.forceGetIntId((Long)symbValue.value),ValueKind.CONSTANT_Int);
- break;
- case ParsedSymbol.TYPE_FLOAT:
- value=new ValueKind(abc.constants.forceGetDoubleId((Double)symbValue.value),ValueKind.CONSTANT_Double);
- break;
- case ParsedSymbol.TYPE_STRING:
- value=new ValueKind(abc.constants.forceGetStringId((String)symbValue.value),ValueKind.CONSTANT_Utf8);
- break;
- case ParsedSymbol.TYPE_TRUE:
- value=new ValueKind(0,ValueKind.CONSTANT_True);
- break;
- case ParsedSymbol.TYPE_FALSE:
- value=new ValueKind(0,ValueKind.CONSTANT_False);
- break;
- case ParsedSymbol.TYPE_NULL:
- value=new ValueKind(0,ValueKind.CONSTANT_Null);
- break;
- case ParsedSymbol.TYPE_UNDEFINED:
- value=new ValueKind(0,ValueKind.CONSTANT_Undefined);
- break;
- case ParsedSymbol.TYPE_NAMESPACE:
- if(nstype.equals("9:")){
- value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PackageNamespace);
- }else
- if(nstype.equals("9:10:")){
- value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PackageInternalNs);
- }else
- if(nstype.equals("13:")){
- value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_ProtectedNamespace);
- }else
- if(nstype.equals("12:")){
- value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_ExplicitNamespace);
- }else
- if(nstype.equals("11:13:")){
- value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_StaticProtectedNs);
- }else
- if(nstype.equals("8:")){
- value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PrivateNs);
- }else if(nstype.equals("")){
- value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_Namespace);
- }else{
- throw new ParseException("Invalid type of namespace", lexer.yyline());
- }
- break;
- default:
- throw new ParseException("Unexpected symbol", lexer.yyline());
- }
- symb=lexer.yylex();
- if(symb.type!=ParsedSymbol.TYPE_EOF){
- throw new ParseException("Unexpected symbol", lexer.yyline());
- }
- }else if(symbEqual.type==ParsedSymbol.TYPE_EOF){
-
- } else {
- throw new ParseException("Unexpected symbol", lexer.yyline());
- }
- }catch(IOException ex)
- {
- return false;
- }
- trait.type_index=type_index;
- trait.value_kind=value.value_kind;
- trait.value_index=value.value_index;
- return true;
- }
- public static boolean parseReturnType(String text, MethodInfo update) throws ParseException {
- MethodInfoLexer lexer = new MethodInfoLexer(new ByteArrayInputStream(text.getBytes()));
- ParsedSymbol symb;
- int type=-1;
- try {
- symb = lexer.yylex();
- if(symb.type==ParsedSymbol.TYPE_STAR)
- {
- type=0;
- }else if(symb.type==ParsedSymbol.TYPE_MULTINAME){
- type=(int)(long)(Long)symb.value;
- }else{
- throw new ParseException("Multiname or * expected", lexer.yyline());
- }
- symb = lexer.yylex();
- if(symb.type!=ParsedSymbol.TYPE_EOF)
- {
- throw new ParseException("Only one return type allowed", lexer.yyline());
- }
- update.ret_type=type;
- return true;
- } catch (IOException ex) {
-
- }
- return false;
- }
- public static boolean parseParams(String text, MethodInfo update,ABC abc) throws ParseException {
- MethodInfoLexer lexer = new MethodInfoLexer(new ByteArrayInputStream(text.getBytes()));
- List paramNames=new ArrayList();
- List paramTypes=new ArrayList();
- List optionalValues=new ArrayList();
- boolean hasOptional=false;
- boolean needsRest=false;
- try {
- ParsedSymbol symb;
- symb = lexer.yylex();
- while (symb.type != ParsedSymbol.TYPE_EOF)
- {
- if(symb.type==ParsedSymbol.TYPE_DOTS)
- {
- needsRest=true;
- symb = lexer.yylex();
- if(symb.type!=ParsedSymbol.TYPE_IDENTIFIER)
- {
- throw new ParseException("Identifier expected", lexer.yyline());
- }
- symb = lexer.yylex();
- if(symb.type!=ParsedSymbol.TYPE_EOF)
- {
- throw new ParseException("End expected after rest params", lexer.yyline());
- }
- break;
- }
-
- if(symb.type!=ParsedSymbol.TYPE_IDENTIFIER)
- {
- throw new ParseException("Identifier expected", lexer.yyline());
- }
- paramNames.add((String)symb.value);
- symb = lexer.yylex();
- if(symb.type==ParsedSymbol.TYPE_COLON){
- ParsedSymbol symbType=lexer.yylex();
- if(symbType.type==ParsedSymbol.TYPE_STAR)
- {
- paramTypes.add(new Long(0));
- }else if(symbType.type==ParsedSymbol.TYPE_MULTINAME){
- paramTypes.add((Long)symbType.value);
- }else{
- throw new ParseException("Multiname or * expected", lexer.yyline());
- }
- ParsedSymbol symbEqual=lexer.yylex();
- if(symbEqual.type==ParsedSymbol.TYPE_ASSIGN)
- {
- hasOptional=true;
- ParsedSymbol symbValue;
- String nstype="";
- do{
- symbValue=lexer.yylex();
- if(symbValue.type>=8&&symbValue.type<=13){
- nstype=nstype+symbValue.type+":";
- }
- }while(symbValue.type>=8&&symbValue.type<=13);
- if((!nstype.equals(""))&&(symbValue.type!=ParsedSymbol.TYPE_NAMESPACE))
- {
- throw new ParseException("Namespace expected", lexer.yyline());
- }
- int id=0;
- switch(symbValue.type)
- {
- case ParsedSymbol.TYPE_INTEGER:
- optionalValues.add(new ValueKind(abc.constants.forceGetIntId((Long)symbValue.value),ValueKind.CONSTANT_Int));
- break;
- case ParsedSymbol.TYPE_FLOAT:
- optionalValues.add(new ValueKind(abc.constants.forceGetDoubleId((Double)symbValue.value),ValueKind.CONSTANT_Double));
- break;
- case ParsedSymbol.TYPE_STRING:
- optionalValues.add(new ValueKind(abc.constants.forceGetStringId((String)symbValue.value),ValueKind.CONSTANT_Utf8));
- break;
- case ParsedSymbol.TYPE_TRUE:
- optionalValues.add(new ValueKind(0,ValueKind.CONSTANT_True));
- break;
- case ParsedSymbol.TYPE_FALSE:
- optionalValues.add(new ValueKind(0,ValueKind.CONSTANT_False));
- break;
- case ParsedSymbol.TYPE_NULL:
- optionalValues.add(new ValueKind(0,ValueKind.CONSTANT_Null));
- break;
- case ParsedSymbol.TYPE_UNDEFINED:
- optionalValues.add(new ValueKind(0,ValueKind.CONSTANT_Undefined));
- break;
- case ParsedSymbol.TYPE_NAMESPACE:
- if(nstype.equals("9:")){
- optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PackageNamespace));
- }else
- if(nstype.equals("9:10:")){
- optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PackageInternalNs));
- }else
- if(nstype.equals("13:")){
- optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_ProtectedNamespace));
- }else
- if(nstype.equals("12:")){
- optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_ExplicitNamespace));
- }else
- if(nstype.equals("11:13:")){
- optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_StaticProtectedNs));
- }else
- if(nstype.equals("8:")){
- optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PrivateNs));
- }else if(nstype.equals("")){
- optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_Namespace));
- }else{
- throw new ParseException("Invalid type of namespace", lexer.yyline());
- }
- break;
- default:
- throw new ParseException("Unexpected symbol", lexer.yyline());
- }
- symb=lexer.yylex();
- if(symb.type==ParsedSymbol.TYPE_COMMA){
-
- }else if(symb.type==ParsedSymbol.TYPE_EOF){
- break;
- }
- }else if(symbEqual.type==ParsedSymbol.TYPE_COMMA){
- if(hasOptional)
- {
- throw new ParseException("Parameter must have default value", lexer.yyline());
- }
- }else if(symbEqual.type==ParsedSymbol.TYPE_EOF){
- if(hasOptional)
- {
- throw new ParseException("Parameter must have default value", lexer.yyline());
- }
- break;
- } else {
- throw new ParseException("Unexpected symbol", lexer.yyline());
- }
- }else if(symb.type==ParsedSymbol.TYPE_COMMA){
-
- }else if(symb.type==ParsedSymbol.TYPE_EOF){
- break;
- }else{
- throw new ParseException("Unexpected symbol", lexer.yyline());
- }
- symb = lexer.yylex();
- }
- } catch (IOException iex) {
- return false;
- }
-
- if(needsRest&&(!optionalValues.isEmpty())){
- throw new ParseException("Rest parameter canot be combined with default values", lexer.yyline());
- }
-
- update.param_types=new int[paramTypes.size()];
- for(int p=0;p.
+ */
+
+package com.jpexs.asdec.abc.methodinfo_parser;
+
+import com.jpexs.asdec.Main;
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.types.MethodInfo;
+import com.jpexs.asdec.abc.types.ValueKind;
+import com.jpexs.asdec.abc.types.traits.TraitSlotConst;
+import java.io.ByteArrayInputStream;
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class MethodInfoParser {
+
+ public static boolean parseSlotConst(String text,TraitSlotConst trait,ABC abc) throws ParseException{
+ MethodInfoLexer lexer = new MethodInfoLexer(new ByteArrayInputStream(text.getBytes()));
+ ParsedSymbol symb;
+ int type_index=-1;
+ ValueKind value=new ValueKind(0,0);
+ try{
+ ParsedSymbol symbType=lexer.yylex();
+ if(symbType.type==ParsedSymbol.TYPE_STAR)
+ {
+ type_index=0;
+ }else if(symbType.type==ParsedSymbol.TYPE_MULTINAME){
+ type_index=(int)(long)(Long)symbType.value;
+ }else{
+ throw new ParseException("Multiname or * expected", lexer.yyline());
+ }
+ ParsedSymbol symbEqual=lexer.yylex();
+ if(symbEqual.type==ParsedSymbol.TYPE_ASSIGN)
+ {
+ ParsedSymbol symbValue;
+ String nstype="";
+ do{
+ symbValue=lexer.yylex();
+ if(symbValue.type>=8&&symbValue.type<=13){
+ nstype=nstype+symbValue.type+":";
+ }
+ }while(symbValue.type>=8&&symbValue.type<=13);
+ if((!nstype.equals(""))&&(symbValue.type!=ParsedSymbol.TYPE_NAMESPACE))
+ {
+ throw new ParseException("Namespace expected", lexer.yyline());
+ }
+ int id=0;
+ switch(symbValue.type)
+ {
+ case ParsedSymbol.TYPE_INTEGER:
+ value=new ValueKind(abc.constants.forceGetIntId((Long)symbValue.value),ValueKind.CONSTANT_Int);
+ break;
+ case ParsedSymbol.TYPE_FLOAT:
+ value=new ValueKind(abc.constants.forceGetDoubleId((Double)symbValue.value),ValueKind.CONSTANT_Double);
+ break;
+ case ParsedSymbol.TYPE_STRING:
+ value=new ValueKind(abc.constants.forceGetStringId((String)symbValue.value),ValueKind.CONSTANT_Utf8);
+ break;
+ case ParsedSymbol.TYPE_TRUE:
+ value=new ValueKind(0,ValueKind.CONSTANT_True);
+ break;
+ case ParsedSymbol.TYPE_FALSE:
+ value=new ValueKind(0,ValueKind.CONSTANT_False);
+ break;
+ case ParsedSymbol.TYPE_NULL:
+ value=new ValueKind(0,ValueKind.CONSTANT_Null);
+ break;
+ case ParsedSymbol.TYPE_UNDEFINED:
+ value=new ValueKind(0,ValueKind.CONSTANT_Undefined);
+ break;
+ case ParsedSymbol.TYPE_NAMESPACE:
+ if(nstype.equals("9:")){
+ value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PackageNamespace);
+ }else
+ if(nstype.equals("9:10:")){
+ value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PackageInternalNs);
+ }else
+ if(nstype.equals("13:")){
+ value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_ProtectedNamespace);
+ }else
+ if(nstype.equals("12:")){
+ value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_ExplicitNamespace);
+ }else
+ if(nstype.equals("11:13:")){
+ value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_StaticProtectedNs);
+ }else
+ if(nstype.equals("8:")){
+ value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PrivateNs);
+ }else if(nstype.equals("")){
+ value=new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_Namespace);
+ }else{
+ throw new ParseException("Invalid type of namespace", lexer.yyline());
+ }
+ break;
+ default:
+ throw new ParseException("Unexpected symbol", lexer.yyline());
+ }
+ symb=lexer.yylex();
+ if(symb.type!=ParsedSymbol.TYPE_EOF){
+ throw new ParseException("Unexpected symbol", lexer.yyline());
+ }
+ }else if(symbEqual.type==ParsedSymbol.TYPE_EOF){
+
+ } else {
+ throw new ParseException("Unexpected symbol", lexer.yyline());
+ }
+ }catch(IOException ex)
+ {
+ return false;
+ }
+ trait.type_index=type_index;
+ trait.value_kind=value.value_kind;
+ trait.value_index=value.value_index;
+ return true;
+ }
+ public static boolean parseReturnType(String text, MethodInfo update) throws ParseException {
+ MethodInfoLexer lexer = new MethodInfoLexer(new ByteArrayInputStream(text.getBytes()));
+ ParsedSymbol symb;
+ int type=-1;
+ try {
+ symb = lexer.yylex();
+ if(symb.type==ParsedSymbol.TYPE_STAR)
+ {
+ type=0;
+ }else if(symb.type==ParsedSymbol.TYPE_MULTINAME){
+ type=(int)(long)(Long)symb.value;
+ }else{
+ throw new ParseException("Multiname or * expected", lexer.yyline());
+ }
+ symb = lexer.yylex();
+ if(symb.type!=ParsedSymbol.TYPE_EOF)
+ {
+ throw new ParseException("Only one return type allowed", lexer.yyline());
+ }
+ update.ret_type=type;
+ return true;
+ } catch (IOException ex) {
+
+ }
+ return false;
+ }
+ public static boolean parseParams(String text, MethodInfo update,ABC abc) throws ParseException {
+ MethodInfoLexer lexer = new MethodInfoLexer(new ByteArrayInputStream(text.getBytes()));
+ List paramNames=new ArrayList();
+ List paramTypes=new ArrayList();
+ List optionalValues=new ArrayList();
+ boolean hasOptional=false;
+ boolean needsRest=false;
+ try {
+ ParsedSymbol symb;
+ symb = lexer.yylex();
+ while (symb.type != ParsedSymbol.TYPE_EOF)
+ {
+ if(symb.type==ParsedSymbol.TYPE_DOTS)
+ {
+ needsRest=true;
+ symb = lexer.yylex();
+ if(symb.type!=ParsedSymbol.TYPE_IDENTIFIER)
+ {
+ throw new ParseException("Identifier expected", lexer.yyline());
+ }
+ symb = lexer.yylex();
+ if(symb.type!=ParsedSymbol.TYPE_EOF)
+ {
+ throw new ParseException("End expected after rest params", lexer.yyline());
+ }
+ break;
+ }
+
+ if(symb.type!=ParsedSymbol.TYPE_IDENTIFIER)
+ {
+ throw new ParseException("Identifier expected", lexer.yyline());
+ }
+ paramNames.add((String)symb.value);
+ symb = lexer.yylex();
+ if(symb.type==ParsedSymbol.TYPE_COLON){
+ ParsedSymbol symbType=lexer.yylex();
+ if(symbType.type==ParsedSymbol.TYPE_STAR)
+ {
+ paramTypes.add(new Long(0));
+ }else if(symbType.type==ParsedSymbol.TYPE_MULTINAME){
+ paramTypes.add((Long)symbType.value);
+ }else{
+ throw new ParseException("Multiname or * expected", lexer.yyline());
+ }
+ ParsedSymbol symbEqual=lexer.yylex();
+ if(symbEqual.type==ParsedSymbol.TYPE_ASSIGN)
+ {
+ hasOptional=true;
+ ParsedSymbol symbValue;
+ String nstype="";
+ do{
+ symbValue=lexer.yylex();
+ if(symbValue.type>=8&&symbValue.type<=13){
+ nstype=nstype+symbValue.type+":";
+ }
+ }while(symbValue.type>=8&&symbValue.type<=13);
+ if((!nstype.equals(""))&&(symbValue.type!=ParsedSymbol.TYPE_NAMESPACE))
+ {
+ throw new ParseException("Namespace expected", lexer.yyline());
+ }
+ int id=0;
+ switch(symbValue.type)
+ {
+ case ParsedSymbol.TYPE_INTEGER:
+ optionalValues.add(new ValueKind(abc.constants.forceGetIntId((Long)symbValue.value),ValueKind.CONSTANT_Int));
+ break;
+ case ParsedSymbol.TYPE_FLOAT:
+ optionalValues.add(new ValueKind(abc.constants.forceGetDoubleId((Double)symbValue.value),ValueKind.CONSTANT_Double));
+ break;
+ case ParsedSymbol.TYPE_STRING:
+ optionalValues.add(new ValueKind(abc.constants.forceGetStringId((String)symbValue.value),ValueKind.CONSTANT_Utf8));
+ break;
+ case ParsedSymbol.TYPE_TRUE:
+ optionalValues.add(new ValueKind(0,ValueKind.CONSTANT_True));
+ break;
+ case ParsedSymbol.TYPE_FALSE:
+ optionalValues.add(new ValueKind(0,ValueKind.CONSTANT_False));
+ break;
+ case ParsedSymbol.TYPE_NULL:
+ optionalValues.add(new ValueKind(0,ValueKind.CONSTANT_Null));
+ break;
+ case ParsedSymbol.TYPE_UNDEFINED:
+ optionalValues.add(new ValueKind(0,ValueKind.CONSTANT_Undefined));
+ break;
+ case ParsedSymbol.TYPE_NAMESPACE:
+ if(nstype.equals("9:")){
+ optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PackageNamespace));
+ }else
+ if(nstype.equals("9:10:")){
+ optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PackageInternalNs));
+ }else
+ if(nstype.equals("13:")){
+ optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_ProtectedNamespace));
+ }else
+ if(nstype.equals("12:")){
+ optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_ExplicitNamespace));
+ }else
+ if(nstype.equals("11:13:")){
+ optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_StaticProtectedNs));
+ }else
+ if(nstype.equals("8:")){
+ optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_PrivateNs));
+ }else if(nstype.equals("")){
+ optionalValues.add(new ValueKind((int)(long)(Long)symbValue.value,ValueKind.CONSTANT_Namespace));
+ }else{
+ throw new ParseException("Invalid type of namespace", lexer.yyline());
+ }
+ break;
+ default:
+ throw new ParseException("Unexpected symbol", lexer.yyline());
+ }
+ symb=lexer.yylex();
+ if(symb.type==ParsedSymbol.TYPE_COMMA){
+
+ }else if(symb.type==ParsedSymbol.TYPE_EOF){
+ break;
+ }
+ }else if(symbEqual.type==ParsedSymbol.TYPE_COMMA){
+ if(hasOptional)
+ {
+ throw new ParseException("Parameter must have default value", lexer.yyline());
+ }
+ }else if(symbEqual.type==ParsedSymbol.TYPE_EOF){
+ if(hasOptional)
+ {
+ throw new ParseException("Parameter must have default value", lexer.yyline());
+ }
+ break;
+ } else {
+ throw new ParseException("Unexpected symbol", lexer.yyline());
+ }
+ }else if(symb.type==ParsedSymbol.TYPE_COMMA){
+
+ }else if(symb.type==ParsedSymbol.TYPE_EOF){
+ break;
+ }else{
+ throw new ParseException("Unexpected symbol", lexer.yyline());
+ }
+ symb = lexer.yylex();
+ }
+ } catch (IOException iex) {
+ return false;
+ }
+
+ if(needsRest&&(!optionalValues.isEmpty())){
+ throw new ParseException("Rest parameter canot be combined with default values", lexer.yyline());
+ }
+
+ update.param_types=new int[paramTypes.size()];
+ for(int p=0;p.
+ */
+
+package com.jpexs.asdec.abc.methodinfo_parser;
+
+import com.jpexs.asdec.action.parser.*;
+
+
+public class ParseException extends Exception {
+ public long line;
+ public String text;
+
+ public ParseException(String text, long line) {
+ super("ParseException:" + text + " on line " + line);
+ this.line = line;
+ this.text = text;
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/ParsedSymbol.java b/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/ParsedSymbol.java
index ddba8915d..9faeb6839 100644
--- a/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/ParsedSymbol.java
+++ b/trunk/src/com/jpexs/asdec/abc/methodinfo_parser/ParsedSymbol.java
@@ -1,67 +1,66 @@
-/*
- * Copyright (C) 2010-2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.methodinfo_parser;
-
-
-public class ParsedSymbol {
- public int type;
- public Object value;
-
- public static final int TYPE_INTEGER = 1;
- public static final int TYPE_FLOAT = 2;
- public static final int TYPE_TRUE = 3;
- public static final int TYPE_FALSE = 4;
- public static final int TYPE_NULL = 5;
- public static final int TYPE_UNDEFINED = 6;
- public static final int TYPE_STRING = 7;
-
- //8-12 namespace prefix
- public static final int TYPE_PRIVATE = 8;
- public static final int TYPE_PACKAGE = 9;
- public static final int TYPE_INTERNAL = 10;
- public static final int TYPE_STATIC = 11;
- public static final int TYPE_EXPLICIT = 12;
- public static final int TYPE_PROTECTED = 13;
- public static final int TYPE_NAMESPACE = 14;
-
- public static final int TYPE_COLON = 15;
- public static final int TYPE_COMMA = 16;
- public static final int TYPE_DOTS = 17;
-
-
-
-
- public static final int TYPE_MULTINAME = 18;
- public static final int TYPE_IDENTIFIER = 19;
-
-
- public static final int TYPE_EOF = 20;
- public static final int TYPE_STAR = 21;
- public static final int TYPE_ASSIGN = 22;
-
- public ParsedSymbol(int type, Object value) {
- this.type = type;
- this.value = value;
- }
-
- public ParsedSymbol(int type) {
- this.type = type;
- }
-
-}
+/*
+ * Copyright (C) 2010-2011 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 .
+ */
+
+package com.jpexs.asdec.abc.methodinfo_parser;
+
+
+public class ParsedSymbol {
+ public int type;
+ public Object value;
+
+ public static final int TYPE_INTEGER = 1;
+ public static final int TYPE_FLOAT = 2;
+ public static final int TYPE_TRUE = 3;
+ public static final int TYPE_FALSE = 4;
+ public static final int TYPE_NULL = 5;
+ public static final int TYPE_UNDEFINED = 6;
+ public static final int TYPE_STRING = 7;
+
+ //8-12 namespace prefix
+ public static final int TYPE_PRIVATE = 8;
+ public static final int TYPE_PACKAGE = 9;
+ public static final int TYPE_INTERNAL = 10;
+ public static final int TYPE_STATIC = 11;
+ public static final int TYPE_EXPLICIT = 12;
+ public static final int TYPE_PROTECTED = 13;
+ public static final int TYPE_NAMESPACE = 14;
+
+ public static final int TYPE_COLON = 15;
+ public static final int TYPE_COMMA = 16;
+ public static final int TYPE_DOTS = 17;
+
+
+
+
+ public static final int TYPE_MULTINAME = 18;
+ public static final int TYPE_IDENTIFIER = 19;
+
+
+ public static final int TYPE_EOF = 20;
+ public static final int TYPE_STAR = 21;
+ public static final int TYPE_ASSIGN = 22;
+
+ public ParsedSymbol(int type, Object value) {
+ this.type = type;
+ this.value = value;
+ }
+
+ public ParsedSymbol(int type) {
+ this.type = type;
+ }
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/types/ABCException.java b/trunk/src/com/jpexs/asdec/abc/types/ABCException.java
index 572059374..c7835c1d9 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/ABCException.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/ABCException.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/ClassInfo.java b/trunk/src/com/jpexs/asdec/abc/types/ClassInfo.java
index 5ddfbcca0..6f44dbfe0 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/ClassInfo.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/ClassInfo.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/Decimal.java b/trunk/src/com/jpexs/asdec/abc/types/Decimal.java
index 993db1711..b30d50832 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/Decimal.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/Decimal.java
@@ -1,38 +1,37 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.types;
-
-/**
- *
- * @author JPEXS
- */
-public class Decimal {
- public byte data[];
- public Decimal(byte data[])
- {
- this.data=data;
- }
-
- @Override
- public String toString() {
- return new String(data);
- }
-
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.types;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class Decimal {
+ public byte data[];
+ public Decimal(byte data[])
+ {
+ this.data=data;
+ }
+
+ @Override
+ public String toString() {
+ return new String(data);
+ }
+
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/types/InstanceInfo.java b/trunk/src/com/jpexs/asdec/abc/types/InstanceInfo.java
index 3d217869d..d80406b44 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/InstanceInfo.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/InstanceInfo.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/MetadataInfo.java b/trunk/src/com/jpexs/asdec/abc/types/MetadataInfo.java
index 5604c2b69..2e0972712 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/MetadataInfo.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/MetadataInfo.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/MethodBody.java b/trunk/src/com/jpexs/asdec/abc/types/MethodBody.java
index 41c1c5adc..1e90d3491 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/MethodBody.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/MethodBody.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/MethodInfo.java b/trunk/src/com/jpexs/asdec/abc/types/MethodInfo.java
index e8eb606d4..81ece1b6e 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/MethodInfo.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/MethodInfo.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/Multiname.java b/trunk/src/com/jpexs/asdec/abc/types/Multiname.java
index 682962cb9..4389cedba 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/Multiname.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/Multiname.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/Namespace.java b/trunk/src/com/jpexs/asdec/abc/types/Namespace.java
index ea2da5c71..4feb2006a 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/Namespace.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/Namespace.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/NamespaceSet.java b/trunk/src/com/jpexs/asdec/abc/types/NamespaceSet.java
index b79abf956..4cc2f4ab9 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/NamespaceSet.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/NamespaceSet.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/ScriptInfo.java b/trunk/src/com/jpexs/asdec/abc/types/ScriptInfo.java
index 539ad684f..adcf6e2da 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/ScriptInfo.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/ScriptInfo.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/ValueKind.java b/trunk/src/com/jpexs/asdec/abc/types/ValueKind.java
index 37637ed9c..28d1698f4 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/ValueKind.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/ValueKind.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/traits/Trait.java b/trunk/src/com/jpexs/asdec/abc/types/traits/Trait.java
index e9a1ce575..761be3111 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/traits/Trait.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/traits/Trait.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types.traits;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/traits/TraitClass.java b/trunk/src/com/jpexs/asdec/abc/types/traits/TraitClass.java
index b05611c4d..906f7ac9d 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/traits/TraitClass.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/traits/TraitClass.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types.traits;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/traits/TraitFunction.java b/trunk/src/com/jpexs/asdec/abc/types/traits/TraitFunction.java
index 91426267e..a84f33541 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/traits/TraitFunction.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/traits/TraitFunction.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types.traits;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/traits/TraitMethodGetterSetter.java b/trunk/src/com/jpexs/asdec/abc/types/traits/TraitMethodGetterSetter.java
index 078c11721..41703222d 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/traits/TraitMethodGetterSetter.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/traits/TraitMethodGetterSetter.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types.traits;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/traits/TraitSlotConst.java b/trunk/src/com/jpexs/asdec/abc/types/traits/TraitSlotConst.java
index e76c5aea4..ae3b9ec1f 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/traits/TraitSlotConst.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/traits/TraitSlotConst.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types.traits;
diff --git a/trunk/src/com/jpexs/asdec/abc/types/traits/Traits.java b/trunk/src/com/jpexs/asdec/abc/types/traits/Traits.java
index f5623927c..9f9b0d6e3 100644
--- a/trunk/src/com/jpexs/asdec/abc/types/traits/Traits.java
+++ b/trunk/src/com/jpexs/asdec/abc/types/traits/Traits.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.abc.types.traits;
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/ClassNameMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/ClassNameMultinameUsage.java
index 9d15599f8..af1dc1660 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/ClassNameMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/ClassNameMultinameUsage.java
@@ -1,39 +1,38 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-
-/**
- *
- * @author JPEXS
- */
-public class ClassNameMultinameUsage extends InsideClassMultinameUsage
-{
-
- public ClassNameMultinameUsage(int multinameIndex,int classIndex)
- {
- super(multinameIndex,classIndex);
- }
-
- @Override
- public String toString(ABC abc) {
- return "class "+abc.constants.constant_multiname[abc.instance_info[classIndex].name_index].getNameWithNamespace(abc.constants);
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class ClassNameMultinameUsage extends InsideClassMultinameUsage
+{
+
+ public ClassNameMultinameUsage(int multinameIndex,int classIndex)
+ {
+ super(multinameIndex,classIndex);
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return "class "+abc.constants.constant_multiname[abc.instance_info[classIndex].name_index].getNameWithNamespace(abc.constants);
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/ConstVarMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/ConstVarMultinameUsage.java
index 2705f4639..0e86ad1bb 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/ConstVarMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/ConstVarMultinameUsage.java
@@ -1,62 +1,61 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.types.traits.TraitMethodGetterSetter;
-import com.jpexs.asdec.abc.types.traits.TraitSlotConst;
-import com.jpexs.asdec.abc.types.traits.Traits;
-
-/**
- *
- * @author JPEXS
- */
-public abstract class ConstVarMultinameUsage extends TraitMultinameUsage {
-
- public ConstVarMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,Traits traits,int parentTraitIndex)
- {
- super(multinameIndex,classIndex,traitIndex,isStatic,traits,parentTraitIndex);
- }
-
- @Override
- public String toString(ABC abc) {
- return super.toString(abc)+" "+
- (parentTraitIndex>-1?
- (isStatic?
- (((TraitMethodGetterSetter)abc.class_info[classIndex].static_traits.traits[parentTraitIndex]).convert(abc.constants, abc.method_info, abc,isStatic)):
- (((TraitMethodGetterSetter)abc.instance_info[classIndex].instance_traits.traits[parentTraitIndex]).convert(abc.constants, abc.method_info, abc,isStatic))
- )
- :
- "")+
- ((TraitSlotConst)traits.traits[traitIndex]).convert(abc.constants, abc.method_info, abc,isStatic)
- ;
- }
-
- public int getTraitIndex() {
- return traitIndex;
- }
-
- public boolean isStatic() {
- return isStatic;
- }
-
-
-
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.types.traits.TraitMethodGetterSetter;
+import com.jpexs.asdec.abc.types.traits.TraitSlotConst;
+import com.jpexs.asdec.abc.types.traits.Traits;
+
+/**
+ *
+ * @author JPEXS
+ */
+public abstract class ConstVarMultinameUsage extends TraitMultinameUsage {
+
+ public ConstVarMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,Traits traits,int parentTraitIndex)
+ {
+ super(multinameIndex,classIndex,traitIndex,isStatic,traits,parentTraitIndex);
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return super.toString(abc)+" "+
+ (parentTraitIndex>-1?
+ (isStatic?
+ (((TraitMethodGetterSetter)abc.class_info[classIndex].static_traits.traits[parentTraitIndex]).convert(abc.constants, abc.method_info, abc,isStatic)):
+ (((TraitMethodGetterSetter)abc.instance_info[classIndex].instance_traits.traits[parentTraitIndex]).convert(abc.constants, abc.method_info, abc,isStatic))
+ )
+ :
+ "")+
+ ((TraitSlotConst)traits.traits[traitIndex]).convert(abc.constants, abc.method_info, abc,isStatic)
+ ;
+ }
+
+ public int getTraitIndex() {
+ return traitIndex;
+ }
+
+ public boolean isStatic() {
+ return isStatic;
+ }
+
+
+
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/ConstVarNameMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/ConstVarNameMultinameUsage.java
index dd1582b48..769a8837d 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/ConstVarNameMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/ConstVarNameMultinameUsage.java
@@ -1,39 +1,38 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.types.traits.Traits;
-
-/**
- *
- * @author JPEXS
- */
-public class ConstVarNameMultinameUsage extends ConstVarMultinameUsage{
-
- public ConstVarNameMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,Traits traits,int parentTraitIndex)
- {
- super(multinameIndex,classIndex,traitIndex,isStatic,traits,parentTraitIndex);
- }
-
- @Override
- public String toString(ABC abc) {
- return super.toString(abc)+" name";
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.types.traits.Traits;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class ConstVarNameMultinameUsage extends ConstVarMultinameUsage{
+
+ public ConstVarNameMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,Traits traits,int parentTraitIndex)
+ {
+ super(multinameIndex,classIndex,traitIndex,isStatic,traits,parentTraitIndex);
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return super.toString(abc)+" name";
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/ConstVarTypeMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/ConstVarTypeMultinameUsage.java
index ad19fd7b0..93a05aeed 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/ConstVarTypeMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/ConstVarTypeMultinameUsage.java
@@ -1,39 +1,38 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.types.traits.Traits;
-
-/**
- *
- * @author JPEXS
- */
-public class ConstVarTypeMultinameUsage extends ConstVarMultinameUsage{
-
- public ConstVarTypeMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,Traits traits,int parentTraitIndex)
- {
- super(multinameIndex,classIndex,traitIndex,isStatic,traits,parentTraitIndex);
- }
-
- @Override
- public String toString(ABC abc) {
- return super.toString(abc)+" type";
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.types.traits.Traits;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class ConstVarTypeMultinameUsage extends ConstVarMultinameUsage{
+
+ public ConstVarTypeMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,Traits traits,int parentTraitIndex)
+ {
+ super(multinameIndex,classIndex,traitIndex,isStatic,traits,parentTraitIndex);
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return super.toString(abc)+" type";
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/ExtendsMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/ExtendsMultinameUsage.java
index 8973556f1..a75b56e8e 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/ExtendsMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/ExtendsMultinameUsage.java
@@ -1,40 +1,39 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-
-/**
- *
- * @author JPEXS
- */
-public class ExtendsMultinameUsage extends InsideClassMultinameUsage {
-
-
- public ExtendsMultinameUsage(int multinameIndex,int classIndex)
- {
- super(multinameIndex,classIndex);
- }
-
- @Override
- public String toString(ABC abc) {
- return super.toString(abc)+" extends";
- }
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class ExtendsMultinameUsage extends InsideClassMultinameUsage {
+
+
+ public ExtendsMultinameUsage(int multinameIndex,int classIndex)
+ {
+ super(multinameIndex,classIndex);
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return super.toString(abc)+" extends";
+ }
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/ImplementsMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/ImplementsMultinameUsage.java
index 705491c35..f250bd999 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/ImplementsMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/ImplementsMultinameUsage.java
@@ -1,40 +1,39 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-
-/**
- *
- * @author JPEXS
- */
-public class ImplementsMultinameUsage extends InsideClassMultinameUsage {
-
-
- public ImplementsMultinameUsage(int multinameIndex,int classIndex)
- {
- super(multinameIndex,classIndex);
- }
-
- @Override
- public String toString(ABC abc) {
- return super.toString(abc)+" implements";
- }
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class ImplementsMultinameUsage extends InsideClassMultinameUsage {
+
+
+ public ImplementsMultinameUsage(int multinameIndex,int classIndex)
+ {
+ super(multinameIndex,classIndex);
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return super.toString(abc)+" implements";
+ }
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/InsideClassMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/InsideClassMultinameUsage.java
index c513ddaff..5a0f14d15 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/InsideClassMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/InsideClassMultinameUsage.java
@@ -1,49 +1,48 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-
-/**
- *
- * @author JPEXS
- */
-public abstract class InsideClassMultinameUsage extends MultinameUsage {
- public int multinameIndex;
- public int classIndex;
-
- public InsideClassMultinameUsage(int multinameIndex,int classIndex){
- this.multinameIndex=multinameIndex;
- this.classIndex=classIndex;
- }
-
- public String toString(ABC abc){
- return "class "+abc.constants.constant_multiname[abc.instance_info[classIndex].name_index].getNameWithNamespace(abc.constants);
- }
-
- public int getMultinameIndex(){
- return multinameIndex;
- }
-
- public int getClassIndex() {
- return classIndex;
- }
-
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+
+/**
+ *
+ * @author JPEXS
+ */
+public abstract class InsideClassMultinameUsage extends MultinameUsage {
+ public int multinameIndex;
+ public int classIndex;
+
+ public InsideClassMultinameUsage(int multinameIndex,int classIndex){
+ this.multinameIndex=multinameIndex;
+ this.classIndex=classIndex;
+ }
+
+ public String toString(ABC abc){
+ return "class "+abc.constants.constant_multiname[abc.instance_info[classIndex].name_index].getNameWithNamespace(abc.constants);
+ }
+
+ public int getMultinameIndex(){
+ return multinameIndex;
+ }
+
+ public int getClassIndex() {
+ return classIndex;
+ }
+
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/MethodBodyMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/MethodBodyMultinameUsage.java
index bb6166a46..9a09b3531 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/MethodBodyMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/MethodBodyMultinameUsage.java
@@ -1,39 +1,38 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.types.traits.Traits;
-
-/**
- *
- * @author JPEXS
- */
-public class MethodBodyMultinameUsage extends MethodMultinameUsage {
-
- public MethodBodyMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,boolean isInitializer,Traits traits,int parentTraitIndex)
- {
- super(multinameIndex,classIndex,traitIndex,isStatic,isInitializer,traits,parentTraitIndex);
- }
-
- @Override
- public String toString(ABC abc) {
- return super.toString(abc)+" body";
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.types.traits.Traits;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class MethodBodyMultinameUsage extends MethodMultinameUsage {
+
+ public MethodBodyMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,boolean isInitializer,Traits traits,int parentTraitIndex)
+ {
+ super(multinameIndex,classIndex,traitIndex,isStatic,isInitializer,traits,parentTraitIndex);
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return super.toString(abc)+" body";
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/MethodMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/MethodMultinameUsage.java
index 6c1dbbf1b..aa0b8a46e 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/MethodMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/MethodMultinameUsage.java
@@ -1,76 +1,75 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.types.traits.TraitMethodGetterSetter;
-import com.jpexs.asdec.abc.types.traits.Traits;
-
-/**
- *
- * @author JPEXS
- */
-public abstract class MethodMultinameUsage extends TraitMultinameUsage {
-
- public boolean isInitializer;
-
- public MethodMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,boolean isInitializer,Traits traits,int parentTraitIndex)
- {
- super(multinameIndex,classIndex,traitIndex,isStatic,traits,parentTraitIndex);
- this.isInitializer=isInitializer;
- }
-
- public boolean isInitializer() {
- return isInitializer;
- }
-
-
-
- @Override
- public String toString(ABC abc) {
- return super.toString(abc)+" "+(
- isInitializer?
- (isStatic?
- "class initializer":
- "instance initializer")
- :(
- (parentTraitIndex>-1?
- (isStatic?
- (((TraitMethodGetterSetter)abc.class_info[classIndex].static_traits.traits[parentTraitIndex]).convert(abc.constants, abc.method_info, abc,isStatic)):
- (((TraitMethodGetterSetter)abc.instance_info[classIndex].instance_traits.traits[parentTraitIndex]).convert(abc.constants, abc.method_info, abc,isStatic))
- )+" "
- :
- "")
- +
- (((TraitMethodGetterSetter)traits.traits[traitIndex]).convert(abc.constants, abc.method_info, abc,isStatic)))
- );
- }
-
- public int getTraitIndex() {
- return traitIndex;
- }
-
- public boolean isStatic() {
- return isStatic;
- }
-
-
-
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.types.traits.TraitMethodGetterSetter;
+import com.jpexs.asdec.abc.types.traits.Traits;
+
+/**
+ *
+ * @author JPEXS
+ */
+public abstract class MethodMultinameUsage extends TraitMultinameUsage {
+
+ public boolean isInitializer;
+
+ public MethodMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,boolean isInitializer,Traits traits,int parentTraitIndex)
+ {
+ super(multinameIndex,classIndex,traitIndex,isStatic,traits,parentTraitIndex);
+ this.isInitializer=isInitializer;
+ }
+
+ public boolean isInitializer() {
+ return isInitializer;
+ }
+
+
+
+ @Override
+ public String toString(ABC abc) {
+ return super.toString(abc)+" "+(
+ isInitializer?
+ (isStatic?
+ "class initializer":
+ "instance initializer")
+ :(
+ (parentTraitIndex>-1?
+ (isStatic?
+ (((TraitMethodGetterSetter)abc.class_info[classIndex].static_traits.traits[parentTraitIndex]).convert(abc.constants, abc.method_info, abc,isStatic)):
+ (((TraitMethodGetterSetter)abc.instance_info[classIndex].instance_traits.traits[parentTraitIndex]).convert(abc.constants, abc.method_info, abc,isStatic))
+ )+" "
+ :
+ "")
+ +
+ (((TraitMethodGetterSetter)traits.traits[traitIndex]).convert(abc.constants, abc.method_info, abc,isStatic)))
+ );
+ }
+
+ public int getTraitIndex() {
+ return traitIndex;
+ }
+
+ public boolean isStatic() {
+ return isStatic;
+ }
+
+
+
+
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/MethodNameMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/MethodNameMultinameUsage.java
index 4453ad37d..93d604b10 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/MethodNameMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/MethodNameMultinameUsage.java
@@ -1,39 +1,38 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.types.traits.Traits;
-
-/**
- *
- * @author JPEXS
- */
-public class MethodNameMultinameUsage extends MethodMultinameUsage {
-
- public MethodNameMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,boolean isInitializer,Traits traits,int parentTraitIndex)
- {
- super(multinameIndex,classIndex,traitIndex,isStatic,isInitializer,traits,parentTraitIndex);
- }
-
- @Override
- public String toString(ABC abc) {
- return super.toString(abc)+" name";
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.types.traits.Traits;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class MethodNameMultinameUsage extends MethodMultinameUsage {
+
+ public MethodNameMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,boolean isInitializer,Traits traits,int parentTraitIndex)
+ {
+ super(multinameIndex,classIndex,traitIndex,isStatic,isInitializer,traits,parentTraitIndex);
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return super.toString(abc)+" name";
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/MethodParamsMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/MethodParamsMultinameUsage.java
index 6803b0278..a16ed7873 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/MethodParamsMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/MethodParamsMultinameUsage.java
@@ -1,39 +1,38 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.types.traits.Traits;
-
-/**
- *
- * @author JPEXS
- */
-public class MethodParamsMultinameUsage extends MethodMultinameUsage {
-
- public MethodParamsMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,boolean isInitializer,Traits traits,int parentTraitIndex)
- {
- super(multinameIndex,classIndex,traitIndex,isStatic,isInitializer,traits,parentTraitIndex);
- }
-
- @Override
- public String toString(ABC abc) {
- return super.toString(abc)+" params";
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.types.traits.Traits;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class MethodParamsMultinameUsage extends MethodMultinameUsage {
+
+ public MethodParamsMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,boolean isInitializer,Traits traits,int parentTraitIndex)
+ {
+ super(multinameIndex,classIndex,traitIndex,isStatic,isInitializer,traits,parentTraitIndex);
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return super.toString(abc)+" params";
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/MethodReturnTypeMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/MethodReturnTypeMultinameUsage.java
index e9089ac1d..cae8a2b34 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/MethodReturnTypeMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/MethodReturnTypeMultinameUsage.java
@@ -1,39 +1,38 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-import com.jpexs.asdec.abc.types.traits.Traits;
-
-/**
- *
- * @author JPEXS
- */
-public class MethodReturnTypeMultinameUsage extends MethodMultinameUsage {
-
- public MethodReturnTypeMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,boolean isInitializer,Traits traits,int parentTraitIndex)
- {
- super(multinameIndex,classIndex,traitIndex,isStatic,isInitializer,traits,parentTraitIndex);
- }
-
- @Override
- public String toString(ABC abc) {
- return super.toString(abc)+" return type";
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+import com.jpexs.asdec.abc.types.traits.Traits;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class MethodReturnTypeMultinameUsage extends MethodMultinameUsage {
+
+ public MethodReturnTypeMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,boolean isInitializer,Traits traits,int parentTraitIndex)
+ {
+ super(multinameIndex,classIndex,traitIndex,isStatic,isInitializer,traits,parentTraitIndex);
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return super.toString(abc)+" return type";
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/MultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/MultinameUsage.java
index 812944999..d711c982b 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/MultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/MultinameUsage.java
@@ -1,29 +1,28 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-
-/**
- *
- * @author JPEXS
- */
-public abstract class MultinameUsage {
- public abstract String toString(ABC abc);
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+
+/**
+ *
+ * @author JPEXS
+ */
+public abstract class MultinameUsage {
+ public abstract String toString(ABC abc);
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/TraitMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/TraitMultinameUsage.java
index 405e376ce..e62034df8 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/TraitMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/TraitMultinameUsage.java
@@ -1,40 +1,39 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.types.traits.Traits;
-
-/**
- *
- * @author JPEXS
- */
-public abstract class TraitMultinameUsage extends InsideClassMultinameUsage {
- public int traitIndex ;
- public boolean isStatic;
- public Traits traits;
- public int parentTraitIndex;
- public TraitMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,Traits traits,int parentTraitIndex)
- {
- super(multinameIndex,classIndex);
- this.traitIndex=traitIndex;
- this.isStatic=isStatic;
- this.traits=traits;
- this.parentTraitIndex=parentTraitIndex;
- }
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.types.traits.Traits;
+
+/**
+ *
+ * @author JPEXS
+ */
+public abstract class TraitMultinameUsage extends InsideClassMultinameUsage {
+ public int traitIndex ;
+ public boolean isStatic;
+ public Traits traits;
+ public int parentTraitIndex;
+ public TraitMultinameUsage(int multinameIndex,int classIndex,int traitIndex,boolean isStatic,Traits traits,int parentTraitIndex)
+ {
+ super(multinameIndex,classIndex);
+ this.traitIndex=traitIndex;
+ this.isStatic=isStatic;
+ this.traits=traits;
+ this.parentTraitIndex=parentTraitIndex;
+ }
+}
diff --git a/trunk/src/com/jpexs/asdec/abc/usages/TypeNameMultinameUsage.java b/trunk/src/com/jpexs/asdec/abc/usages/TypeNameMultinameUsage.java
index cb527c235..421930c00 100644
--- a/trunk/src/com/jpexs/asdec/abc/usages/TypeNameMultinameUsage.java
+++ b/trunk/src/com/jpexs/asdec/abc/usages/TypeNameMultinameUsage.java
@@ -1,39 +1,38 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.abc.usages;
-
-import com.jpexs.asdec.abc.ABC;
-
-/**
- *
- * @author JPEXS
- */
-public class TypeNameMultinameUsage extends MultinameUsage {
- public int typename_index;
-
- public TypeNameMultinameUsage(int typename_index){
- this.typename_index=typename_index;
- }
-
- @Override
- public String toString(ABC abc) {
- return "TypeName "+abc.constants.constant_multiname[typename_index].toString(abc.constants);
- }
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.abc.usages;
+
+import com.jpexs.asdec.abc.ABC;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class TypeNameMultinameUsage extends MultinameUsage {
+ public int typename_index;
+
+ public TypeNameMultinameUsage(int typename_index){
+ this.typename_index=typename_index;
+ }
+
+ @Override
+ public String toString(ABC abc) {
+ return "TypeName "+abc.constants.constant_multiname[typename_index].toString(abc.constants);
+ }
+
+}
diff --git a/trunk/src/com/jpexs/asdec/action/Action.java b/trunk/src/com/jpexs/asdec/action/Action.java
index 89033a2ae..4519aad48 100644
--- a/trunk/src/com/jpexs/asdec/action/Action.java
+++ b/trunk/src/com/jpexs/asdec/action/Action.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action;
diff --git a/trunk/src/com/jpexs/asdec/action/UnknownJumpException.java b/trunk/src/com/jpexs/asdec/action/UnknownJumpException.java
index 6deecd7e9..7f4d90d29 100644
--- a/trunk/src/com/jpexs/asdec/action/UnknownJumpException.java
+++ b/trunk/src/com/jpexs/asdec/action/UnknownJumpException.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action;
diff --git a/trunk/src/com/jpexs/asdec/action/flashlite/ActionFSCommand2.java b/trunk/src/com/jpexs/asdec/action/flashlite/ActionFSCommand2.java
index 90719c2f0..dde8cd907 100644
--- a/trunk/src/com/jpexs/asdec/action/flashlite/ActionFSCommand2.java
+++ b/trunk/src/com/jpexs/asdec/action/flashlite/ActionFSCommand2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.flashlite;
diff --git a/trunk/src/com/jpexs/asdec/action/flashlite/ActionStrictMode.java b/trunk/src/com/jpexs/asdec/action/flashlite/ActionStrictMode.java
index 601d47f89..bb8081dcd 100644
--- a/trunk/src/com/jpexs/asdec/action/flashlite/ActionStrictMode.java
+++ b/trunk/src/com/jpexs/asdec/action/flashlite/ActionStrictMode.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.flashlite;
diff --git a/trunk/src/com/jpexs/asdec/action/gui/MainFrame.java b/trunk/src/com/jpexs/asdec/action/gui/MainFrame.java
index e80294117..d88b85dc7 100644
--- a/trunk/src/com/jpexs/asdec/action/gui/MainFrame.java
+++ b/trunk/src/com/jpexs/asdec/action/gui/MainFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.gui;
diff --git a/trunk/src/com/jpexs/asdec/action/gui/TagTreeItem.java b/trunk/src/com/jpexs/asdec/action/gui/TagTreeItem.java
index 72cc8c09a..63e52b0ee 100644
--- a/trunk/src/com/jpexs/asdec/action/gui/TagTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/gui/TagTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.gui;
diff --git a/trunk/src/com/jpexs/asdec/action/gui/TagTreeModel.java b/trunk/src/com/jpexs/asdec/action/gui/TagTreeModel.java
index ce29ba6ae..dde282896 100644
--- a/trunk/src/com/jpexs/asdec/action/gui/TagTreeModel.java
+++ b/trunk/src/com/jpexs/asdec/action/gui/TagTreeModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.gui;
diff --git a/trunk/src/com/jpexs/asdec/action/parser/ASMParser.java b/trunk/src/com/jpexs/asdec/action/parser/ASMParser.java
index 5652b21d0..6bfa5718e 100644
--- a/trunk/src/com/jpexs/asdec/action/parser/ASMParser.java
+++ b/trunk/src/com/jpexs/asdec/action/parser/ASMParser.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.parser;
diff --git a/trunk/src/com/jpexs/asdec/action/parser/FlasmLexer.java b/trunk/src/com/jpexs/asdec/action/parser/FlasmLexer.java
index f85ff4bad..a81bda50c 100644
--- a/trunk/src/com/jpexs/asdec/action/parser/FlasmLexer.java
+++ b/trunk/src/com/jpexs/asdec/action/parser/FlasmLexer.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.parser;
diff --git a/trunk/src/com/jpexs/asdec/action/parser/Label.java b/trunk/src/com/jpexs/asdec/action/parser/Label.java
index f7b622871..370b826f0 100644
--- a/trunk/src/com/jpexs/asdec/action/parser/Label.java
+++ b/trunk/src/com/jpexs/asdec/action/parser/Label.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.parser;
diff --git a/trunk/src/com/jpexs/asdec/action/parser/ParseException.java b/trunk/src/com/jpexs/asdec/action/parser/ParseException.java
index d81a85de0..88321b1a1 100644
--- a/trunk/src/com/jpexs/asdec/action/parser/ParseException.java
+++ b/trunk/src/com/jpexs/asdec/action/parser/ParseException.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.parser;
diff --git a/trunk/src/com/jpexs/asdec/action/parser/ParsedSymbol.java b/trunk/src/com/jpexs/asdec/action/parser/ParsedSymbol.java
index 7238d978d..25fd92b93 100644
--- a/trunk/src/com/jpexs/asdec/action/parser/ParsedSymbol.java
+++ b/trunk/src/com/jpexs/asdec/action/parser/ParsedSymbol.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.parser;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionGetURL.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionGetURL.java
index 69e0f2da0..5e1f2e701 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionGetURL.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionGetURL.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionGoToLabel.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionGoToLabel.java
index 2d7936daf..2ebee4db6 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionGoToLabel.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionGoToLabel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionGotoFrame.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionGotoFrame.java
index f736fc27d..b712e8917 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionGotoFrame.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionGotoFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionNextFrame.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionNextFrame.java
index f27442a5e..01da875b7 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionNextFrame.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionNextFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionPlay.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionPlay.java
index 2f54a565e..0ee441d02 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionPlay.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionPlay.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionPrevFrame.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionPrevFrame.java
index 361acd5ee..d768c4d82 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionPrevFrame.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionPrevFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionSetTarget.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionSetTarget.java
index c6886647a..a8e98db22 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionSetTarget.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionSetTarget.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionStop.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionStop.java
index 6ba921196..292db5f7b 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionStop.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionStop.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionStopSounds.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionStopSounds.java
index af51df50d..5b803abbc 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionStopSounds.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionStopSounds.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionToggleQuality.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionToggleQuality.java
index a77af0f53..fba1e415d 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionToggleQuality.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionToggleQuality.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf3/ActionWaitForFrame.java b/trunk/src/com/jpexs/asdec/action/swf3/ActionWaitForFrame.java
index 6d4c13870..d8f456338 100644
--- a/trunk/src/com/jpexs/asdec/action/swf3/ActionWaitForFrame.java
+++ b/trunk/src/com/jpexs/asdec/action/swf3/ActionWaitForFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf3;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionAdd.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionAdd.java
index 2b5ad1e89..3704a38cd 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionAdd.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionAdd.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionAnd.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionAnd.java
index 0c7bd5d26..a939e1edc 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionAnd.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionAnd.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionAsciiToChar.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionAsciiToChar.java
index e2fdd357a..04b5fbb96 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionAsciiToChar.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionAsciiToChar.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionCall.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionCall.java
index 6da87f527..3b478b7af 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionCall.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionCall.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionCharToAscii.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionCharToAscii.java
index d9715795e..f70004097 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionCharToAscii.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionCharToAscii.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionCloneSprite.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionCloneSprite.java
index c26acae50..ccc946ff9 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionCloneSprite.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionCloneSprite.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionDivide.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionDivide.java
index e5587a0a8..e655f2c79 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionDivide.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionDivide.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionEndDrag.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionEndDrag.java
index 6b08113dd..a66c97b6f 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionEndDrag.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionEndDrag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionEquals.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionEquals.java
index 0dbafd15c..a3d2e28e7 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionEquals.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionEquals.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionGetProperty.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionGetProperty.java
index 1bc6b7545..f5d3b7e52 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionGetProperty.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionGetProperty.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionGetTime.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionGetTime.java
index 784983aa9..cd09f3384 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionGetTime.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionGetTime.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionGetURL2.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionGetURL2.java
index 2be64f9d7..4dd6f479c 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionGetURL2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionGetURL2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionGetVariable.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionGetVariable.java
index 3c7fbb15c..d1e03c797 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionGetVariable.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionGetVariable.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionGotoFrame2.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionGotoFrame2.java
index 477ec8e01..b3dc88f8e 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionGotoFrame2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionGotoFrame2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionIf.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionIf.java
index 63d4f4df2..0ffe11220 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionIf.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionIf.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionJump.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionJump.java
index e30b16089..7b5a2c54c 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionJump.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionJump.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionLess.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionLess.java
index 55f0dd84a..b029a7a68 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionLess.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionLess.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionMBAsciiToChar.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionMBAsciiToChar.java
index 9923675cb..af1154f81 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionMBAsciiToChar.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionMBAsciiToChar.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionMBCharToAscii.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionMBCharToAscii.java
index 44c2992ef..d063b17d6 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionMBCharToAscii.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionMBCharToAscii.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionMBStringExtract.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionMBStringExtract.java
index 4048683d1..31e77ef4c 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionMBStringExtract.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionMBStringExtract.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionMBStringLength.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionMBStringLength.java
index db78d4287..6f2f3909a 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionMBStringLength.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionMBStringLength.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionMultiply.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionMultiply.java
index 23841446a..b5178fcc6 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionMultiply.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionMultiply.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionNot.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionNot.java
index 97aec5d77..3796b795a 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionNot.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionNot.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionOr.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionOr.java
index 735ef7009..97de4b65d 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionOr.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionOr.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionPop.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionPop.java
index 1050e3047..3c31d3a13 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionPop.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionPop.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionPush.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionPush.java
index 65e28e09e..314fb5487 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionPush.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionPush.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionRandomNumber.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionRandomNumber.java
index d663a8afc..a9aec0a02 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionRandomNumber.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionRandomNumber.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionRemoveSprite.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionRemoveSprite.java
index 81c438db8..0a6210da5 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionRemoveSprite.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionRemoveSprite.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionSetProperty.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionSetProperty.java
index 00e7c7293..a801f6352 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionSetProperty.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionSetProperty.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionSetTarget2.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionSetTarget2.java
index c555daf13..63bba7ffe 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionSetTarget2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionSetTarget2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionSetVariable.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionSetVariable.java
index 9bd9a3c77..92ebcfe36 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionSetVariable.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionSetVariable.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionStartDrag.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionStartDrag.java
index d97e3c536..bc37e4c65 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionStartDrag.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionStartDrag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionStringAdd.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionStringAdd.java
index 2adfe2c3a..a4c5ea129 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionStringAdd.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionStringAdd.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionStringEquals.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionStringEquals.java
index c0f4da047..d37162c4b 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionStringEquals.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionStringEquals.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionStringExtract.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionStringExtract.java
index a55f8dbc8..6445920c6 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionStringExtract.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionStringExtract.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionStringLength.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionStringLength.java
index 566b1f5a9..9a6796659 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionStringLength.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionStringLength.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionStringLess.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionStringLess.java
index 9ef63ab4b..bca184596 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionStringLess.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionStringLess.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionSubtract.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionSubtract.java
index b12629879..62c418529 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionSubtract.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionSubtract.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionToInteger.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionToInteger.java
index 04622ff41..31f9e4bea 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionToInteger.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionToInteger.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionTrace.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionTrace.java
index 4ec4f410b..2b41dedd1 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionTrace.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionTrace.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ActionWaitForFrame2.java b/trunk/src/com/jpexs/asdec/action/swf4/ActionWaitForFrame2.java
index a0988fe01..6c07a2bad 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ActionWaitForFrame2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ActionWaitForFrame2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/ConstantIndex.java b/trunk/src/com/jpexs/asdec/action/swf4/ConstantIndex.java
index a92d162e7..2a6ae8db2 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/ConstantIndex.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/ConstantIndex.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/Null.java b/trunk/src/com/jpexs/asdec/action/swf4/Null.java
index 6ad52b983..6465bd39c 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/Null.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/Null.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/RegisterNumber.java b/trunk/src/com/jpexs/asdec/action/swf4/RegisterNumber.java
index dd1b0dbd6..72f453e7d 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/RegisterNumber.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/RegisterNumber.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf4/Undefined.java b/trunk/src/com/jpexs/asdec/action/swf4/Undefined.java
index f51836ab6..a95bedc27 100644
--- a/trunk/src/com/jpexs/asdec/action/swf4/Undefined.java
+++ b/trunk/src/com/jpexs/asdec/action/swf4/Undefined.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf4;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionAdd2.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionAdd2.java
index 57e03deb6..5649cf694 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionAdd2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionAdd2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitAnd.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitAnd.java
index 2ec56616d..277c46f40 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitAnd.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitAnd.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitLShift.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitLShift.java
index 9f83127e7..617ccae25 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitLShift.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitLShift.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitOr.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitOr.java
index 8ca9c6641..3faccf3c3 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitOr.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitOr.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitRShift.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitRShift.java
index 1831a844a..fdd93887f 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitRShift.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitRShift.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitURShift.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitURShift.java
index 59df17732..224ebed77 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitURShift.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitURShift.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitXor.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitXor.java
index ceeda1cec..3c6c25455 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionBitXor.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionBitXor.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionCallFunction.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionCallFunction.java
index 8bbfc3eb3..9ac4ebdde 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionCallFunction.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionCallFunction.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionCallMethod.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionCallMethod.java
index e7a5663ec..e88d80065 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionCallMethod.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionCallMethod.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionConstantPool.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionConstantPool.java
index 1590c0bb7..2c3ae31a1 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionConstantPool.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionConstantPool.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionDecrement.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionDecrement.java
index 6fde2889b..6aa715eb9 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionDecrement.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionDecrement.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineFunction.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineFunction.java
index 485cd3b3c..637d4974a 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineFunction.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineFunction.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineLocal.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineLocal.java
index 210895c40..4fdad14fb 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineLocal.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineLocal.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineLocal2.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineLocal2.java
index 7ba75975b..c1ea484d1 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineLocal2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionDefineLocal2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionDelete.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionDelete.java
index ea1dafe3a..9391eed8d 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionDelete.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionDelete.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionDelete2.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionDelete2.java
index 55d94af6b..93685a3dd 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionDelete2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionDelete2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionEnumerate.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionEnumerate.java
index 07984bec4..88ab8850b 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionEnumerate.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionEnumerate.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionEquals2.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionEquals2.java
index 3926a4a42..dd484fa08 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionEquals2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionEquals2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionGetMember.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionGetMember.java
index 638c86ed2..0319acedf 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionGetMember.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionGetMember.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionIncrement.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionIncrement.java
index 64daa4b3d..5c71e2747 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionIncrement.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionIncrement.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionInitArray.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionInitArray.java
index 12218b647..70ddf430e 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionInitArray.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionInitArray.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionInitObject.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionInitObject.java
index ab4a3fc08..e7c3a56c2 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionInitObject.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionInitObject.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionLess2.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionLess2.java
index 90a27cdd3..74ffbc98a 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionLess2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionLess2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionModulo.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionModulo.java
index 4c8297709..e5e989943 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionModulo.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionModulo.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionNewMethod.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionNewMethod.java
index 355860fb2..03757eb61 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionNewMethod.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionNewMethod.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionNewObject.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionNewObject.java
index 91088b89c..0ae00d2b7 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionNewObject.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionNewObject.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionPushDuplicate.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionPushDuplicate.java
index e992f63ef..3f76ff300 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionPushDuplicate.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionPushDuplicate.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionReturn.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionReturn.java
index a348f46da..09e39c902 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionReturn.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionReturn.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionSetMember.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionSetMember.java
index c8b3e3cfb..dfd1b483f 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionSetMember.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionSetMember.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionStackSwap.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionStackSwap.java
index bcd2236ab..c2ff7e492 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionStackSwap.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionStackSwap.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionStoreRegister.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionStoreRegister.java
index e3d10bf47..d8077022c 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionStoreRegister.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionStoreRegister.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionTargetPath.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionTargetPath.java
index 14e687798..b2e5b79bc 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionTargetPath.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionTargetPath.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionToNumber.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionToNumber.java
index 686b57710..a6187e024 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionToNumber.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionToNumber.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionToString.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionToString.java
index af2b88ad6..662252000 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionToString.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionToString.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionTypeOf.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionTypeOf.java
index b0f803c6b..4bc81d8be 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionTypeOf.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionTypeOf.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf5/ActionWith.java b/trunk/src/com/jpexs/asdec/action/swf5/ActionWith.java
index 062b1b282..05cbd7807 100644
--- a/trunk/src/com/jpexs/asdec/action/swf5/ActionWith.java
+++ b/trunk/src/com/jpexs/asdec/action/swf5/ActionWith.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf5;
diff --git a/trunk/src/com/jpexs/asdec/action/swf6/ActionEnumerate2.java b/trunk/src/com/jpexs/asdec/action/swf6/ActionEnumerate2.java
index 7cea74328..c83417cc8 100644
--- a/trunk/src/com/jpexs/asdec/action/swf6/ActionEnumerate2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf6/ActionEnumerate2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf6;
diff --git a/trunk/src/com/jpexs/asdec/action/swf6/ActionGreater.java b/trunk/src/com/jpexs/asdec/action/swf6/ActionGreater.java
index e3a24db19..4b5cefa15 100644
--- a/trunk/src/com/jpexs/asdec/action/swf6/ActionGreater.java
+++ b/trunk/src/com/jpexs/asdec/action/swf6/ActionGreater.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf6;
diff --git a/trunk/src/com/jpexs/asdec/action/swf6/ActionInstanceOf.java b/trunk/src/com/jpexs/asdec/action/swf6/ActionInstanceOf.java
index 34cbe4402..53f5af9d9 100644
--- a/trunk/src/com/jpexs/asdec/action/swf6/ActionInstanceOf.java
+++ b/trunk/src/com/jpexs/asdec/action/swf6/ActionInstanceOf.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf6;
diff --git a/trunk/src/com/jpexs/asdec/action/swf6/ActionStrictEquals.java b/trunk/src/com/jpexs/asdec/action/swf6/ActionStrictEquals.java
index f7af3426b..6c997208b 100644
--- a/trunk/src/com/jpexs/asdec/action/swf6/ActionStrictEquals.java
+++ b/trunk/src/com/jpexs/asdec/action/swf6/ActionStrictEquals.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf6;
diff --git a/trunk/src/com/jpexs/asdec/action/swf6/ActionStringGreater.java b/trunk/src/com/jpexs/asdec/action/swf6/ActionStringGreater.java
index df61ce705..8473cfb22 100644
--- a/trunk/src/com/jpexs/asdec/action/swf6/ActionStringGreater.java
+++ b/trunk/src/com/jpexs/asdec/action/swf6/ActionStringGreater.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf6;
diff --git a/trunk/src/com/jpexs/asdec/action/swf7/ActionCastOp.java b/trunk/src/com/jpexs/asdec/action/swf7/ActionCastOp.java
index d64acc2b2..66c2f0f27 100644
--- a/trunk/src/com/jpexs/asdec/action/swf7/ActionCastOp.java
+++ b/trunk/src/com/jpexs/asdec/action/swf7/ActionCastOp.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf7;
diff --git a/trunk/src/com/jpexs/asdec/action/swf7/ActionDefineFunction2.java b/trunk/src/com/jpexs/asdec/action/swf7/ActionDefineFunction2.java
index fa2b38a00..17e378f8c 100644
--- a/trunk/src/com/jpexs/asdec/action/swf7/ActionDefineFunction2.java
+++ b/trunk/src/com/jpexs/asdec/action/swf7/ActionDefineFunction2.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf7;
diff --git a/trunk/src/com/jpexs/asdec/action/swf7/ActionExtends.java b/trunk/src/com/jpexs/asdec/action/swf7/ActionExtends.java
index 92bf5aa68..3997a4776 100644
--- a/trunk/src/com/jpexs/asdec/action/swf7/ActionExtends.java
+++ b/trunk/src/com/jpexs/asdec/action/swf7/ActionExtends.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf7;
diff --git a/trunk/src/com/jpexs/asdec/action/swf7/ActionImplementsOp.java b/trunk/src/com/jpexs/asdec/action/swf7/ActionImplementsOp.java
index cc2c28c2b..7e0bf1828 100644
--- a/trunk/src/com/jpexs/asdec/action/swf7/ActionImplementsOp.java
+++ b/trunk/src/com/jpexs/asdec/action/swf7/ActionImplementsOp.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf7;
diff --git a/trunk/src/com/jpexs/asdec/action/swf7/ActionThrow.java b/trunk/src/com/jpexs/asdec/action/swf7/ActionThrow.java
index ebcc19b82..b9468540b 100644
--- a/trunk/src/com/jpexs/asdec/action/swf7/ActionThrow.java
+++ b/trunk/src/com/jpexs/asdec/action/swf7/ActionThrow.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf7;
diff --git a/trunk/src/com/jpexs/asdec/action/swf7/ActionTry.java b/trunk/src/com/jpexs/asdec/action/swf7/ActionTry.java
index 5eda9ea17..1f12dd3fc 100644
--- a/trunk/src/com/jpexs/asdec/action/swf7/ActionTry.java
+++ b/trunk/src/com/jpexs/asdec/action/swf7/ActionTry.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.swf7;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/AsciiToCharTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/AsciiToCharTreeItem.java
index b043ddcf5..649137e8c 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/AsciiToCharTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/AsciiToCharTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/BreakTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/BreakTreeItem.java
index dfd6aad3f..1aabf9014 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/BreakTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/BreakTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/CallFunctionTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/CallFunctionTreeItem.java
index 206da1bea..44270c874 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/CallFunctionTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/CallFunctionTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/CallMethodTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/CallMethodTreeItem.java
index 0a9f6d69a..53867448d 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/CallMethodTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/CallMethodTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/CallTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/CallTreeItem.java
index 4dd0cc42b..24b1e34a9 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/CallTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/CallTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/CastOpTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/CastOpTreeItem.java
index 24602c3a0..90ff73a48 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/CastOpTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/CastOpTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/CharToAsciiTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/CharToAsciiTreeItem.java
index e3bb8c1fa..630f23b10 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/CharToAsciiTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/CharToAsciiTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/CloneSpriteTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/CloneSpriteTreeItem.java
index da588fa7c..411d1142a 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/CloneSpriteTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/CloneSpriteTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/ConstantPool.java b/trunk/src/com/jpexs/asdec/action/treemodel/ConstantPool.java
index 76e7e4e95..5bcf96e1f 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/ConstantPool.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/ConstantPool.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/ContinueTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/ContinueTreeItem.java
index f06310742..f11dc02dc 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/ContinueTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/ContinueTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/DecrementTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/DecrementTreeItem.java
index 39b43cd6c..61f982dac 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/DecrementTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/DecrementTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/DefineLocalTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/DefineLocalTreeItem.java
index cdc9f4afc..b71397e7a 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/DefineLocalTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/DefineLocalTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/DeleteTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/DeleteTreeItem.java
index 24c40ddec..abe05842c 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/DeleteTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/DeleteTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/DirectValueTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/DirectValueTreeItem.java
index 69ff6432d..2c8a1e3e8 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/DirectValueTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/DirectValueTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/EachTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/EachTreeItem.java
index 8735c6eb5..ae8083e04 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/EachTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/EachTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/EnumerateTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/EnumerateTreeItem.java
index 9908c474a..db108c281 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/EnumerateTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/EnumerateTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/ExtendsTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/ExtendsTreeItem.java
index ab7a7750e..819069a75 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/ExtendsTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/ExtendsTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/FSCommand2TreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/FSCommand2TreeItem.java
index 26a4878cb..248d56301 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/FSCommand2TreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/FSCommand2TreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/FunctionTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/FunctionTreeItem.java
index 2d00f8bc5..05f27a5f2 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/FunctionTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/FunctionTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/GetMemberTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/GetMemberTreeItem.java
index 41113352e..7ffe19e9d 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/GetMemberTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/GetMemberTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/GetPropertyTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/GetPropertyTreeItem.java
index 26bbd5f2f..2891a012b 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/GetPropertyTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/GetPropertyTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/GetURL2TreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/GetURL2TreeItem.java
index c1745cc1b..0fb15821d 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/GetURL2TreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/GetURL2TreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/GetURLTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/GetURLTreeItem.java
index 0cc22d6e0..e8d2d3a9b 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/GetURLTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/GetURLTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/GetVariableTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/GetVariableTreeItem.java
index 345c7ac24..1ade0c00c 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/GetVariableTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/GetVariableTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/GotoFrame2TreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/GotoFrame2TreeItem.java
index 008455e3e..be42197f6 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/GotoFrame2TreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/GotoFrame2TreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/GotoFrameTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/GotoFrameTreeItem.java
index c749b390b..1e45e2652 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/GotoFrameTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/GotoFrameTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/GotoLabelTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/GotoLabelTreeItem.java
index 22c901b21..3186f0621 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/GotoLabelTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/GotoLabelTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/ImplementsOpTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/ImplementsOpTreeItem.java
index 7c23fa94a..74ef6d14f 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/ImplementsOpTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/ImplementsOpTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/IncrementTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/IncrementTreeItem.java
index f8eee6dc6..c534c4885 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/IncrementTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/IncrementTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/InitArrayTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/InitArrayTreeItem.java
index 39f326662..4383370a7 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/InitArrayTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/InitArrayTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/InitObjectTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/InitObjectTreeItem.java
index a7975d378..43fb75156 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/InitObjectTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/InitObjectTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/MBAsciiToCharTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/MBAsciiToCharTreeItem.java
index a84f04f5d..c3d75f0ac 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/MBAsciiToCharTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/MBAsciiToCharTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/MBCharToAsciiTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/MBCharToAsciiTreeItem.java
index 5ddb606ff..364c44355 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/MBCharToAsciiTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/MBCharToAsciiTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/MBStringExtractTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/MBStringExtractTreeItem.java
index 5e990d1d9..105bfc6c9 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/MBStringExtractTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/MBStringExtractTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/NewMethodTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/NewMethodTreeItem.java
index 44e8796c6..6ecee75a9 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/NewMethodTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/NewMethodTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/NewObjectTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/NewObjectTreeItem.java
index 17e4b7a90..9c85db81e 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/NewObjectTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/NewObjectTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/RandomNumberTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/RandomNumberTreeItem.java
index 3450cc82d..ffd0db55c 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/RandomNumberTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/RandomNumberTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/RemoveSpriteTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/RemoveSpriteTreeItem.java
index a4f329580..7614f24cb 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/RemoveSpriteTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/RemoveSpriteTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/ReturnTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/ReturnTreeItem.java
index b89acd85b..b1c86b5e1 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/ReturnTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/ReturnTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/SetMemberTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/SetMemberTreeItem.java
index c9185c375..d32e7f76e 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/SetMemberTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/SetMemberTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/SetPropertyTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/SetPropertyTreeItem.java
index 2667ff19f..5a36746d7 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/SetPropertyTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/SetPropertyTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/SetTarget2TreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/SetTarget2TreeItem.java
index fa5d4e4db..7e1f177e7 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/SetTarget2TreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/SetTarget2TreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/SetTargetTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/SetTargetTreeItem.java
index 6217c3610..8fe9cc737 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/SetTargetTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/SetTargetTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/SetVariableTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/SetVariableTreeItem.java
index d5ee97b5f..e941040a6 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/SetVariableTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/SetVariableTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/SimpleActionTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/SimpleActionTreeItem.java
index 16b4dbe00..aff0684dc 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/SimpleActionTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/SimpleActionTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/StartDragTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/StartDragTreeItem.java
index a62cb8d7b..fb9bc5975 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/StartDragTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/StartDragTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/StoreRegisterTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/StoreRegisterTreeItem.java
index e2428c28e..f2f182c15 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/StoreRegisterTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/StoreRegisterTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/StrictModeTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/StrictModeTreeItem.java
index 2cc70f85e..860610d2f 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/StrictModeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/StrictModeTreeItem.java
@@ -1,20 +1,20 @@
/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Copyright (C) 2011 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 .
*/
+
package com.jpexs.asdec.action.treemodel;
import com.jpexs.asdec.action.Action;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/StringExtractTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/StringExtractTreeItem.java
index a8cfead0a..3b9482b7a 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/StringExtractTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/StringExtractTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/TargetPathTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/TargetPathTreeItem.java
index 0a582106c..097e9477d 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/TargetPathTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/TargetPathTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/ThrowTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/ThrowTreeItem.java
index 6922de1cd..afc53a622 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/ThrowTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/ThrowTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/ToIntegerTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/ToIntegerTreeItem.java
index 060a103db..fcd7e6181 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/ToIntegerTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/ToIntegerTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/ToNumberTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/ToNumberTreeItem.java
index 4772d0a22..1904ced8f 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/ToNumberTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/ToNumberTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/ToStringTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/ToStringTreeItem.java
index ce56ae21b..25620a4b9 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/ToStringTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/ToStringTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/TraceTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/TraceTreeItem.java
index 2700fa82d..f819a645c 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/TraceTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/TraceTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/TreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/TreeItem.java
index ac1448518..c3fa0f58c 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/TreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/TreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/TypeOfTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/TypeOfTreeItem.java
index d11ebc8d5..6a721fee1 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/TypeOfTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/TypeOfTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/UnsupportedTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/UnsupportedTreeItem.java
index e95b46dfa..e0e3c4b4d 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/UnsupportedTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/UnsupportedTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/VoidTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/VoidTreeItem.java
index d83a7cbd0..81caff24a 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/VoidTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/VoidTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/WaitForFrame2TreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/WaitForFrame2TreeItem.java
index 426ad1f6c..3a07d36ec 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/WaitForFrame2TreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/WaitForFrame2TreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/WaitForFrameTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/WaitForFrameTreeItem.java
index fef16890f..d9a9e6e25 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/WaitForFrameTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/WaitForFrameTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/Block.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/Block.java
index 29d9803a9..0eb569dfb 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/Block.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/Block.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/DoWhileTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/DoWhileTreeItem.java
index 4deacea9f..318b17466 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/DoWhileTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/DoWhileTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForEachTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForEachTreeItem.java
index cd0dd8dae..8efeb85af 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForEachTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForEachTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForInTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForInTreeItem.java
index db8c22d73..15b640a3b 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForInTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForInTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForTreeItem.java
index 3dd579dc7..2d98ccb9b 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/ForTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/IfTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/IfTreeItem.java
index 9afc20032..b93d10d04 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/IfTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/IfTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/LoopTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/LoopTreeItem.java
index 3d32c43df..ad5b3e0f5 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/LoopTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/LoopTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/SwitchTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/SwitchTreeItem.java
index 204ff0387..f2b21a59d 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/SwitchTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/SwitchTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/TernarOpTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/TernarOpTreeItem.java
index aa422f71e..534f23a3f 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/TernarOpTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/TernarOpTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/TryTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/TryTreeItem.java
index a0421e8cb..08d39cea6 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/TryTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/TryTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/WhileTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/WhileTreeItem.java
index 4fdeaa950..477c2e84c 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/WhileTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/WhileTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/WithTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/WithTreeItem.java
index 1252cf7cf..e39e99012 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/clauses/WithTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/clauses/WithTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.clauses;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/AddTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/AddTreeItem.java
index aa4627769..2f77a443d 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/AddTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/AddTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/AndTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/AndTreeItem.java
index 8091a924f..e9b807ddf 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/AndTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/AndTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/AsTypeTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/AsTypeTreeItem.java
index 489e7e1ab..c9f0f2298 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/AsTypeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/AsTypeTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/BinaryOpTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/BinaryOpTreeItem.java
index 710f2e2fe..0a8bb8b00 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/BinaryOpTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/BinaryOpTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitAndTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitAndTreeItem.java
index 441f363ac..122f60c7a 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitAndTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitAndTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitNotTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitNotTreeItem.java
index 0c4dd886b..9119e9bed 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitNotTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitNotTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitOrTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitOrTreeItem.java
index f82eb6e5b..7c75b702d 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitOrTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitOrTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitXorTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitXorTreeItem.java
index 6765ac83e..7b8a39f0e 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitXorTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/BitXorTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/DivideTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/DivideTreeItem.java
index 7c516a405..882125022 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/DivideTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/DivideTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/EqTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/EqTreeItem.java
index 03c5bd902..7265e05fa 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/EqTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/EqTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/GeTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/GeTreeItem.java
index de3514df5..5ba91d897 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/GeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/GeTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/GtTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/GtTreeItem.java
index 1d1e0ed2f..3ae44960a 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/GtTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/GtTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/InTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/InTreeItem.java
index df3a9f0d2..6ea70ec29 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/InTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/InTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/InstanceOfTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/InstanceOfTreeItem.java
index ee1a6bf17..9bdbf8439 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/InstanceOfTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/InstanceOfTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/IsTypeTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/IsTypeTreeItem.java
index 90ce560a3..87522902e 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/IsTypeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/IsTypeTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/LShiftTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/LShiftTreeItem.java
index 82e81e691..c777da2f5 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/LShiftTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/LShiftTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/LeTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/LeTreeItem.java
index bebb73510..dfeb12c22 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/LeTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/LeTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/LtTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/LtTreeItem.java
index a675cfd96..a098041d4 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/LtTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/LtTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/MBStringLengthTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/MBStringLengthTreeItem.java
index 966659ded..da7783a55 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/MBStringLengthTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/MBStringLengthTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/ModuloTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/ModuloTreeItem.java
index 800c4c3ac..94d147190 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/ModuloTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/ModuloTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/MultiplyTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/MultiplyTreeItem.java
index dee008a3b..d2530f572 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/MultiplyTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/MultiplyTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/NegTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/NegTreeItem.java
index 0ab91cd68..55ffc9b49 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/NegTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/NegTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/NeqTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/NeqTreeItem.java
index e93fd887e..b4066a0b0 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/NeqTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/NeqTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/NotTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/NotTreeItem.java
index 1bd919cd8..a8cc9b3c2 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/NotTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/NotTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/OrTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/OrTreeItem.java
index 6a2eacfd5..ab68f1637 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/OrTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/OrTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/PreDecrementTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/PreDecrementTreeItem.java
index cca267430..08ee8beb6 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/PreDecrementTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/PreDecrementTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/PreIncrementTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/PreIncrementTreeItem.java
index 92c3ed729..2fb537af0 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/PreIncrementTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/PreIncrementTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/RShiftTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/RShiftTreeItem.java
index 50954cf71..b2e8b1503 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/RShiftTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/RShiftTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StrictEqTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StrictEqTreeItem.java
index 08bb26475..f53164f61 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StrictEqTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StrictEqTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StrictNeqTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StrictNeqTreeItem.java
index 4b5351289..c009a89a1 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StrictNeqTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StrictNeqTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringAddTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringAddTreeItem.java
index 5a6a2afcd..baf71184c 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringAddTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringAddTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringEqTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringEqTreeItem.java
index 7593c7c9a..c57e1c49e 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringEqTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringEqTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringLengthTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringLengthTreeItem.java
index c3d159f89..2934b7ccc 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringLengthTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringLengthTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringLtTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringLtTreeItem.java
index 2e739e39f..db0baa7a4 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringLtTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/StringLtTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/SubtractTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/SubtractTreeItem.java
index bba261582..ebf9280da 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/SubtractTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/SubtractTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/URShiftTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/URShiftTreeItem.java
index e7a11e4aa..380b413fb 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/URShiftTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/URShiftTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/action/treemodel/operations/UnaryOpTreeItem.java b/trunk/src/com/jpexs/asdec/action/treemodel/operations/UnaryOpTreeItem.java
index ed306c3df..8b64b8ee8 100644
--- a/trunk/src/com/jpexs/asdec/action/treemodel/operations/UnaryOpTreeItem.java
+++ b/trunk/src/com/jpexs/asdec/action/treemodel/operations/UnaryOpTreeItem.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.action.treemodel.operations;
diff --git a/trunk/src/com/jpexs/asdec/gui/AboutDialog.java b/trunk/src/com/jpexs/asdec/gui/AboutDialog.java
index 16bd63bd0..d7e82755c 100644
--- a/trunk/src/com/jpexs/asdec/gui/AboutDialog.java
+++ b/trunk/src/com/jpexs/asdec/gui/AboutDialog.java
@@ -1,110 +1,109 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.gui;
-
-import com.jpexs.asdec.Main;
-import java.awt.Color;
-import java.awt.Container;
-import java.awt.Dimension;
-import java.awt.FlowLayout;
-import java.awt.Font;
-import java.awt.event.ActionEvent;
-import java.awt.event.ActionListener;
-import javax.swing.JButton;
-import javax.swing.JDialog;
-import javax.swing.JLabel;
-import javax.swing.SwingConstants;
-
-/**
- *
- * @author JPEXS
- */
-public class AboutDialog extends JDialog {
- public AboutDialog() {
- setDefaultCloseOperation(HIDE_ON_CLOSE);
- setSize(new Dimension(300,270));
- setTitle("About");
-
-
- Container cp=getContentPane();
- cp.setLayout(new FlowLayout());
-
- JLabel jpLabel=new JLabel("JP");
- jpLabel.setForeground(new Color(0,0,160));
- jpLabel.setFont(new Font("Tahoma",Font.BOLD,25));
- jpLabel.setHorizontalAlignment(SwingConstants.CENTER);
- cp.add(jpLabel);
-
- JLabel asLabel=new JLabel("ActionScript");
- asLabel.setFont(new Font("Tahoma",Font.BOLD,25));
- asLabel.setHorizontalAlignment(SwingConstants.CENTER);
- cp.add(asLabel);
-
- JLabel decLabel=new JLabel("Decompiler");
- decLabel.setForeground(Color.red);
- decLabel.setFont(new Font("Tahoma",Font.BOLD,25));
- decLabel.setHorizontalAlignment(SwingConstants.CENTER);
- cp.add(decLabel);
-
- JLabel verLabel=new JLabel("version "+Main.version);
- verLabel.setPreferredSize(new Dimension(300, 15));
- verLabel.setFont(new Font("Tahoma",Font.BOLD,15));
- verLabel.setHorizontalAlignment(SwingConstants.CENTER);
- cp.add(verLabel);
-
-
- JLabel byLabel=new JLabel("by");
- byLabel.setPreferredSize(new Dimension(300, 15));
- byLabel.setHorizontalAlignment(SwingConstants.CENTER);
- cp.add(byLabel);
-
- JLabel jpexsLabel=new JLabel("JPEXS");
- jpexsLabel.setForeground(new Color(0,0,160));
- jpexsLabel.setFont(new Font("Tahoma",Font.BOLD,20));
- jpexsLabel.setPreferredSize(new Dimension(300, 25));
- jpexsLabel.setHorizontalAlignment(SwingConstants.CENTER);
- cp.add(jpexsLabel);
-
- JLabel dateLabel=new JLabel("2010-2011");
- dateLabel.setPreferredSize(new Dimension(300, 10));
- dateLabel.setHorizontalAlignment(SwingConstants.CENTER);
- cp.add(dateLabel);
-
- LinkLabel wwwLabel=new LinkLabel("http://code.google.com/p/asdec/");
- wwwLabel.setForeground(Color.blue);
- wwwLabel.setPreferredSize(new Dimension(300, 25));
- wwwLabel.setHorizontalAlignment(SwingConstants.CENTER);
- cp.add(wwwLabel);
-
- JButton okButton=new JButton("OK");
- cp.add(okButton);
- okButton.addActionListener(new ActionListener(){
-
- public void actionPerformed(ActionEvent e) {
- setVisible(false);
- }
- });
-
- setModal(true);
- View.centerScreen(this);
- View.setWindowIcon(this);
- }
-
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.gui;
+
+import com.jpexs.asdec.Main;
+import java.awt.Color;
+import java.awt.Container;
+import java.awt.Dimension;
+import java.awt.FlowLayout;
+import java.awt.Font;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import javax.swing.JButton;
+import javax.swing.JDialog;
+import javax.swing.JLabel;
+import javax.swing.SwingConstants;
+
+/**
+ *
+ * @author JPEXS
+ */
+public class AboutDialog extends JDialog {
+ public AboutDialog() {
+ setDefaultCloseOperation(HIDE_ON_CLOSE);
+ setSize(new Dimension(300,270));
+ setTitle("About");
+
+
+ Container cp=getContentPane();
+ cp.setLayout(new FlowLayout());
+
+ JLabel jpLabel=new JLabel("JP");
+ jpLabel.setForeground(new Color(0,0,160));
+ jpLabel.setFont(new Font("Tahoma",Font.BOLD,25));
+ jpLabel.setHorizontalAlignment(SwingConstants.CENTER);
+ cp.add(jpLabel);
+
+ JLabel asLabel=new JLabel("ActionScript");
+ asLabel.setFont(new Font("Tahoma",Font.BOLD,25));
+ asLabel.setHorizontalAlignment(SwingConstants.CENTER);
+ cp.add(asLabel);
+
+ JLabel decLabel=new JLabel("Decompiler");
+ decLabel.setForeground(Color.red);
+ decLabel.setFont(new Font("Tahoma",Font.BOLD,25));
+ decLabel.setHorizontalAlignment(SwingConstants.CENTER);
+ cp.add(decLabel);
+
+ JLabel verLabel=new JLabel("version "+Main.version);
+ verLabel.setPreferredSize(new Dimension(300, 15));
+ verLabel.setFont(new Font("Tahoma",Font.BOLD,15));
+ verLabel.setHorizontalAlignment(SwingConstants.CENTER);
+ cp.add(verLabel);
+
+
+ JLabel byLabel=new JLabel("by");
+ byLabel.setPreferredSize(new Dimension(300, 15));
+ byLabel.setHorizontalAlignment(SwingConstants.CENTER);
+ cp.add(byLabel);
+
+ JLabel jpexsLabel=new JLabel("JPEXS");
+ jpexsLabel.setForeground(new Color(0,0,160));
+ jpexsLabel.setFont(new Font("Tahoma",Font.BOLD,20));
+ jpexsLabel.setPreferredSize(new Dimension(300, 25));
+ jpexsLabel.setHorizontalAlignment(SwingConstants.CENTER);
+ cp.add(jpexsLabel);
+
+ JLabel dateLabel=new JLabel("2010-2011");
+ dateLabel.setPreferredSize(new Dimension(300, 10));
+ dateLabel.setHorizontalAlignment(SwingConstants.CENTER);
+ cp.add(dateLabel);
+
+ LinkLabel wwwLabel=new LinkLabel("http://code.google.com/p/asdec/");
+ wwwLabel.setForeground(Color.blue);
+ wwwLabel.setPreferredSize(new Dimension(300, 25));
+ wwwLabel.setHorizontalAlignment(SwingConstants.CENTER);
+ cp.add(wwwLabel);
+
+ JButton okButton=new JButton("OK");
+ cp.add(okButton);
+ okButton.addActionListener(new ActionListener(){
+
+ public void actionPerformed(ActionEvent e) {
+ setVisible(false);
+ }
+ });
+
+ setModal(true);
+ View.centerScreen(this);
+ View.setWindowIcon(this);
+ }
+
+
+}
diff --git a/trunk/src/com/jpexs/asdec/gui/LinkLabel.java b/trunk/src/com/jpexs/asdec/gui/LinkLabel.java
index 3dca092da..ed351c779 100644
--- a/trunk/src/com/jpexs/asdec/gui/LinkLabel.java
+++ b/trunk/src/com/jpexs/asdec/gui/LinkLabel.java
@@ -1,114 +1,113 @@
-/*
- * Copyright (C) 2011 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 2
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-package com.jpexs.asdec.gui;
-
-
-import java.awt.Cursor;
-import java.awt.event.ActionEvent;
-import java.awt.event.ActionListener;
-import java.awt.event.MouseEvent;
-import javax.swing.JLabel;
-
-
-/**
- * An extension of JLabel which looks like a link and responds appropriately
- * when clicked. Note that this class will only work with Swing 1.1.1 and later.
- * Note that because of the way this class is implemented, getText() will not
- * return correct values, user getNormalText instead.
- */
-
-public class LinkLabel extends JLabel{
-
-
-
- /**
- * The normal text set by the user.
- */
-
- private String text;
-
-
-
-
- /**
- * Creates a new LinkLabel with the given text.
- */
-
- public LinkLabel(String text){
- super(text);
-
- setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
-
- enableEvents(MouseEvent.MOUSE_EVENT_MASK);
- }
-
-
-
-
- /**
- * Sets the text of the label.
- */
-
- public void setText(String text){
- super.setText(""+text+"");
- this.text = text;
- }
-
-
-
-
- /**
- * Returns the text set by the user.
- */
-
- public String getNormalText(){
- return text;
- }
-
-
-
-
- /**
- * Processes mouse events and responds to clicks.
- */
-
- protected void processMouseEvent(MouseEvent evt){
- super.processMouseEvent(evt);
- if (evt.getID() == MouseEvent.MOUSE_CLICKED)
- clicked();
- }
-
-
- protected void clicked(){
- if(java.awt.Desktop.isDesktopSupported() )
- {
- java.awt.Desktop desktop = java.awt.Desktop.getDesktop();
- try {
- java.net.URI uri = new java.net.URI( getNormalText() );
- desktop.browse( uri );
- }
- catch ( Exception e ) {
-
- System.err.println( e.getMessage() );
- }
- }
- }
-
-
-}
+/*
+ * Copyright (C) 2011 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 .
+ */
+
+package com.jpexs.asdec.gui;
+
+
+import java.awt.Cursor;
+import java.awt.event.ActionEvent;
+import java.awt.event.ActionListener;
+import java.awt.event.MouseEvent;
+import javax.swing.JLabel;
+
+
+/**
+ * An extension of JLabel which looks like a link and responds appropriately
+ * when clicked. Note that this class will only work with Swing 1.1.1 and later.
+ * Note that because of the way this class is implemented, getText() will not
+ * return correct values, user getNormalText instead.
+ */
+
+public class LinkLabel extends JLabel{
+
+
+
+ /**
+ * The normal text set by the user.
+ */
+
+ private String text;
+
+
+
+
+ /**
+ * Creates a new LinkLabel with the given text.
+ */
+
+ public LinkLabel(String text){
+ super(text);
+
+ setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
+
+ enableEvents(MouseEvent.MOUSE_EVENT_MASK);
+ }
+
+
+
+
+ /**
+ * Sets the text of the label.
+ */
+
+ public void setText(String text){
+ super.setText(""+text+"");
+ this.text = text;
+ }
+
+
+
+
+ /**
+ * Returns the text set by the user.
+ */
+
+ public String getNormalText(){
+ return text;
+ }
+
+
+
+
+ /**
+ * Processes mouse events and responds to clicks.
+ */
+
+ protected void processMouseEvent(MouseEvent evt){
+ super.processMouseEvent(evt);
+ if (evt.getID() == MouseEvent.MOUSE_CLICKED)
+ clicked();
+ }
+
+
+ protected void clicked(){
+ if(java.awt.Desktop.isDesktopSupported() )
+ {
+ java.awt.Desktop desktop = java.awt.Desktop.getDesktop();
+ try {
+ java.net.URI uri = new java.net.URI( getNormalText() );
+ desktop.browse( uri );
+ }
+ catch ( Exception e ) {
+
+ System.err.println( e.getMessage() );
+ }
+ }
+ }
+
+
+}
diff --git a/trunk/src/com/jpexs/asdec/gui/LoadingDialog.java b/trunk/src/com/jpexs/asdec/gui/LoadingDialog.java
index 7f3401174..40642a975 100644
--- a/trunk/src/com/jpexs/asdec/gui/LoadingDialog.java
+++ b/trunk/src/com/jpexs/asdec/gui/LoadingDialog.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.gui;
diff --git a/trunk/src/com/jpexs/asdec/gui/LoadingPanel.java b/trunk/src/com/jpexs/asdec/gui/LoadingPanel.java
index 7b1fcf8fe..87fde15f8 100644
--- a/trunk/src/com/jpexs/asdec/gui/LoadingPanel.java
+++ b/trunk/src/com/jpexs/asdec/gui/LoadingPanel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.gui;
diff --git a/trunk/src/com/jpexs/asdec/gui/ModeFrame.java b/trunk/src/com/jpexs/asdec/gui/ModeFrame.java
index f6e0d8b6f..9d22a617e 100644
--- a/trunk/src/com/jpexs/asdec/gui/ModeFrame.java
+++ b/trunk/src/com/jpexs/asdec/gui/ModeFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.gui;
diff --git a/trunk/src/com/jpexs/asdec/gui/View.java b/trunk/src/com/jpexs/asdec/gui/View.java
index 51875ee7b..f2347d8fe 100644
--- a/trunk/src/com/jpexs/asdec/gui/View.java
+++ b/trunk/src/com/jpexs/asdec/gui/View.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.gui;
diff --git a/trunk/src/com/jpexs/asdec/gui/proxy/ProxyFrame.java b/trunk/src/com/jpexs/asdec/gui/proxy/ProxyFrame.java
index 02e083eb2..43f5556a7 100644
--- a/trunk/src/com/jpexs/asdec/gui/proxy/ProxyFrame.java
+++ b/trunk/src/com/jpexs/asdec/gui/proxy/ProxyFrame.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.gui.proxy;
diff --git a/trunk/src/com/jpexs/asdec/gui/proxy/SWFListModel.java b/trunk/src/com/jpexs/asdec/gui/proxy/SWFListModel.java
index 4cc229b15..d1cc76d49 100644
--- a/trunk/src/com/jpexs/asdec/gui/proxy/SWFListModel.java
+++ b/trunk/src/com/jpexs/asdec/gui/proxy/SWFListModel.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.gui.proxy;
diff --git a/trunk/src/com/jpexs/asdec/helpers/Helper.java b/trunk/src/com/jpexs/asdec/helpers/Helper.java
index 280dd0d2c..2d4cd1ef0 100644
--- a/trunk/src/com/jpexs/asdec/helpers/Helper.java
+++ b/trunk/src/com/jpexs/asdec/helpers/Helper.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.helpers;
diff --git a/trunk/src/com/jpexs/asdec/helpers/Highlighting.java b/trunk/src/com/jpexs/asdec/helpers/Highlighting.java
index d3cfb7bbb..e4dc44b41 100644
--- a/trunk/src/com/jpexs/asdec/helpers/Highlighting.java
+++ b/trunk/src/com/jpexs/asdec/helpers/Highlighting.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.helpers;
diff --git a/trunk/src/com/jpexs/asdec/tags/ASMSource.java b/trunk/src/com/jpexs/asdec/tags/ASMSource.java
index 5b3c0abc6..b77871640 100644
--- a/trunk/src/com/jpexs/asdec/tags/ASMSource.java
+++ b/trunk/src/com/jpexs/asdec/tags/ASMSource.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/Container.java b/trunk/src/com/jpexs/asdec/tags/Container.java
index 2fc99137b..082547fae 100644
--- a/trunk/src/com/jpexs/asdec/tags/Container.java
+++ b/trunk/src/com/jpexs/asdec/tags/Container.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/DefineButton2Tag.java b/trunk/src/com/jpexs/asdec/tags/DefineButton2Tag.java
index 1e1d599eb..1eee706dd 100644
--- a/trunk/src/com/jpexs/asdec/tags/DefineButton2Tag.java
+++ b/trunk/src/com/jpexs/asdec/tags/DefineButton2Tag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/DefineButtonTag.java b/trunk/src/com/jpexs/asdec/tags/DefineButtonTag.java
index 37f50b053..e6ea1ff93 100644
--- a/trunk/src/com/jpexs/asdec/tags/DefineButtonTag.java
+++ b/trunk/src/com/jpexs/asdec/tags/DefineButtonTag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/DefineSpriteTag.java b/trunk/src/com/jpexs/asdec/tags/DefineSpriteTag.java
index 44cb61123..f44d5f5cd 100644
--- a/trunk/src/com/jpexs/asdec/tags/DefineSpriteTag.java
+++ b/trunk/src/com/jpexs/asdec/tags/DefineSpriteTag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/DoABCTag.java b/trunk/src/com/jpexs/asdec/tags/DoABCTag.java
index a98750425..81329752a 100644
--- a/trunk/src/com/jpexs/asdec/tags/DoABCTag.java
+++ b/trunk/src/com/jpexs/asdec/tags/DoABCTag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/DoActionTag.java b/trunk/src/com/jpexs/asdec/tags/DoActionTag.java
index d36ec9de5..0a1e44c63 100644
--- a/trunk/src/com/jpexs/asdec/tags/DoActionTag.java
+++ b/trunk/src/com/jpexs/asdec/tags/DoActionTag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/DoInitActionTag.java b/trunk/src/com/jpexs/asdec/tags/DoInitActionTag.java
index 50f047106..24570240d 100644
--- a/trunk/src/com/jpexs/asdec/tags/DoInitActionTag.java
+++ b/trunk/src/com/jpexs/asdec/tags/DoInitActionTag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/ExportAssetsTag.java b/trunk/src/com/jpexs/asdec/tags/ExportAssetsTag.java
index d4eb44879..20fb97528 100644
--- a/trunk/src/com/jpexs/asdec/tags/ExportAssetsTag.java
+++ b/trunk/src/com/jpexs/asdec/tags/ExportAssetsTag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/PlaceObject2Tag.java b/trunk/src/com/jpexs/asdec/tags/PlaceObject2Tag.java
index 4ba7c3f9e..1b2f8e96e 100644
--- a/trunk/src/com/jpexs/asdec/tags/PlaceObject2Tag.java
+++ b/trunk/src/com/jpexs/asdec/tags/PlaceObject2Tag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/PlaceObject3Tag.java b/trunk/src/com/jpexs/asdec/tags/PlaceObject3Tag.java
index e42f3292f..b755eddff 100644
--- a/trunk/src/com/jpexs/asdec/tags/PlaceObject3Tag.java
+++ b/trunk/src/com/jpexs/asdec/tags/PlaceObject3Tag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/ShowFrameTag.java b/trunk/src/com/jpexs/asdec/tags/ShowFrameTag.java
index 5cf22eb44..a4a6bb8af 100644
--- a/trunk/src/com/jpexs/asdec/tags/ShowFrameTag.java
+++ b/trunk/src/com/jpexs/asdec/tags/ShowFrameTag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/tags/Tag.java b/trunk/src/com/jpexs/asdec/tags/Tag.java
index cdbbf950f..154129338 100644
--- a/trunk/src/com/jpexs/asdec/tags/Tag.java
+++ b/trunk/src/com/jpexs/asdec/tags/Tag.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.tags;
diff --git a/trunk/src/com/jpexs/asdec/types/ARGB.java b/trunk/src/com/jpexs/asdec/types/ARGB.java
index e718b9b54..061931178 100644
--- a/trunk/src/com/jpexs/asdec/types/ARGB.java
+++ b/trunk/src/com/jpexs/asdec/types/ARGB.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types;
diff --git a/trunk/src/com/jpexs/asdec/types/BUTTONCONDACTION.java b/trunk/src/com/jpexs/asdec/types/BUTTONCONDACTION.java
index b3f647db3..f3711b81f 100644
--- a/trunk/src/com/jpexs/asdec/types/BUTTONCONDACTION.java
+++ b/trunk/src/com/jpexs/asdec/types/BUTTONCONDACTION.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types;
diff --git a/trunk/src/com/jpexs/asdec/types/BUTTONRECORD.java b/trunk/src/com/jpexs/asdec/types/BUTTONRECORD.java
index 161a77a45..5e737dce6 100644
--- a/trunk/src/com/jpexs/asdec/types/BUTTONRECORD.java
+++ b/trunk/src/com/jpexs/asdec/types/BUTTONRECORD.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types;
diff --git a/trunk/src/com/jpexs/asdec/types/CLIPACTIONRECORD.java b/trunk/src/com/jpexs/asdec/types/CLIPACTIONRECORD.java
index 2a54015ac..10e3b6eb0 100644
--- a/trunk/src/com/jpexs/asdec/types/CLIPACTIONRECORD.java
+++ b/trunk/src/com/jpexs/asdec/types/CLIPACTIONRECORD.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types;
diff --git a/trunk/src/com/jpexs/asdec/types/CLIPACTIONS.java b/trunk/src/com/jpexs/asdec/types/CLIPACTIONS.java
index 431831e4b..5de774f92 100644
--- a/trunk/src/com/jpexs/asdec/types/CLIPACTIONS.java
+++ b/trunk/src/com/jpexs/asdec/types/CLIPACTIONS.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types;
diff --git a/trunk/src/com/jpexs/asdec/types/CLIPEVENTFLAGS.java b/trunk/src/com/jpexs/asdec/types/CLIPEVENTFLAGS.java
index 07e911ac5..d1c9abf17 100644
--- a/trunk/src/com/jpexs/asdec/types/CLIPEVENTFLAGS.java
+++ b/trunk/src/com/jpexs/asdec/types/CLIPEVENTFLAGS.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types;
diff --git a/trunk/src/com/jpexs/asdec/types/CXFORMWITHALPHA.java b/trunk/src/com/jpexs/asdec/types/CXFORMWITHALPHA.java
index 305f56970..7bb59c2c4 100644
--- a/trunk/src/com/jpexs/asdec/types/CXFORMWITHALPHA.java
+++ b/trunk/src/com/jpexs/asdec/types/CXFORMWITHALPHA.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types;
diff --git a/trunk/src/com/jpexs/asdec/types/MATRIX.java b/trunk/src/com/jpexs/asdec/types/MATRIX.java
index 439e35cbf..229bd2a16 100644
--- a/trunk/src/com/jpexs/asdec/types/MATRIX.java
+++ b/trunk/src/com/jpexs/asdec/types/MATRIX.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types;
diff --git a/trunk/src/com/jpexs/asdec/types/RECT.java b/trunk/src/com/jpexs/asdec/types/RECT.java
index 1945c3874..3349b8443 100644
--- a/trunk/src/com/jpexs/asdec/types/RECT.java
+++ b/trunk/src/com/jpexs/asdec/types/RECT.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types;
diff --git a/trunk/src/com/jpexs/asdec/types/RGBA.java b/trunk/src/com/jpexs/asdec/types/RGBA.java
index 49289b8a3..1740191ba 100644
--- a/trunk/src/com/jpexs/asdec/types/RGBA.java
+++ b/trunk/src/com/jpexs/asdec/types/RGBA.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types;
diff --git a/trunk/src/com/jpexs/asdec/types/filters/BEVELFILTER.java b/trunk/src/com/jpexs/asdec/types/filters/BEVELFILTER.java
index 47bf28ea4..5b2105356 100644
--- a/trunk/src/com/jpexs/asdec/types/filters/BEVELFILTER.java
+++ b/trunk/src/com/jpexs/asdec/types/filters/BEVELFILTER.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types.filters;
diff --git a/trunk/src/com/jpexs/asdec/types/filters/BLURFILTER.java b/trunk/src/com/jpexs/asdec/types/filters/BLURFILTER.java
index 1befd3590..a4b5efeeb 100644
--- a/trunk/src/com/jpexs/asdec/types/filters/BLURFILTER.java
+++ b/trunk/src/com/jpexs/asdec/types/filters/BLURFILTER.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types.filters;
diff --git a/trunk/src/com/jpexs/asdec/types/filters/COLORMATRIXFILTER.java b/trunk/src/com/jpexs/asdec/types/filters/COLORMATRIXFILTER.java
index 51fe69804..14f14b2bd 100644
--- a/trunk/src/com/jpexs/asdec/types/filters/COLORMATRIXFILTER.java
+++ b/trunk/src/com/jpexs/asdec/types/filters/COLORMATRIXFILTER.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types.filters;
diff --git a/trunk/src/com/jpexs/asdec/types/filters/CONVOLUTIONFILTER.java b/trunk/src/com/jpexs/asdec/types/filters/CONVOLUTIONFILTER.java
index a15f0ef4f..0130c5934 100644
--- a/trunk/src/com/jpexs/asdec/types/filters/CONVOLUTIONFILTER.java
+++ b/trunk/src/com/jpexs/asdec/types/filters/CONVOLUTIONFILTER.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types.filters;
diff --git a/trunk/src/com/jpexs/asdec/types/filters/DROPSHADOWFILTER.java b/trunk/src/com/jpexs/asdec/types/filters/DROPSHADOWFILTER.java
index fb64ade3a..d0d65dc33 100644
--- a/trunk/src/com/jpexs/asdec/types/filters/DROPSHADOWFILTER.java
+++ b/trunk/src/com/jpexs/asdec/types/filters/DROPSHADOWFILTER.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types.filters;
diff --git a/trunk/src/com/jpexs/asdec/types/filters/FILTER.java b/trunk/src/com/jpexs/asdec/types/filters/FILTER.java
index 7f26389b7..87b01f9fe 100644
--- a/trunk/src/com/jpexs/asdec/types/filters/FILTER.java
+++ b/trunk/src/com/jpexs/asdec/types/filters/FILTER.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types.filters;
diff --git a/trunk/src/com/jpexs/asdec/types/filters/GLOWFILTER.java b/trunk/src/com/jpexs/asdec/types/filters/GLOWFILTER.java
index bd7e73718..41c029f2a 100644
--- a/trunk/src/com/jpexs/asdec/types/filters/GLOWFILTER.java
+++ b/trunk/src/com/jpexs/asdec/types/filters/GLOWFILTER.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types.filters;
diff --git a/trunk/src/com/jpexs/asdec/types/filters/GRADIENTBEVELFILTER.java b/trunk/src/com/jpexs/asdec/types/filters/GRADIENTBEVELFILTER.java
index 3c52ef9dd..129f3668d 100644
--- a/trunk/src/com/jpexs/asdec/types/filters/GRADIENTBEVELFILTER.java
+++ b/trunk/src/com/jpexs/asdec/types/filters/GRADIENTBEVELFILTER.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types.filters;
diff --git a/trunk/src/com/jpexs/asdec/types/filters/GRADIENTGLOWFILTER.java b/trunk/src/com/jpexs/asdec/types/filters/GRADIENTGLOWFILTER.java
index 73d3115cb..83fcfcb00 100644
--- a/trunk/src/com/jpexs/asdec/types/filters/GRADIENTGLOWFILTER.java
+++ b/trunk/src/com/jpexs/asdec/types/filters/GRADIENTGLOWFILTER.java
@@ -1,10 +1,10 @@
/*
* Copyright (C) 2010-2011 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 2
- * of the License, or (at your option) any later version.
+ * 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
@@ -12,8 +12,7 @@
* 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program. If not, see .
*/
package com.jpexs.asdec.types.filters;