Minor adaptions due to move wsi.ra --> eva2.tools
This commit is contained in:
		@@ -400,7 +400,7 @@ public class DPointSetMultiIcon extends DComponent
 | 
			
		||||
 | 
			
		||||
    public String toString()
 | 
			
		||||
    {
 | 
			
		||||
        String text = "wsi.ra.chart2d.DPointSet[size:" + getSize();
 | 
			
		||||
        String text = "eva2.tools.chart2d.DPointSet[size:" + getSize();
 | 
			
		||||
 | 
			
		||||
        for (int i = 0; i < xMI.getSize(); i++)
 | 
			
		||||
        {
 | 
			
		||||
 
 | 
			
		||||
@@ -34,7 +34,7 @@ class ServerNode implements java.io.Serializable {
 | 
			
		||||
public class PropertyRemoteServers implements java.io.Serializable {
 | 
			
		||||
 | 
			
		||||
    private ServerNode[]        m_AvailableNodes;
 | 
			
		||||
//    private String              m_ClassToStart  = "wsi.ra.jproxy.RMIServer";
 | 
			
		||||
//    private String              m_ClassToStart  = "eva2.tools.jproxy.RMIServer";
 | 
			
		||||
    private transient String    m_password      = "";
 | 
			
		||||
    private String              m_Login         = "";
 | 
			
		||||
//    private boolean             m_DeployJar     = true;
 | 
			
		||||
 
 | 
			
		||||
@@ -39,10 +39,6 @@ import java.awt.*;
 | 
			
		||||
import java.awt.event.*;
 | 
			
		||||
import java.util.ArrayList;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
/*import wsi.ra.jproxy.test.Something;
 | 
			
		||||
import wsi.ra.jproxy.test.SomethingInterface;*/
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Created by IntelliJ IDEA.
 | 
			
		||||
 * User: streiche
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,7 @@
 | 
			
		||||
//import eva2.server.go.individuals.InterfaceESIndividual;
 | 
			
		||||
//import eva2.server.go.populations.Population;
 | 
			
		||||
//import eva2.server.go.problems.InterfaceOptimizationProblem;
 | 
			
		||||
//import wsi.ra.math.RNG;
 | 
			
		||||
//import eva2.tools.math.RNG;
 | 
			
		||||
//
 | 
			
		||||
///**
 | 
			
		||||
// * Created by IntelliJ IDEA.
 | 
			
		||||
 
 | 
			
		||||
@@ -322,7 +322,7 @@ public class IslandModelEA implements InterfacePopulationChangedEventListener, I
 | 
			
		||||
     */
 | 
			
		||||
    public static void main(String[] args) {
 | 
			
		||||
        // @todo die ServerStarter muss ich noch hin kriegen
 | 
			
		||||
        // @todo Wichtig ich brauche den wsi.ra.jproxy.RMIServer!
 | 
			
		||||
        // @todo Wichtig ich brauche den eva2.tools.jproxy.RMIServer!
 | 
			
		||||
        PropertyRemoteServers s = new PropertyRemoteServers();
 | 
			
		||||
        s.addServerNode("raold1.informatik.uni-tuebingen.de", 2);
 | 
			
		||||
        s.addServerNode("raold2.informatik.uni-tuebingen.de", 2);
 | 
			
		||||
 
 | 
			
		||||
@@ -20,9 +20,6 @@ import javax.management.ObjectName;
 | 
			
		||||
 | 
			
		||||
import eva2.tools.tool.BasicResourceLoader;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
//import wsi.ra.tool.BasicResourceLoader;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Allow for java to list Classes that exist in one package and can be instantiated from
 | 
			
		||||
 * the classpath, either directly or through a jar on the classpath.
 | 
			
		||||
 
 | 
			
		||||
@@ -190,7 +190,7 @@ public class DArray implements DIntDoubleMap{
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  public String toString(){
 | 
			
		||||
    String text = "wsi.ra.chart2d.DArray[size:"+size;
 | 
			
		||||
    String text = "eva2.tools.chart2d.DArray[size:"+size;
 | 
			
		||||
    if( size < 11 )
 | 
			
		||||
      for( int i=0; i<size; i++ ) text += ", "+value[i];
 | 
			
		||||
    text += "]";
 | 
			
		||||
 
 | 
			
		||||
@@ -44,7 +44,7 @@ public class DBorder extends Insets{
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  public String toString(){
 | 
			
		||||
    return "wsi.ra.chart2d.DBorder[top="+top+",left="+left
 | 
			
		||||
    return "eva2.tools.chart2d.DBorder[top="+top+",left="+left
 | 
			
		||||
           +",bottom="+bottom+",right="+right+"]";
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@@ -240,7 +240,7 @@ public class DPointSet extends DComponent
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  public String toString(){
 | 
			
		||||
    String text = "wsi.ra.chart2d.DPointSet[size:"+getSize();
 | 
			
		||||
    String text = "eva2.tools.chart2d.DPointSet[size:"+getSize();
 | 
			
		||||
    for( int i=0; i<x.getSize(); i++ )
 | 
			
		||||
      text += ",("+x.getImage(i)+","+y.getImage(i)+")";
 | 
			
		||||
    text += "]";
 | 
			
		||||
 
 | 
			
		||||
@@ -20,8 +20,6 @@ package eva2.tools.sort;
 | 
			
		||||
 * IMPORTS
 | 
			
		||||
 *==========================================================================*/
 | 
			
		||||
 | 
			
		||||
//import wsi.ra.jchart2d.*;
 | 
			
		||||
import java.util.*;
 | 
			
		||||
 | 
			
		||||
/*==========================================================================*
 | 
			
		||||
 * CLASS DECLARATION
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user