[JBoss JIRA] Created: (JBIDE-6391) The method findInjectionPoint(Set<IBean>, IJavaElement, int) in the type CDIUtil is not applicable for the arguments (Set<IBean>, IJavaElement)
by Nick Boldt (JIRA)
The method findInjectionPoint(Set<IBean>, IJavaElement, int) in the type CDIUtil is not applicable for the arguments (Set<IBean>, IJavaElement)
-----------------------------------------------------------------------------------------------------------------------------------------------
Key: JBIDE-6391
URL: https://jira.jboss.org/browse/JBIDE-6391
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Affects Versions: 3.2-Helios
Reporter: Nick Boldt
Assignee: Max Rydahl Andersen
[java] [javac] 7. ERROR in /qa/hudson_ws/workspace/devstudio-nightly-4.0/jbds-build/eclipse/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/search/InjectionPointQueryParticipant.java (at line 83)
[java] [javac] IInjectionPoint injectionPoint = CDIUtil.findInjectionPoint(beans, element);
[java] [javac] ^^^^^^^^^^^^^^^^^^
[java] [javac] The method findInjectionPoint(Set<IBean>, IJavaElement, int) in the type CDIUtil is not applicable for the arguments (Set<IBean>, IJavaElement)
http://hudson.qa.jboss.com/hudson/view/DevStudio/job/devstudio-nightly-4....
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 6 months
[JBoss JIRA] Created: (JBIDE-6387) Type of a method parameter is null in case of generic method.
by Alexey Kazakov (JIRA)
Type of a method parameter is null in case of generic method.
-------------------------------------------------------------
Key: JBIDE-6387
URL: https://jira.jboss.org/browse/JBIDE-6387
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Affects Versions: 3.2.next
Reporter: Alexey Kazakov
Assignee: Viacheslav Kabanovich
Fix For: 3.2.next
For example:
class FarmBroken <U> {
@Inject
public <T extends Animal> void setAnimal(T animal) {
}
@Inject
public void setMan(U man) {
}
}
setMan(U man) has a parameter U man. And IParameter returns IParametedType which is not null.
But setAnimal(T animal) has a parameter which is type variable declared in the generic method. And IParameter.getType() returns null. It's not ok. It should return IParametedType with a signature==QT; and IType == null.
org.jboss.tools.cdi.core.test.tck.InjectionPointTest.testMethodParameter() should pass.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 6 months
[JBoss JIRA] Created: (JBIDE-6380) Specializing bean should inherit the qualifiers and name of specialized bean.
by Alexey Kazakov (JIRA)
Specializing bean should inherit the qualifiers and name of specialized bean.
-----------------------------------------------------------------------------
Key: JBIDE-6380
URL: https://jira.jboss.org/browse/JBIDE-6380
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Affects Versions: 3.2.next
Reporter: Alexey Kazakov
Assignee: Viacheslav Kabanovich
Fix For: 3.2.next
For example:
@Mock @Specializes
public class MockAsynchronousService extends AsynchronousService {
...
}
@Default @Asynchronous @Named("asyncService")
public class AsynchronousService implements Service{
...
}
then MockAsynchronousService inherits the qualifiers and name of AsynchronousService.
See 4.3 section of the spec.
All the tests of org.jboss.tools.cdi.core.test.tck.BeanSpecializationTest JUnit should pass.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 6 months
[JBoss JIRA] Created: (JBIDE-6360) Need to validate view-id locations in pages.xml
by Samuel Mendenhall (JIRA)
Need to validate view-id locations in pages.xml
-----------------------------------------------
Key: JBIDE-6360
URL: https://jira.jboss.org/browse/JBIDE-6360
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Seam
Affects Versions: 3.1.0.GA
Reporter: Samuel Mendenhall
Assignee: Alexey Kazakov
Priority: Minor
Currently one can put a wrong view-id in a navigation in pages.xml and JBoss Tools does not complain about it. It would be nice to have a compile time checking so that
<page view-id="/home.xhtml" action=
"#{identity.isLoggedIn}">
<navigation>
<rule if="#{identity.loggedIn}">
<redirect view-id="/man.xhtml"/>
</rule>
</navigation>
</page>
for example is flagged as /man.xhtml is spelled wrong, it should be /main.xhtml
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 6 months
[JBoss JIRA] Created: (JBIDE-6285) Don't invoke code assist automaticly if user inserts <tag></tag>.
by Alexey Kazakov (JIRA)
Don't invoke code assist automaticly if user inserts <tag></tag>.
-----------------------------------------------------------------
Key: JBIDE-6285
URL: https://jira.jboss.org/jira/browse/JBIDE-6285
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: jsp/jsf/xml source editing
Affects Versions: 3.1.0.GA
Reporter: Alexey Kazakov
Assignee: Victor Rubezhny
Fix For: 3.2.next
If user press Ctrl+Space and insert any tag like:
<tag attribute="|" /> then CA invokes automaticly for attribute="|". It's ok.
For <tag | /> it's ok too.
But for <tag>|</tag> it's not ok. Let's just insert a proposal and if cursor placed between inserted tags then don't invoke CA automaticly again. It's not convinient here because in most cases user will want to press Enter after <tag>| but CA automaticly will insert first proposal in this case.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 7 months