Utility adjustments for Java 10 compatibility.
This commit is contained in:
parent
8008261d17
commit
7352425305
@ -1,5 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title Register Game Server
|
title Register Game Server
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
||||||
pause
|
pause
|
@ -1,7 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title SQL Account Manager
|
title SQL Account Manager
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
||||||
if %errorlevel% == 0 (
|
if %errorlevel% == 0 (
|
||||||
echo.
|
echo.
|
||||||
echo Execution successful
|
echo Execution successful
|
||||||
|
@ -201,6 +201,8 @@ public class DBConfigGUI extends JFrame
|
|||||||
add(btnConnect);
|
add(btnConnect);
|
||||||
|
|
||||||
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
||||||
|
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -78,6 +78,9 @@ public class DBInstallerGUI extends JFrame implements DBOutputInterface
|
|||||||
appendToProgressArea("Connected");
|
appendToProgressArea("Connected");
|
||||||
|
|
||||||
add(scrollPane, BorderLayout.CENTER);
|
add(scrollPane, BorderLayout.CENTER);
|
||||||
|
|
||||||
|
getContentPane().setPreferredSize(new Dimension(width, height));
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title Register Game Server
|
title Register Game Server
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
||||||
pause
|
pause
|
@ -1,7 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title SQL Account Manager
|
title SQL Account Manager
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
||||||
if %errorlevel% == 0 (
|
if %errorlevel% == 0 (
|
||||||
echo.
|
echo.
|
||||||
echo Execution successful
|
echo Execution successful
|
||||||
|
@ -201,6 +201,8 @@ public class DBConfigGUI extends JFrame
|
|||||||
add(btnConnect);
|
add(btnConnect);
|
||||||
|
|
||||||
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
||||||
|
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -78,6 +78,9 @@ public class DBInstallerGUI extends JFrame implements DBOutputInterface
|
|||||||
appendToProgressArea("Connected");
|
appendToProgressArea("Connected");
|
||||||
|
|
||||||
add(scrollPane, BorderLayout.CENTER);
|
add(scrollPane, BorderLayout.CENTER);
|
||||||
|
|
||||||
|
getContentPane().setPreferredSize(new Dimension(width, height));
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title Register Game Server
|
title Register Game Server
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
||||||
pause
|
pause
|
@ -1,7 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title SQL Account Manager
|
title SQL Account Manager
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
||||||
if %errorlevel% == 0 (
|
if %errorlevel% == 0 (
|
||||||
echo.
|
echo.
|
||||||
echo Execution successful
|
echo Execution successful
|
||||||
|
@ -201,6 +201,8 @@ public class DBConfigGUI extends JFrame
|
|||||||
add(btnConnect);
|
add(btnConnect);
|
||||||
|
|
||||||
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
||||||
|
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -78,6 +78,9 @@ public class DBInstallerGUI extends JFrame implements DBOutputInterface
|
|||||||
appendToProgressArea("Connected");
|
appendToProgressArea("Connected");
|
||||||
|
|
||||||
add(scrollPane, BorderLayout.CENTER);
|
add(scrollPane, BorderLayout.CENTER);
|
||||||
|
|
||||||
|
getContentPane().setPreferredSize(new Dimension(width, height));
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title Register Game Server
|
title Register Game Server
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
||||||
pause
|
pause
|
@ -1,7 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title SQL Account Manager
|
title SQL Account Manager
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
||||||
if %errorlevel% == 0 (
|
if %errorlevel% == 0 (
|
||||||
echo.
|
echo.
|
||||||
echo Execution successful
|
echo Execution successful
|
||||||
|
@ -201,6 +201,8 @@ public class DBConfigGUI extends JFrame
|
|||||||
add(btnConnect);
|
add(btnConnect);
|
||||||
|
|
||||||
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
||||||
|
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -78,6 +78,9 @@ public class DBInstallerGUI extends JFrame implements DBOutputInterface
|
|||||||
appendToProgressArea("Connected");
|
appendToProgressArea("Connected");
|
||||||
|
|
||||||
add(scrollPane, BorderLayout.CENTER);
|
add(scrollPane, BorderLayout.CENTER);
|
||||||
|
|
||||||
|
getContentPane().setPreferredSize(new Dimension(width, height));
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -15,14 +15,8 @@
|
|||||||
<arguments>
|
<arguments>
|
||||||
</arguments>
|
</arguments>
|
||||||
</buildCommand>
|
</buildCommand>
|
||||||
<buildCommand>
|
|
||||||
<name>spartan.tipper</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
</buildSpec>
|
</buildSpec>
|
||||||
<natures>
|
<natures>
|
||||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||||
<nature>il.org.spartan.nature</nature>
|
|
||||||
</natures>
|
</natures>
|
||||||
</projectDescription>
|
</projectDescription>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title Register Game Server
|
title Register Game Server
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
||||||
pause
|
pause
|
@ -1,7 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title SQL Account Manager
|
title SQL Account Manager
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
||||||
if %errorlevel% == 0 (
|
if %errorlevel% == 0 (
|
||||||
echo.
|
echo.
|
||||||
echo Execution successful
|
echo Execution successful
|
||||||
|
@ -201,6 +201,8 @@ public class DBConfigGUI extends JFrame
|
|||||||
add(btnConnect);
|
add(btnConnect);
|
||||||
|
|
||||||
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
||||||
|
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -78,6 +78,9 @@ public class DBInstallerGUI extends JFrame implements DBOutputInterface
|
|||||||
appendToProgressArea("Connected");
|
appendToProgressArea("Connected");
|
||||||
|
|
||||||
add(scrollPane, BorderLayout.CENTER);
|
add(scrollPane, BorderLayout.CENTER);
|
||||||
|
|
||||||
|
getContentPane().setPreferredSize(new Dimension(width, height));
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title Register Game Server
|
title Register Game Server
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
||||||
pause
|
pause
|
@ -1,7 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title SQL Account Manager
|
title SQL Account Manager
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
||||||
if %errorlevel% == 0 (
|
if %errorlevel% == 0 (
|
||||||
echo.
|
echo.
|
||||||
echo Execution successful
|
echo Execution successful
|
||||||
|
@ -201,6 +201,8 @@ public class DBConfigGUI extends JFrame
|
|||||||
add(btnConnect);
|
add(btnConnect);
|
||||||
|
|
||||||
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
||||||
|
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -78,6 +78,9 @@ public class DBInstallerGUI extends JFrame implements DBOutputInterface
|
|||||||
appendToProgressArea("Connected");
|
appendToProgressArea("Connected");
|
||||||
|
|
||||||
add(scrollPane, BorderLayout.CENTER);
|
add(scrollPane, BorderLayout.CENTER);
|
||||||
|
|
||||||
|
getContentPane().setPreferredSize(new Dimension(width, height));
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title Register Game Server
|
title Register Game Server
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
||||||
pause
|
pause
|
@ -1,7 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title SQL Account Manager
|
title SQL Account Manager
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
||||||
if %errorlevel% == 0 (
|
if %errorlevel% == 0 (
|
||||||
echo.
|
echo.
|
||||||
echo Execution successful
|
echo Execution successful
|
||||||
|
@ -201,6 +201,8 @@ public class DBConfigGUI extends JFrame
|
|||||||
add(btnConnect);
|
add(btnConnect);
|
||||||
|
|
||||||
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
||||||
|
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -78,6 +78,9 @@ public class DBInstallerGUI extends JFrame implements DBOutputInterface
|
|||||||
appendToProgressArea("Connected");
|
appendToProgressArea("Connected");
|
||||||
|
|
||||||
add(scrollPane, BorderLayout.CENTER);
|
add(scrollPane, BorderLayout.CENTER);
|
||||||
|
|
||||||
|
getContentPane().setPreferredSize(new Dimension(width, height));
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title Register Game Server
|
title Register Game Server
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.gsregistering.BaseGameServerRegister -c
|
||||||
pause
|
pause
|
@ -1,7 +1,7 @@
|
|||||||
@echo off
|
@echo off
|
||||||
title SQL Account Manager
|
title SQL Account Manager
|
||||||
color 17
|
color 17
|
||||||
java -version:1.8 -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
java -Djava.util.logging.config.file=console.cfg -cp ./../libs/* com.l2jmobius.tools.accountmanager.SQLAccountManager
|
||||||
if %errorlevel% == 0 (
|
if %errorlevel% == 0 (
|
||||||
echo.
|
echo.
|
||||||
echo Execution successful
|
echo Execution successful
|
||||||
|
@ -201,6 +201,8 @@ public class DBConfigGUI extends JFrame
|
|||||||
add(btnConnect);
|
add(btnConnect);
|
||||||
|
|
||||||
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
SpringUtilities.makeCompactGrid(getContentPane(), 6, 2, 5, 5, 5, 5);
|
||||||
|
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -78,6 +78,9 @@ public class DBInstallerGUI extends JFrame implements DBOutputInterface
|
|||||||
appendToProgressArea("Connected");
|
appendToProgressArea("Connected");
|
||||||
|
|
||||||
add(scrollPane, BorderLayout.CENTER);
|
add(scrollPane, BorderLayout.CENTER);
|
||||||
|
|
||||||
|
getContentPane().setPreferredSize(new Dimension(width, height));
|
||||||
|
pack();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user