浏览代码

BETA: Moving all tools inside com.l2jserver.tools

Rumen Nikiforov 13 年之前
父节点
当前提交
f1090e6939
共有 35 个文件被更改,包括 66 次插入66 次删除
  1. 3 3
      L2J_Server_BETA/build.xml
  2. 1 1
      L2J_Server_BETA/dist/login/RegisterGameServer.bat
  3. 二进制
      L2J_Server_BETA/dist/login/RegisterGameServer.exe
  4. 1 1
      L2J_Server_BETA/dist/login/RegisterGameServer.ps1
  5. 1 1
      L2J_Server_BETA/dist/login/RegisterGameServer.sh
  6. 1 1
      L2J_Server_BETA/dist/login/startSQLAccountManager.bat
  7. 1 1
      L2J_Server_BETA/dist/login/startSQLAccountManager.ps1
  8. 1 1
      L2J_Server_BETA/dist/login/startSQLAccountManager.sh
  9. 3 3
      L2J_Server_BETA/java/com/l2jserver/tools/accountmanager/SQLAccountManager.java
  10. 5 5
      L2J_Server_BETA/java/com/l2jserver/tools/configurator/ConfigUserInterface.java
  11. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/configurator/JIPTextField.java
  12. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/DBOutputInterface.java
  13. 3 3
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/LauncherCS.java
  14. 3 3
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/LauncherGS.java
  15. 3 3
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/LauncherLS.java
  16. 4 4
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/RunTasks.java
  17. 4 4
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/console/DBInstallerConsole.java
  18. 5 5
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/gui/DBConfigGUI.java
  19. 3 3
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/gui/DBInstallerGUI.java
  20. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/util/FileWriterStdout.java
  21. 3 3
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/util/mysql/DBDumper.java
  22. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/util/mysql/MySqlConnect.java
  23. 2 2
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/util/mysql/ScriptExecutor.java
  24. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/util/swing/SpringUtilities.java
  25. 2 2
      L2J_Server_BETA/java/com/l2jserver/tools/gsregistering/BaseGameServerRegister.java
  26. 3 3
      L2J_Server_BETA/java/com/l2jserver/tools/gsregistering/GUserInterface.java
  27. 2 2
      L2J_Server_BETA/java/com/l2jserver/tools/gsregistering/GameServerRegister.java
  28. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/gsregistering/RegisterDialog.java
  29. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/i18n/LanguageControl.java
  30. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/images/ImagesTable.java
  31. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/ngl/ConsoleLocalizator.java
  32. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/ngl/LocaleCodes.java
  33. 1 1
      L2J_Server_BETA/java/com/l2jserver/tools/ngl/LocalizationParser.java
  34. 二进制
      L2J_Server_BETA/misc/L2JConfig.exe
  35. 1 1
      L2J_Server_BETA/misc/L2JConfig.sh

+ 3 - 3
L2J_Server_BETA/build.xml

@@ -102,7 +102,7 @@
 				<attribute name="Class-Path" value="${manifest.libs}" />
 				<attribute name="Implementation-URL" value="http://www.l2jserver.com/" />
 				<attribute name="Implementation-Version" value="${l2j.version}" />
-				<attribute name="Main-Class" value="com.l2jserver.dbinstaller.LauncherCS" />
+				<attribute name="Main-Class" value="com.l2jserver.tools.dbinstaller.LauncherCS" />
 			</manifest>
 		</jar>
 		<jar destfile="${build.dist.tools}/dbinst_gs.jar">
@@ -119,7 +119,7 @@
 				<attribute name="Class-Path" value="${manifest.libs}" />
 				<attribute name="Implementation-URL" value="http://www.l2jserver.com/" />
 				<attribute name="Implementation-Version" value="${l2j.version}" />
-				<attribute name="Main-Class" value="com.l2jserver.dbinstaller.LauncherGS" />
+				<attribute name="Main-Class" value="com.l2jserver.tools.dbinstaller.LauncherGS" />
 			</manifest>
 		</jar>
 		<jar destfile="${build.dist.tools}/dbinst_ls.jar">
