Skip to content

Commit

Permalink
Merge pull request #539 from danielsoro/FORGE-1897
Browse files Browse the repository at this point in the history
[FORGE-1897] Fixed: Show the file extension of a project type when creating a new project
  • Loading branch information
gastaldi committed Mar 3, 2015
2 parents 2eb4c22 + 0484283 commit 8238920
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class FurnaceAddonProjectType extends AbstractProjectType
@Override
public String getType()
{
return "Forge Addon";
return "Forge Addon (JAR)";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class JavaEnterpriseProjectType extends AbstractProjectType
@Override
public String getType()
{
return "Java Enterprise Archive";
return "Java Enterprise Archive (EAR)";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class JavaProjectType extends AbstractProjectType
@Override
public String getType()
{
return "Java Library";
return "Java Library (JAR)";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class JavaWebProjectType extends AbstractProjectType
@Override
public String getType()
{
return "Java Web Application";
return "Java Web Application (WAR)";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class ResourcesProjectType extends AbstractProjectType
@Override
public String getType()
{
return "Java Resources";
return "Java Resources (JAR)";
}

@Override
Expand Down

0 comments on commit 8238920

Please sign in to comment.