[JBoss JIRA] Created: (JBIDE-7793) jBPM Editor issues during removing nodes
by Jiri Peterka (JIRA)
jBPM Editor issues during removing nodes
----------------------------------------
Key: JBIDE-7793
URL: https://jira.jboss.org/browse/JBIDE-7793
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: jbpm
Affects Versions: 3.2.0.Beta2
Environment: JBDS 4.0.0.beta2 H23, Fedora 14-64b
Reporter: Jiri Peterka
Attachments: wrong-dialog.png
1. Create simple jbpm process
2. Open simple.jpdl.xml
3. select start node, press Delete key
Error: instead of node deletion, there is Corfirm Delete dialog refering to removing whole file
Error2: sometimes no appears and nothing happens after Del key pressing
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (JBDS-1420) CDI producer method incorrectly recognized as invalid
by Jozef Hartinger (JIRA)
CDI producer method incorrectly recognized as invalid
-----------------------------------------------------
Key: JBDS-1420
URL: https://jira.jboss.org/browse/JBDS-1420
Project: Developer Studio (JBoss Developer Studio)
Issue Type: Bug
Affects Versions: 4.0.0.Beta1
Environment: Linux 64bit
JDK 1.6.21
Reporter: Jozef Hartinger
Assignee: Max Andersen
JBDS incorrectly interprets the section 3.3.2 of the CDI spec. The spec says:
"If a non-static method of a session bean class is annotated @Produces, and the method is not a business method of the session
bean, the container automatically detects the problem and treats it as a definition error."
The violation of the spec is incorrectly recognized on the bean class local view session beans (those since ejb 3.1 that no longer need an explicit local interface)
having the following bean:
@Stateful
public class TestBean {
@Produces
@Named("foo")
public String foo()
{
return "foo";
}
}
JBDS considers the producer method as incorrect even though all the public methods of the bean class local view session bean are its business methods and thus the producer method is valid.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (JBIDE-7802) register CDI as keyword for New Wizards
by Max Andersen (JIRA)
register CDI as keyword for New Wizards
---------------------------------------
Key: JBIDE-7802
URL: https://jira.jboss.org/browse/JBIDE-7802
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Reporter: Max Andersen
Assignee: Alexey Kazakov
Fix For: 3.2.0.CR1
EXECUTE: Ctrl+N (new wizard)
EXECUTE: type "java"
ASSERT: wizards releated to java shows up also things not with java in their name (i.e. interface, enumeration etc.)
EXECUTE: remove "java" and type "cdi"
ASSERT: wizards related to CDI shows up (i.e. Injection Scoped Bean)
Currently that last Assert fails - nothing is shown.
If it did show the list users would not need to use the mouse to find things they might now the full name of.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months
[JBoss JIRA] Created: (JBIDE-7951) StackOverflowError in CDI builder for parameted classes.
by Alexey Kazakov (JIRA)
StackOverflowError in CDI builder for parameted classes.
--------------------------------------------------------
Key: JBIDE-7951
URL: https://issues.jboss.org/browse/JBIDE-7951
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: cdi (jsr-299)
Affects Versions: 3.2.0.Beta2
Reporter: Alexey Kazakov
Assignee: Viacheslav Kabanovich
Priority: Blocker
Fix For: 3.2.0.CR1
1. Create two sources in a CDI enabled project:
public abstract class AbstractJavaSource<O extends JavaSource<O>> implements
JavaSource<O> {
}
public interface JavaSource<T extends JavaSource<T>> {
}
2. Build the project
3. Result:
...
at org.jboss.tools.cdi.internal.core.impl.definition.ParametedTypeFactory.getParametedTypeForParameter(ParametedTypeFactory.java:192)
at org.jboss.tools.cdi.internal.core.impl.definition.ParametedTypeFactory.getParametedType(ParametedTypeFactory.java:138)
at org.jboss.tools.cdi.internal.core.impl.definition.ParametedTypeFactory.getParametedType(ParametedTypeFactory.java:158)
at org.jboss.tools.cdi.internal.core.impl.definition.ParametedTypeFactory.getParametedTypeForParameter(ParametedTypeFactory.java:192)
at org.jboss.tools.cdi.internal.core.impl.definition.ParametedTypeFactory.getParametedType(ParametedTypeFactory.java:138)
at org.jboss.tools.cdi.internal.core.impl.definition.ParametedTypeFactory.getParametedType(ParametedTypeFactory.java:158)
...
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 2 months