From 27134534d9035c73371a20eaedc3847a0a414545 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Thu, 24 Apr 2008 18:09:43 +0000 Subject: [PATCH] add javadoc git-svn-id: http://trooper/svn/projects/jSite/trunk@759 c3eda9e8-030b-0410-8277-bc7414b0a119 --- src/net/pterodactylus/jsite/gui/ProjectPanel.java | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/net/pterodactylus/jsite/gui/ProjectPanel.java b/src/net/pterodactylus/jsite/gui/ProjectPanel.java index dd27016..13ff716 100644 --- a/src/net/pterodactylus/jsite/gui/ProjectPanel.java +++ b/src/net/pterodactylus/jsite/gui/ProjectPanel.java @@ -32,7 +32,7 @@ import net.pterodactylus.jsite.core.Project; /** * A panel that contains all information about a project and lets the user edit * the properties of the project. - * + * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> * @version $Id$ */ @@ -40,14 +40,17 @@ public class ProjectPanel extends JPanel { /** The Swing interface. */ private final SwingInterface swingInterface; + + /** The project to show. */ private final Project project; /** * Creates a new project panel. - * + * * @param swingInterface * The Swing interface - * @param project The project to display + * @param project + * The project to display */ public ProjectPanel(SwingInterface swingInterface, Project project) { super(new BorderLayout(12, 12)); @@ -55,13 +58,14 @@ public class ProjectPanel extends JPanel { this.project = project; initComponents(); } - + // // ACCESSORS // - + /** * Returns the project that is displayed in this panel. + * * @return The project of this panel */ public Project getProject() { @@ -87,7 +91,7 @@ public class ProjectPanel extends JPanel { /** * Creates the properties panel. - * + * * @return The properties panel */ private JPanel createPropertiesPanel() { @@ -98,7 +102,7 @@ public class ProjectPanel extends JPanel { /** * Creates the button panel. - * + * * @return The button panel */ private JPanel createButtonPanel() { -- 2.7.4