[JBoss JIRA] (JBIDE-12639) add openshift to the components that usage is reporting
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-12639:
----------------------------------------
Summary: add openshift to the components that usage is reporting
Key: JBIDE-12639
URL: https://issues.jboss.org/browse/JBIDE-12639
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: usage
Affects Versions: 4.0.0.Alpha1
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 4.0.0.Alpha2
Usage is checking for JBoss tools components in an Eclipse instance. It'll then report to Google Analytics that the component is installed.
Usage is currently not reporting openshift. We should add it to the components that are searched and reported.
--
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
13 years, 9 months
[JBoss JIRA] (JBIDE-12641) remove TPTP from the components that usage is reporting
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-12641:
----------------------------------------
Summary: remove TPTP from the components that usage is reporting
Key: JBIDE-12641
URL: https://issues.jboss.org/browse/JBIDE-12641
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: usage
Affects Versions: 4.0.0.Alpha1
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 4.0.0.Alpha2
Usage is checking for JBoss tools components in an Eclipse instance. It'll then report to Google Analytics that the component is installed.
Usage is currently not reporting forge. We should add it to the components that are searched and reported.
--
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
13 years, 9 months
[JBoss JIRA] (JBIDE-12642) add central to the components that usage is reporting
by Andre Dietisheim (JIRA)
Andre Dietisheim created JBIDE-12642:
----------------------------------------
Summary: add central to the components that usage is reporting
Key: JBIDE-12642
URL: https://issues.jboss.org/browse/JBIDE-12642
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: usage
Affects Versions: 4.0.0.Alpha1
Reporter: Andre Dietisheim
Assignee: Andre Dietisheim
Fix For: 4.0.0.Alpha2
Usage is checking for JBoss tools components in an Eclipse instance. It'll then report to Google Analytics that the component is installed.
Usage is currently reporting tptp whereas tptp is not present in trunk any more. We should remove it from the components that are searched and reported.
--
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
13 years, 9 months
[JBoss JIRA] (JBIDE-12546) Dialog 'Show All Assignable Beans' does not take into account unsaved changes in current file
by Viacheslav Kabanovich (JIRA)
Viacheslav Kabanovich created JBIDE-12546:
---------------------------------------------
Summary: Dialog 'Show All Assignable Beans' does not take into account unsaved changes in current file
Key: JBIDE-12546
URL: https://issues.jboss.org/browse/JBIDE-12546
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: CDI
Affects Versions: 4.0.0.Alpha1
Reporter: Viacheslav Kabanovich
Assignee: Viacheslav Kabanovich
Fix For: 4.0.0.Alpha2
EXECUTE: Create a bean with an injection point and producers of beans assignable to it.
{code}
public class A {
@Inject @Named("nobean") String a1;
static @Produces @Named("nobean") String s1;
static @Produces @Named("nobean") String s2;
}
{code}
EXECUTE: Replace text 's2' by 's3', do not save.
EXECUTE: Open dialog 'Show All Assignable Beans'.
ASSERT: List of assignable beans includes A.s3, not A.s2.
--
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
13 years, 9 months
[JBoss JIRA] (JBIDE-12576) Improve the structure of JAX-RS Validator
by Jaroslav Jankovič (JIRA)
Jaroslav Jankovič created JBIDE-12576:
-----------------------------------------
Summary: Improve the structure of JAX-RS Validator
Key: JBIDE-12576
URL: https://issues.jboss.org/browse/JBIDE-12576
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: Webservices
Affects Versions: 4.0.0.Alpha1
Reporter: Jaroslav Jankovič
Assignee: Xavier Coulon
Fix For: 4.0.0.Alpha1
Now there are three subsections of JAX-RS Validator:
* User-defined HTTP methods
* User-defined HTTP methods
* JAX-RS Resource methods
I really don't like two subsections with the same name. Need another name for the first one, something like "Global project configuration" or something like that :)
--
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
13 years, 9 months
[JBoss JIRA] (JBIDE-12404) CDI hyper links should work on modified files correctly
by Alexey Kazakov (JIRA)
Alexey Kazakov created JBIDE-12404:
--------------------------------------
Summary: CDI hyper links should work on modified files correctly
Key: JBIDE-12404
URL: https://issues.jboss.org/browse/JBIDE-12404
Project: Tools (JBoss Tools)
Issue Type: Enhancement
Components: CDI
Reporter: Alexey Kazakov
Assignee: Daniel Azarov
Fix For: 3.4.0.M1
1. Create a cdi project.
2. Create an empty test.Test class.
3. Modify the file (don't save it!):
{code}
package test;
import javax.enterprise.inject.Produces;
import javax.inject.Inject;
import javax.inject.Named;
public class Test {
@Inject @Named Test2 create;
@Produces
@Named
public Test2 create() {
return new Test2();
}
@Produces
@Named("create")
public Test2 create2() {
return new Test2();
}
public static class Test2 {
}
}
{code}
4. Try Ctrl+click on the injection. It should suggest to navigate to the producers.
Right now it's not working until you saved the file.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 9 months