From: David ‘Bombe’ Roden Date: Thu, 12 Jun 2008 15:50:08 +0000 (+0200) Subject: add toString() X-Git-Url: https://git.pterodactylus.net/?p=jSite2.git;a=commitdiff_plain;h=9ead5c4ce7962b75e632346e51a984bcb1f71eed add toString() --- diff --git a/src/net/pterodactylus/jsite/core/Project.java b/src/net/pterodactylus/jsite/core/Project.java index d250af1..8bc45dd 100644 --- a/src/net/pterodactylus/jsite/core/Project.java +++ b/src/net/pterodactylus/jsite/core/Project.java @@ -399,6 +399,14 @@ public class Project extends AbstractBean { fireIfPropertyChanged(PROPERTY_NODE, oldNode, node); } + /** + * @see java.lang.Object#toString() + */ + @Override + public String toString() { + return getClass().getName() + "[id=" + id + ",name=" + name + ",description=" + description + ",publicKey=" + publicKey + ",privateKey=" + privateKey + ",basePath=" + basePath + ",defaultFile=" + defaultFile + ",node=" + node + "]"; + } + // // PRIVATE METHODS //