Skip to content

Commit

Permalink
Fixed NewProjectWizard to actually return its input value for topLeve…
Browse files Browse the repository at this point in the history
…lPackage
  • Loading branch information
lincolnthree committed Mar 8, 2013
1 parent fc8b1dc commit f9d1e4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,7 @@ public UISelectOne<ProjectType> getType()

public SingleValued<UIInput<String>, String> getTopLevelPackage()
{
// TODO Auto-generated method stub
return null;
return topLevelPackage;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ public UIContext getUIContext()

command.initializeUI(builder);
command.getNamed().setValue("test");
command.getTopLevelPackage().setValue("org.example");

command.validate(new UIValidationContext()
{
Expand Down

0 comments on commit f9d1e4c

Please sign in to comment.