X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fnet%2Fpterodactylus%2Fjsite%2Fgui%2FProjectPanel.java;h=13ff71603f370ea3cd65e5e4f4461b9ef5acc295;hb=27134534d9035c73371a20eaedc3847a0a414545;hp=dd2701650e4ce2498afa30e74b206b60af807f67;hpb=ebf4d1a0fb0f7e00e5aff798270dd2124070886a;p=jSite2.git 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() {