make two more methods public
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 4 Apr 2008 21:53:28 +0000 (21:53 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Fri, 4 Apr 2008 21:53:28 +0000 (21:53 +0000)
add toString()

git-svn-id: http://trooper/svn/projects/jSite/trunk@588 c3eda9e8-030b-0410-8277-bc7414b0a119

src/net/pterodactylus/jsite/core/Node.java

index e0d61f7..854a668 100644 (file)
@@ -102,7 +102,7 @@ public class Node {
         * @return the sameMachine <code>true</code> if, and only if, the node is
         *         running on the same machine as jSite
         */
-       boolean isSameMachine() {
+       public boolean isSameMachine() {
                return sameMachine;
        }
 
@@ -113,8 +113,16 @@ public class Node {
         *            <code>true</code> if the node is running on the same machine
         *            as jSite, <code>false</code> otherwise
         */
-       void setSameMachine(boolean sameMachine) {
+       public void setSameMachine(boolean sameMachine) {
                this.sameMachine = sameMachine;
        }
 
+       /**
+        * {@inheritDoc}
+        */
+       @Override
+       public String toString() {
+               return name + " (" + hostname + ((port == 9481) ? ("") : (":" + port)) + ")";
+       }
+
 }