[JBoss JIRA] (FORGE-2264) add/remove annotation on fields
by ludovic Bertin (JIRA)
ludovic Bertin created FORGE-2264:
-------------------------------------
Summary: add/remove annotation on fields
Key: FORGE-2264
URL: https://issues.jboss.org/browse/FORGE-2264
Project: Forge
Issue Type: Feature Request
Reporter: ludovic Bertin
JavaClassSource has methods to add/remove annotations.
org.jboss.forge.roaster.model.Field DOESN'T.
Is it possible to add the feature ?
If not, what is the best approach to remove an annotation on a field.
Thanks
Ludovic
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
10 years, 7 months
[JBoss JIRA] (FORGE-1960) Support creation and management of Cordova projects
by George Gastaldi (JIRA)
[ https://issues.jboss.org/browse/FORGE-1960?page=com.atlassian.jira.plugin... ]
George Gastaldi updated FORGE-1960:
-----------------------------------
Status: Open (was: Pull Request Sent)
> Support creation and management of Cordova projects
> ---------------------------------------------------
>
> Key: FORGE-1960
> URL: https://issues.jboss.org/browse/FORGE-1960
> Project: Forge
> Issue Type: Feature Request
> Components: Projects
> Affects Versions: 2.7.2.Final
> Reporter: Vineet Reynolds
> Fix For: 2.x Future
>
>
> We should support creation of new Cordova projects in Forge. This is primarily to help with FORGEPLUGINS-113 and FORGEPLUGINS-166 so that projects with a different build system unlike Maven or Gradle can be supported by Forge.
> We should also allow existing Cordova projects to be recognized as projects in Forge so that additional contextual commands maybe activated for the benefit of end-users.
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
10 years, 7 months
[JBoss JIRA] (FORGE-2227) Being able to create a new Entity Listener
by Antonio Goncalves (JIRA)
[ https://issues.jboss.org/browse/FORGE-2227?page=com.atlassian.jira.plugin... ]
Antonio Goncalves closed FORGE-2227.
------------------------------------
Resolution: Duplicate Issue
Duplicates FORGE-2093
> Being able to create a new Entity Listener
> ------------------------------------------
>
> Key: FORGE-2227
> URL: https://issues.jboss.org/browse/FORGE-2227
> Project: Forge
> Issue Type: Sub-task
> Components: Java EE
> Affects Versions: 2.14.0.Final
> Reporter: Antonio Goncalves
> Fix For: 2.x Future
>
>
> It would be good to have a command to create an Entity Listener. A command like this :
> {code}
> cdi-new-entity-listener --named MyListener ;
> {code}
> Would generate by default in the {{model}} package :
> {code}
> public class MyListener
> {
> }
> {code}
> Nothing too fancy, but the command could propose a list of events and generate a method per event :
> {code}
> cdi-new-entity-listener --named MyListener --events PRE_PERSIST POST_PERSIST PRE_UPDATE ;
> {code}
> {code}
> public class MyListener
> {
> @PrePersist
> private void prePersist(Object object)
> {
> throw new UnsupportedOperationException("Not supported yet.");
> }
> @PostPersist
> private void postPersist(Object object)
> {
> throw new UnsupportedOperationException("Not supported yet.");
> }
> @PreUpdate
> private void preUpdate(Object object)
> {
> throw new UnsupportedOperationException("Not supported yet.");
> }
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
10 years, 7 months
[JBoss JIRA] (FORGE-2261) Refactoring the Bean Validation Commands
by Antonio Goncalves (JIRA)
Antonio Goncalves created FORGE-2261:
----------------------------------------
Summary: Refactoring the Bean Validation Commands
Key: FORGE-2261
URL: https://issues.jboss.org/browse/FORGE-2261
Project: Forge
Issue Type: Sub-task
Components: UI - API
Affects Versions: 2.14.0.Final
Reporter: Antonio Goncalves
Fix For: 2.x Future
Introducing an {{AbstractValidationCommand}} class that will inherit {{AbstractJavaSourceCommand}} and implement {{PrerequisiteCommandsProvider}}
--
This message was sent by Atlassian JIRA
(v6.3.11#6341)
10 years, 7 months