X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Ffcp%2FVersion.java;h=0f1d5cbb8f7f8ca1416d9de6f5e16a233a7648c8;hb=dd605aee444057a874fabf7fb0045b8448b0d1cd;hp=2c7bde5498150de60a30f63ff99140d341538abb;hpb=64c2c9bd494f3ea9d1ae84f8d86827dea025bee6;p=jFCPlib.git diff --git a/src/net/pterodactylus/fcp/Version.java b/src/net/pterodactylus/fcp/Version.java index 2c7bde5..0f1d5cb 100644 --- a/src/net/pterodactylus/fcp/Version.java +++ b/src/net/pterodactylus/fcp/Version.java @@ -1,6 +1,5 @@ /* - * jSite2 - Version.java - - * Copyright © 2008 David Roden + * jFCPlib - Version.java - Copyright © 2008 David Roden * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,7 +22,7 @@ import java.util.StringTokenizer; /** * Container for the “lastGoodVersion” field. - * + * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class Version { @@ -44,7 +43,7 @@ public class Version { * Creates a new Version from the given string. The string consists of the * four required fields node name, tree version, protocol version, and build * number, separated by a comma. - * + * * @param version * The version string * @throws NullPointerException @@ -72,7 +71,7 @@ public class Version { /** * Creates a new Version from the given parts. - * + * * @param nodeName * The name of the node implementation * @param treeVersion @@ -91,7 +90,7 @@ public class Version { /** * Returns the name of the node implementation. - * + * * @return The node name */ public String getNodeName() { @@ -100,7 +99,7 @@ public class Version { /** * The tree version of the node. - * + * * @return The tree version of the node */ public String getTreeVersion() { @@ -109,7 +108,7 @@ public class Version { /** * The protocol version of the node - * + * * @return The protocol version of the node */ public String getProtocolVersion() { @@ -118,7 +117,7 @@ public class Version { /** * The build number of the node. - * + * * @return The build number of the node */ public int getBuildNumber() { @@ -133,4 +132,4 @@ public class Version { return nodeName + "," + treeVersion + "," + protocolVersion + "," + buildNumber; } -} \ No newline at end of file +}