[forge-issues] [JBoss JIRA] (FORGE-687) PromptType.JAVA_PACKAGE should support default package

Lincoln Baxter III (JIRA) jira-events at lists.jboss.org
Wed Apr 3 22:42:42 EDT 2013


    [ https://issues.jboss.org/browse/FORGE-687?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12764813#comment-12764813 ] 

Lincoln Baxter III commented on FORGE-687:
------------------------------------------

Good idea. This should not be difficult to achieve, simply by adjusting the regex here: https://github.com/forge/core/blob/master/shell-api/src/main/java/org/jboss/forge/shell/PromptType.java#L19

Want to give it a shot?
                
> PromptType.JAVA_PACKAGE should support default package
> ------------------------------------------------------
>
>                 Key: FORGE-687
>                 URL: https://issues.jboss.org/browse/FORGE-687
>             Project: Forge
>          Issue Type: Bug
>          Components: UI - Shell
>    Affects Versions: 1.0.5.Final
>            Reporter: Andre Dietisheim
>
> If you want to prompt the user to provide some valid java package you'd specify PromptType.JAVA_PACKAGE. Unfortunately this prompt type considers the empty string as invalid package even though I'd argue that this is the default package.
> If I ask the user for the package, scaffolded resources would get created to, I'd do:
> {code}
> prompt.promptCommon(target package: ", PromptType.JAVA_PACKAGE, project.getFacet(JavaSourceFacet.class).getBasePackageResource().toString())
> {code}
> If I have no valid packageResource (ex. forge would return an invalid base package) I'd want to suggest the user to put his sources into the default package (for a maven project: src/main/java). I'd then feed a "" as default to the prompt:
> {code}
> prompt.promptCommon(target package: ", PromptType.JAVA_PACKAGE, "")
> {code}
> Unfortunately the PromptType.JAVA_PACKAGE would not validate the empty string. It would tell me that this is not a valid package.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the forge-issues mailing list