From: Andreas W. <an...@us...> - 2005-07-08 16:59:51
|
Update of /cvsroot/magicmap//magicmapclient/src/net/sf/magicmap/client/model/node In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25031/src/net/sf/magicmap/client/model/node Modified Files: Node.java Log Message: new icon for location rescanning part 2 Index: Node.java =================================================================== RCS file: /cvsroot/magicmap//magicmapclient/src/net/sf/magicmap/client/model/node/Node.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Node.java 2 Jun 2005 00:13:12 -0000 1.2 --- Node.java 8 Jul 2005 16:59:41 -0000 1.3 *************** *** 19,22 **** --- 19,23 ---- private String internal; protected boolean fix; // Fest oder beweglich + protected boolean update = false; // wenn Referenzpunktupdate = true private int x; // Position (nur wenn fix = true) private int y; *************** *** 47,50 **** --- 48,59 ---- } + public boolean isUpdate(){ + return update; + } + + public void setUpdate(boolean newupdate){ + this.update = newupdate; + } + public boolean isFix(){ return fix; |