Skip to content

Commit

Permalink
Added description to the New Project wizards.
Browse files Browse the repository at this point in the history
  • Loading branch information
kelemen committed Sep 8, 2012
1 parent 164ac61 commit fae6645
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 0 deletions.
Expand Up @@ -24,6 +24,7 @@
@TemplateRegistration(
folder="Project/Gradle",
displayName="#template.multiGradleProject",
description="MultiProject.html",
iconBase=NbIcons.PROJECT_ICON_PATH)
@Messages("template.multiGradleProject=Gradle Root Project")
public final class GradleMultiProjectWizardIterator
Expand Down
Expand Up @@ -24,6 +24,7 @@
@TemplateRegistration(
folder="Project/Gradle",
displayName="#template.singleGradleProject",
description="SingleProject.html",
iconBase=NbIcons.PROJECT_ICON_PATH)
@Messages("template.singleGradleProject=Single Gradle Project")
public final class GradleSingleProjectWizardIterator
Expand Down
Expand Up @@ -22,6 +22,7 @@
@TemplateRegistration(
folder="Project/Gradle",
displayName="#template.subGradleProject",
description="Subproject.html",
iconBase=NbIcons.PROJECT_ICON_PATH)
@Messages("template.subGradleProject=Gradle Subproject")
public final class GradleSubProjectWizardIterator
Expand Down
3 changes: 3 additions & 0 deletions src/org/netbeans/gradle/project/newproject/MultiProject.html
@@ -0,0 +1,3 @@
Creates a Gradle project which is a root project of other Gradle projects.
To add subprojects to this Gradle project, simply create a new project with
the "Gradle Subproject" wizard in the directory of the root project.
@@ -0,0 +1 @@
Creates a Gradle project containing a single Java SE project.
1 change: 1 addition & 0 deletions src/org/netbeans/gradle/project/newproject/Subproject.html
@@ -0,0 +1 @@
Adds a Java SE subproject to a previously create Gradle root project.

0 comments on commit fae6645

Please sign in to comment.