Revision: 585
http://svn.sourceforge.net/magicmap/?rev=585&view=rev
Author: Jan_fride
Date: 2007-02-28 07:06:27 -0800 (Wed, 28 Feb 2007)
Log Message:
-----------
Modified Paths:
--------------
trunk/magicmapclient/src/net/sf/magicmap/client/model/node/Node.java
Modified: trunk/magicmapclient/src/net/sf/magicmap/client/model/node/Node.java
===================================================================
--- trunk/magicmapclient/src/net/sf/magicmap/client/model/node/Node.java 2007-02-28 12:58:24 UTC (rev 584)
+++ trunk/magicmapclient/src/net/sf/magicmap/client/model/node/Node.java 2007-02-28 15:06:27 UTC (rev 585)
@@ -9,7 +9,7 @@
/**
* Einfacher Knoten in unserem Graphen aus Clients, AccessPoints, und
* Referenzpunkten.
- *
+ *
* @author thuebner
*/
public abstract class Node implements INode{
@@ -24,7 +24,7 @@
}
};
/**
- * Ein leerer Knoten.
+ * Ein leerer Knoten.
*/
public static final Node EMPTY_NODE = new Node(null) {
@@ -41,29 +41,29 @@
};
/**
- *
+ *
*/
private static int counter = 0;
/**
- *
+ *
*/
private String name; // Beschreibung
/**
- *
+ *
*/
private String displayName;
/**
- *
+ *
*/
private String internal;
protected boolean fix; // Fest oder beweglich
/**
- *
+ *
*/
protected boolean update = false; // wenn Referenzpunktupdate = true
@@ -75,7 +75,7 @@
private long id;
- private INodeModel model;
+ private transient INodeModel model;
private Node parentNode;
@@ -91,7 +91,7 @@
* beliebige Knotentypen ohne \xC4nderungen an NodeModel hinzugef\xFCgt werden.
* Siehe Methode getNeighbors, welche vom Knotentyp abh\xE4ngig mit Hilfe von
* NodeModel potenzielle Nachbarknoten des Knoten sucht.
- *
+ *
* @param model
*/
public Node(INodeModel model) {
@@ -210,6 +210,10 @@
public void setPhysical(boolean physical){
this.physical = physical;
}
+
+ /**
+ *
+ */
public NodeContainer getNodeContainer(){
return null;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|