[JBoss JIRA] Created: (JBIDE-9187) Seam Config XML: OpenOn for <s:Inject/>
by Alexey Kazakov (JIRA)
Seam Config XML: OpenOn for <s:Inject/>
---------------------------------------
Key: JBIDE-9187
URL: https://issues.jboss.org/browse/JBIDE-9187
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: cdi (jsr-299)
Reporter: Alexey Kazakov
Assignee: Daniel Azarov
Fix For: 3.3.x
EXECUTE: Create CDI project with Seam Config support
EXECUTE: Create org.example.Report class:
{code}
package org.example.reports;
import javax.enterprise.inject.Produces;
public class Report {
public String filename;
public String datasource;
@Produces
public String foo() {
return "1";
}
@Produces
public String foo1() {
return "2";
}
}
{code}
EXECUTE: Add the following code to seam-beans.xml:
{code}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:s="urn:java:ee"
xmlns:r="urn:java:org.example.reports">
<r:Report>
<r:datasource>
<s:Inject/>
</r:datasource>
</r:Report>
</beans>
{code}
EXECUTE: Ctrl+Click on <s:Inject/>
ASSERT: The list of all the eligible beans appears.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (JBIDE-9203) Plain text value for translation is chosen wrongly when translating .jsp page via Externalize Selected String
by Vlado Pakan (JIRA)
Plain text value for translation is chosen wrongly when translating .jsp page via Externalize Selected String
-------------------------------------------------------------------------------------------------------------
Key: JBIDE-9203
URL: https://issues.jboss.org/browse/JBIDE-9203
Project: Tools (JBoss Tools)
Issue Type: Bug
Components: Visual Page Editor core
Affects Versions: 3.3.0.M2
Environment: Linux 32bit, Sun JDK 1.6.0_25, jbdevstudio-product-linux-gtk-5.0.0.v201106172137N-H681-M2.
Reporter: Vlado Pakan
Assignee: Yahor Radtsevich
Fix For: 3.3.0.M3
1. Create JSF kick start project
2. Open hello.jsp page
3. Insert "Plain" text as shown on picture below and choose Externalize selected string toolbar button
In the Externalize String dialog is set text "Plain" as Property value but together with special characters <EOL>
!externalizestringdialog.png!
4. Choose next>, next>, OK. (Use default values)
hello.jsp page look like this. <EOL> characters around "Plain" text were removed/replaced with reference to .properties file:
!externalizestringresult.png!
hello.properties has wrong contnent:
!propertiesfile.png!
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (JBIDE-7279) Provide support for JAX-WS 2.2 APIs
by Lukas Jungmann (JIRA)
Provide support for JAX-WS 2.2 APIs
-----------------------------------
Key: JBIDE-7279
URL: https://jira.jboss.org/browse/JBIDE-7279
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: Webservices
Affects Versions: 3.2.0.Beta1
Reporter: Lukas Jungmann
Assignee: Brian Fitzpatrick
[this is to be checked against JBossAS 6.0M5 or newer]
for a project which has target runtime set to JBossAS6/uses JBossWS 3.3.x
-user should be allowed to set JAX-WS spec version in a top-down web service and web service client wizards to 2.2
-editor should not show errors for following generated type of constructor:
public Info(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
(in the other words editor/ide has to know about APIs from $JBOSS_HOME/lib/endorsed)
--
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
13 years, 11 months