Committing GPL 3.
This commit is contained in:
parent
b41d34a634
commit
df0d2ced0e
@ -55,11 +55,12 @@ package eva2;
|
|||||||
public class EvAInfo {
|
public class EvAInfo {
|
||||||
public static final String productName = "EvA 2";
|
public static final String productName = "EvA 2";
|
||||||
public static final String productLongName = "Evolutionary Algorithms Workbench 2";
|
public static final String productLongName = "Evolutionary Algorithms Workbench 2";
|
||||||
public static final String versionNum = new String ("2.030");
|
public static final String versionNum = new String ("2.034");
|
||||||
public static final String url = "http://www.ra.cs.uni-tuebingen.de/software/EvA2";
|
public static final String url = "http://www.ra.cs.uni-tuebingen.de/software/EvA2";
|
||||||
|
|
||||||
public static final String propertyFile = "resources/EvA2.props";
|
public static final String propertyFile = "resources/EvA2.props";
|
||||||
public static final String licenseFile = "lgpl-3.0.txt";
|
public static final String LGPLFile = "lgpl-3.0.txt";
|
||||||
|
public static final String GPLFile= "gpl-3.0.txt";
|
||||||
public static final String iconLocation = "resources/images/icon4.gif";
|
public static final String iconLocation = "resources/images/icon4.gif";
|
||||||
|
|
||||||
public static final String splashLocation = "resources/images/splashScreen2.png";
|
public static final String splashLocation = "resources/images/splashScreen2.png";
|
||||||
|
@ -725,9 +725,11 @@ public class EvAClient implements RemoteStateListener, Serializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void showLicense() {
|
private void showLicense() {
|
||||||
HtmlDemo temp = new HtmlDemo(EvAInfo.licenseFile);
|
HtmlDemo lgpl = new HtmlDemo(EvAInfo.LGPLFile);
|
||||||
temp.show();
|
HtmlDemo gpl = new HtmlDemo(EvAInfo.GPLFile);
|
||||||
}
|
gpl.show();
|
||||||
|
lgpl.show();
|
||||||
|
}
|
||||||
|
|
||||||
private void showNoHostFoundDialog() {
|
private void showNoHostFoundDialog() {
|
||||||
JOptionPane.showMessageDialog(m_Frame.getContentPane(), "No host with running EVASERVER found. Please start one or \nadd the correct address to the properties list.", EvAInfo.infoTitle, 1);
|
JOptionPane.showMessageDialog(m_Frame.getContentPane(), "No host with running EVASERVER found. Please start one or \nadd the correct address to the properties list.", EvAInfo.infoTitle, 1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user