@@ -136,7 +136,7 @@
 				<attribute name="Class-Path" value="${manifest.libs}" />
 				<attribute name="Implementation-URL" value="http://www.l2jserver.com/" />
 				<attribute name="Implementation-Version" value="${l2j.version}" />
-				<attribute name="Main-Class" value="com.l2jserver.dbinstaller.LauncherLS" />
+				<attribute name="Main-Class" value="com.l2jserver.tools.dbinstaller.LauncherLS" />
 			</manifest>
 		</jar>
 	</target>

+ 1 - 1
L2J_Server_BETA/dist/login/RegisterGameServer.bat

@@ -1,5 +1,5 @@
 @echo off
 color 17
 cls
-java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*;l2jlogin.jar com.l2jserver.gsregistering.BaseGameServerRegister -c
+java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*;l2jlogin.jar com.l2jserver.tools.gsregistering.BaseGameServerRegister -c
 exit

二进制
L2J_Server_BETA/dist/login/RegisterGameServer.exe


+ 1 - 1
L2J_Server_BETA/dist/login/RegisterGameServer.ps1

@@ -1,4 +1,4 @@
 $OutputEncoding = New-Object -typename System.Text.UTF8Encoding
 $a = (Get-Host).UI.RawUI
 $a.WindowTitle = "L2J - Register Game Server"
-java "-Djava.util.logging.config.file=console.cfg" -cp "./../libs/*;l2jlogin.jar" com.l2jserver.gsregistering.BaseGameServerRegister -c
+java "-Djava.util.logging.config.file=console.cfg" -cp "./../libs/*;l2jlogin.jar" com.l2jserver.tools.gsregistering.BaseGameServerRegister -c

+ 1 - 1
L2J_Server_BETA/dist/login/RegisterGameServer.sh

@@ -1,2 +1,2 @@
 #!/bin/sh
-java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*:l2jlogin.jar com.l2jserver.gsregistering.GameServerRegister -c
+java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*:l2jlogin.jar com.l2jserver.tools.gsregistering.GameServerRegister -c

+ 1 - 1
L2J_Server_BETA/dist/login/startSQLAccountManager.bat

@@ -2,7 +2,7 @@
 cls
 title L2J - SQL Account Manager
 color 17
