[JBoss JIRA] (FORGE-2374) Being able to generate an abstract or final Java class implementing serialiazable or not
by George Gastaldi (JIRA)
[ https://issues.jboss.org/browse/FORGE-2374?page=com.atlassian.jira.plugin... ]
George Gastaldi updated FORGE-2374:
-----------------------------------
Labels: starter (was: )
> Being able to generate an abstract or final Java class implementing serialiazable or not
> ----------------------------------------------------------------------------------------
>
> Key: FORGE-2374
> URL: https://issues.jboss.org/browse/FORGE-2374
> Project: Forge
> Issue Type: Sub-task
> Components: UI - API
> Affects Versions: 2.16.2.Final
> Reporter: Antonio Goncalves
> Labels: starter
> Fix For: 2.x Future
>
>
> At the moment the {{java-new-class}} only has a {{targetPackage}} and {{named}} parameter. It would be good to be able to generate abstract or final classes with serializable interfaces
> {code}
> $ java-new-class --named MyClass --isAbstract
> public abstract class MyClass {
> }
> {code}
> Or final :
> {code}
> $ java-new-class --named MyClass --isFinal
> public final class MyClass {
> }
> {code}
> What we have to be careful is that a class cannot be abstract and final. So the following is illegal :
> {code}
> $ java-new-class --named MyClass --isFinal --isAbstract --serializable
> public final abstract class MyClass implements Serializable {
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
9 years, 3 months
[JBoss JIRA] (FORGE-2444) Allow multiple resources selection in UIInputMany
by George Gastaldi (JIRA)
[ https://issues.jboss.org/browse/FORGE-2444?page=com.atlassian.jira.plugin... ]
George Gastaldi updated FORGE-2444:
-----------------------------------
Fix Version/s: 2.x Future
Component/s: UI - Eclipse
UI - IntelliJ IDEA
UI - NetBeans
(was: Addon Development)
> Allow multiple resources selection in UIInputMany
> --------------------------------------------------
>
> Key: FORGE-2444
> URL: https://issues.jboss.org/browse/FORGE-2444
> Project: Forge
> Issue Type: Enhancement
> Components: UI - Eclipse, UI - IntelliJ IDEA, UI - NetBeans
> Affects Versions: 2.17.0.Final
> Reporter: Rafael Pestano
> Fix For: 2.x Future
>
>
> For now we cannot select more then one resource (eg:files in the filesystem) to be added in a UIInputMany, we have to select a resource at a time.
> example:
> {code:title=Bar.java|borderStyle=solid}
> @Inject
> @WithAttributes(label = "Select Files")
> private UIInputMany<FileResource<?>> files;
> {code}
> Will prompt a popup to select files but you cant sewlect more then one
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
9 years, 3 months