-java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*;l2jlogin.jar com.l2jserver.accountmanager.SQLAccountManager 2> NUL
+java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*;l2jlogin.jar com.l2jserver.tools.accountmanager.SQLAccountManager 2> NUL
 if %errorlevel% == 0 (
 echo.
 echo Execution succesful

+ 1 - 1
L2J_Server_BETA/dist/login/startSQLAccountManager.ps1

@@ -1,7 +1,7 @@
 $OutputEncoding = New-Object -typename System.Text.UTF8Encoding
 $a = (Get-Host).UI.RawUI
 $a.WindowTitle = "L2J - SQL Account Manager"
-java "-Djava.util.logging.config.file=console.cfg" -cp "./../libs/*;l2jlogin.jar" com.l2jserver.accountmanager.SQLAccountManager 2> $null
+java "-Djava.util.logging.config.file=console.cfg" -cp "./../libs/*;l2jlogin.jar" com.l2jserver.tools.accountmanager.SQLAccountManager 2> $null
 if ($LASTEXITCODE -like 0)
 {
     ""

+ 1 - 1
L2J_Server_BETA/dist/login/startSQLAccountManager.sh

@@ -1,2 +1,2 @@
 #!/bin/sh
-java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*:l2jlogin.jar com.l2jserver.accountmanager.SQLAccountManager
+java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*:l2jlogin.jar com.l2jserver.tools.accountmanager.SQLAccountManager

+ 3 - 3
L2J_Server_BETA/java/com/l2jserver/accountmanager/SQLAccountManager.java → L2J_Server_BETA/java/com/l2jserver/tools/accountmanager/SQLAccountManager.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.accountmanager;
+package com.l2jserver.tools.accountmanager;
 
 import java.io.IOException;
 import java.security.MessageDigest;
@@ -28,8 +28,8 @@ import javolution.util.FastList;
 import com.l2jserver.Config;
 import com.l2jserver.L2DatabaseFactory;
 import com.l2jserver.Server;
-import com.l2jserver.ngl.ConsoleLocalizator;
-import com.l2jserver.ngl.LocaleCodes;
+import com.l2jserver.tools.ngl.ConsoleLocalizator;
+import com.l2jserver.tools.ngl.LocaleCodes;
 import com.l2jserver.util.Base64;
 
 /**

+ 5 - 5
L2J_Server_BETA/java/com/l2jserver/configurator/ConfigUserInterface.java → L2J_Server_BETA/java/com/l2jserver/tools/configurator/ConfigUserInterface.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.configurator;
+package com.l2jserver.tools.configurator;
 
 import java.awt.GridBagConstraints;
 import java.awt.GridBagLayout;
@@ -59,10 +59,10 @@ import javax.swing.UIManager;
 
 import javolution.util.FastList;
 
-import com.l2jserver.configurator.ConfigUserInterface.ConfigFile.ConfigComment;
-import com.l2jserver.configurator.ConfigUserInterface.ConfigFile.ConfigProperty;
-import com.l2jserver.i18n.LanguageControl;
-import com.l2jserver.images.ImagesTable;
+import com.l2jserver.tools.configurator.ConfigUserInterface.ConfigFile.ConfigComment;
+import com.l2jserver.tools.configurator.ConfigUserInterface.ConfigFile.ConfigProperty;
+import com.l2jserver.tools.i18n.LanguageControl;
+import com.l2jserver.tools.images.ImagesTable;
 
 /**
  *

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/configurator/JIPTextField.java → L2J_Server_BETA/java/com/l2jserver/tools/configurator/JIPTextField.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.configurator;
+package com.l2jserver.tools.configurator;
 
 import java.awt.Component;
 import java.awt.GridBagConstraints;

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/dbinstaller/DBOutputInterface.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/DBOutputInterface.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller;
+package com.l2jserver.tools.dbinstaller;
 
 import java.sql.Connection;
 

+ 3 - 3
L2J_Server_BETA/java/com/l2jserver/dbinstaller/LauncherCS.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/LauncherCS.java

@@ -12,13 +12,13 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller;
+package com.l2jserver.tools.dbinstaller;
 
 import java.awt.HeadlessException;
 import javax.swing.UIManager;
 
-import com.l2jserver.dbinstaller.console.DBInstallerConsole;
-import com.l2jserver.dbinstaller.gui.DBConfigGUI;
+import com.l2jserver.tools.dbinstaller.console.DBInstallerConsole;
+import com.l2jserver.tools.dbinstaller.gui.DBConfigGUI;
 
 /**
  * Contains main class for Database Installer If system doesn't support the graphical UI, start the installer in console mode.

+ 3 - 3
L2J_Server_BETA/java/com/l2jserver/dbinstaller/LauncherGS.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/LauncherGS.java

@@ -12,13 +12,13 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller;
+package com.l2jserver.tools.dbinstaller;
 
 import java.awt.HeadlessException;
 import javax.swing.UIManager;
 
-import com.l2jserver.dbinstaller.console.DBInstallerConsole;
-import com.l2jserver.dbinstaller.gui.DBConfigGUI;
+import com.l2jserver.tools.dbinstaller.console.DBInstallerConsole;
+import com.l2jserver.tools.dbinstaller.gui.DBConfigGUI;
 
 /**
  * Contains main class for Database Installer If system doesn't support the graphical UI, start the installer in console mode.

+ 3 - 3
L2J_Server_BETA/java/com/l2jserver/dbinstaller/LauncherLS.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/LauncherLS.java

@@ -12,13 +12,13 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller;
+package com.l2jserver.tools.dbinstaller;
 
 import java.awt.HeadlessException;
 import javax.swing.UIManager;
 
-import com.l2jserver.dbinstaller.console.DBInstallerConsole;
-import com.l2jserver.dbinstaller.gui.DBConfigGUI;
+import com.l2jserver.tools.dbinstaller.console.DBInstallerConsole;
+import com.l2jserver.tools.dbinstaller.gui.DBConfigGUI;
 
 /**
  * Contains main class for Database Installer If system doesn't support the graphical UI, start the installer in console mode.

+ 4 - 4
L2J_Server_BETA/java/com/l2jserver/dbinstaller/RunTasks.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/RunTasks.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller;
+package com.l2jserver.tools.dbinstaller;
 
 import java.io.File;
 import java.sql.SQLException;
@@ -20,9 +20,9 @@ import java.util.prefs.Preferences;
 
 import javax.swing.JOptionPane;
 
-import com.l2jserver.dbinstaller.util.mysql.DBDumper;
-import com.l2jserver.dbinstaller.util.mysql.ScriptExecutor;
-import com.l2jserver.dbinstaller.util.mysql.ScriptExecutor.SqlFileFilter;
+import com.l2jserver.tools.dbinstaller.util.mysql.DBDumper;
+import com.l2jserver.tools.dbinstaller.util.mysql.ScriptExecutor;
+import com.l2jserver.tools.dbinstaller.util.mysql.ScriptExecutor.SqlFileFilter;
 
 /**
  * @author mrTJO

+ 4 - 4
L2J_Server_BETA/java/com/l2jserver/dbinstaller/console/DBInstallerConsole.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/console/DBInstallerConsole.java

@@ -12,15 +12,15 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller.console;
+package com.l2jserver.tools.dbinstaller.console;
 
 import java.sql.Connection;
 import java.util.Scanner;
 import java.util.prefs.Preferences;
 
-import com.l2jserver.dbinstaller.DBOutputInterface;
-import com.l2jserver.dbinstaller.RunTasks;
-import com.l2jserver.dbinstaller.util.mysql.MySqlConnect;
+import com.l2jserver.tools.dbinstaller.DBOutputInterface;
+import com.l2jserver.tools.dbinstaller.RunTasks;
+import com.l2jserver.tools.dbinstaller.util.mysql.MySqlConnect;
 
 /**
  * @author mrTJO

+ 5 - 5
L2J_Server_BETA/java/com/l2jserver/dbinstaller/gui/DBConfigGUI.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/gui/DBConfigGUI.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller.gui;
+package com.l2jserver.tools.dbinstaller.gui;
 
 import java.awt.Dimension;
 import java.awt.Toolkit;
@@ -28,10 +28,10 @@ import javax.swing.JPasswordField;
 import javax.swing.JTextField;
 import javax.swing.SpringLayout;
 
-import com.l2jserver.dbinstaller.RunTasks;
-import com.l2jserver.dbinstaller.util.mysql.MySqlConnect;
-import com.l2jserver.dbinstaller.util.swing.SpringUtilities;
-import com.l2jserver.images.ImagesTable;
+import com.l2jserver.tools.dbinstaller.RunTasks;
+import com.l2jserver.tools.dbinstaller.util.mysql.MySqlConnect;
+import com.l2jserver.tools.dbinstaller.util.swing.SpringUtilities;
+import com.l2jserver.tools.images.ImagesTable;
 
 /**
  * @author mrTJO

+ 3 - 3
L2J_Server_BETA/java/com/l2jserver/dbinstaller/gui/DBInstallerGUI.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/gui/DBInstallerGUI.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller.gui;
+package com.l2jserver.tools.dbinstaller.gui;
 
 import java.awt.BorderLayout;
 import java.awt.Dimension;
@@ -25,8 +25,8 @@ import javax.swing.JProgressBar;
 import javax.swing.JScrollPane;
 import javax.swing.JTextArea;
 
-import com.l2jserver.dbinstaller.DBOutputInterface;
-import com.l2jserver.images.ImagesTable;
+import com.l2jserver.tools.dbinstaller.DBOutputInterface;
+import com.l2jserver.tools.images.ImagesTable;
 
 /**
  * @author mrTJO

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/dbinstaller/util/FileWriterStdout.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/util/FileWriterStdout.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller.util;
+package com.l2jserver.tools.dbinstaller.util;
 
 import java.io.BufferedWriter;
 import java.io.File;

+ 3 - 3
L2J_Server_BETA/java/com/l2jserver/dbinstaller/util/mysql/DBDumper.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/util/mysql/DBDumper.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller.util.mysql;
+package com.l2jserver.tools.dbinstaller.util.mysql;
 
 import java.io.File;
 import java.io.IOException;
@@ -27,8 +27,8 @@ import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
 
-import com.l2jserver.dbinstaller.DBOutputInterface;
-import com.l2jserver.dbinstaller.util.FileWriterStdout;
+import com.l2jserver.tools.dbinstaller.DBOutputInterface;
+import com.l2jserver.tools.dbinstaller.util.FileWriterStdout;
 
 /**
  * @author mrTJO

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/dbinstaller/util/mysql/MySqlConnect.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/util/mysql/MySqlConnect.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller.util.mysql;
+package com.l2jserver.tools.dbinstaller.util.mysql;
 
 import java.sql.Connection;
 import java.sql.DriverManager;

+ 2 - 2
L2J_Server_BETA/java/com/l2jserver/dbinstaller/util/mysql/ScriptExecutor.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/util/mysql/ScriptExecutor.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.dbinstaller.util.mysql;
+package com.l2jserver.tools.dbinstaller.util.mysql;
 
 import java.io.File;
 import java.io.FileFilter;
@@ -24,7 +24,7 @@ import java.util.Scanner;
 
 import javax.swing.JOptionPane;
 
-import com.l2jserver.dbinstaller.DBOutputInterface;
+import com.l2jserver.tools.dbinstaller.DBOutputInterface;
 
 /**
  * @author mrTJO

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/dbinstaller/util/swing/SpringUtilities.java → L2J_Server_BETA/java/com/l2jserver/tools/dbinstaller/util/swing/SpringUtilities.java

@@ -29,7 +29,7 @@
  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-package com.l2jserver.dbinstaller.util.swing;
+package com.l2jserver.tools.dbinstaller.util.swing;
 
 import javax.swing.*;
 import javax.swing.SpringLayout;

+ 2 - 2
L2J_Server_BETA/java/com/l2jserver/gsregistering/BaseGameServerRegister.java → L2J_Server_BETA/java/com/l2jserver/tools/gsregistering/BaseGameServerRegister.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.gsregistering;
+package com.l2jserver.tools.gsregistering;
 
 import java.awt.HeadlessException;
 import java.io.File;
@@ -34,8 +34,8 @@ import javax.swing.UIManager;
 import com.l2jserver.Config;
 import com.l2jserver.L2DatabaseFactory;
 import com.l2jserver.Server;
-import com.l2jserver.i18n.LanguageControl;
 import com.l2jserver.loginserver.GameServerTable;
+import com.l2jserver.tools.i18n.LanguageControl;
 import com.l2jserver.util.Util;
 
 /**

+ 3 - 3
L2J_Server_BETA/java/com/l2jserver/gsregistering/GUserInterface.java → L2J_Server_BETA/java/com/l2jserver/tools/gsregistering/GUserInterface.java

@@ -1,4 +1,4 @@
-package com.l2jserver.gsregistering;
+package com.l2jserver.tools.gsregistering;
 
 import java.awt.BorderLayout;
 import java.awt.Component;
@@ -28,8 +28,8 @@ import javax.swing.table.TableCellRenderer;
 import javax.swing.table.TableColumn;
 import javax.swing.table.TableColumnModel;
 
-import com.l2jserver.images.ImagesTable;
 import com.l2jserver.loginserver.GameServerTable;
+import com.l2jserver.tools.images.ImagesTable;
 
 /**
  * @author KenM
@@ -180,7 +180,7 @@ public class GUserInterface extends BaseGameServerRegister implements ActionList
 	}
 	
 	/**
-	 * @see com.l2jserver.gsregistering.BaseGameServerRegister#showError(String, Throwable)
+	 * @see com.l2jserver.tools.gsregistering.BaseGameServerRegister#showError(String, Throwable)
 	 */
 	@Override
 	public void showError(String msg, Throwable t)

+ 2 - 2
L2J_Server_BETA/java/com/l2jserver/gsregistering/GameServerRegister.java → L2J_Server_BETA/java/com/l2jserver/tools/gsregistering/GameServerRegister.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.gsregistering;
+package com.l2jserver.tools.gsregistering;
 
 import java.io.IOException;
 import java.io.InputStreamReader;
@@ -323,7 +323,7 @@ public class GameServerRegister extends BaseGameServerRegister
 	}
 	
 	/**
-	 * @see com.l2jserver.gsregistering.BaseGameServerRegister#showError(java.lang.String, java.lang.Throwable)
+	 * @see com.l2jserver.tools.gsregistering.BaseGameServerRegister#showError(java.lang.String, java.lang.Throwable)
 	 */
 	@Override
 	public void showError(String msg, Throwable t)

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/gsregistering/RegisterDialog.java → L2J_Server_BETA/java/com/l2jserver/tools/gsregistering/RegisterDialog.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.gsregistering;
+package com.l2jserver.tools.gsregistering;
 
 import java.awt.GridBagConstraints;
 import java.awt.GridBagLayout;

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/i18n/LanguageControl.java → L2J_Server_BETA/java/com/l2jserver/tools/i18n/LanguageControl.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.i18n;
+package com.l2jserver.tools.i18n;
 
 import java.io.BufferedInputStream;
 import java.io.FileInputStream;

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/images/ImagesTable.java → L2J_Server_BETA/java/com/l2jserver/tools/images/ImagesTable.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.images;
+package com.l2jserver.tools.images;
 
 import java.util.Map;
 

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/ngl/ConsoleLocalizator.java → L2J_Server_BETA/java/com/l2jserver/tools/ngl/ConsoleLocalizator.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.ngl;
+package com.l2jserver.tools.ngl;
 
 import java.io.PrintStream;
 import java.io.UnsupportedEncodingException;

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/ngl/LocaleCodes.java → L2J_Server_BETA/java/com/l2jserver/tools/ngl/LocaleCodes.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.ngl;
+package com.l2jserver.tools.ngl;
 
 import java.util.HashMap;
 import java.util.Locale;

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/ngl/LocalizationParser.java → L2J_Server_BETA/java/com/l2jserver/tools/ngl/LocalizationParser.java

@@ -12,7 +12,7 @@
  * You should have received a copy of the GNU General Public License along with
  * this program. If not, see <http://www.gnu.org/licenses/>.
  */
-package com.l2jserver.ngl;
+package com.l2jserver.tools.ngl;
 
 import java.io.File;
 import java.util.HashMap;

二进制
L2J_Server_BETA/misc/L2JConfig.exe


+ 1 - 1
L2J_Server_BETA/misc/L2JConfig.sh

@@ -1,2 +1,2 @@
 #!/bin/sh
-java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*:l2jserver.jar:l2jlogin.jar com.l2jserver.configurator.ConfigUserInterface
+java -Djava.util.logging.config.file=console.cfg -cp ./../libs/*:l2jserver.jar:l2jlogin.jar com.l2jserver.tools.configurator.ConfigUserInterface