[JBoss JIRA] (JBIDE-19739) Websockets: Content assist for endpoint classes
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19739?page=com.atlassian.jira.plugi... ]
Alexey Kazakov updated JBIDE-19739:
-----------------------------------
Description:
Content assist for classes annotated @ServerEndpoint or @ClientEndpoint with the following proposals:
- Add @OnMessage method (if not present yet)
- Add @OnOpen method
- Add @OnClose method
- Add @OnError method
Labels: new_and_noteworthy (was: )
> Websockets: Content assist for endpoint classes
> -----------------------------------------------
>
> Key: JBIDE-19739
> URL: https://issues.jboss.org/browse/JBIDE-19739
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: webservices
> Reporter: Alexey Kazakov
> Assignee: Viacheslav Kabanovich
> Labels: new_and_noteworthy
> Fix For: 4.3.0.Beta1
>
>
> Content assist for classes annotated @ServerEndpoint or @ClientEndpoint with the following proposals:
> - Add @OnMessage method (if not present yet)
> - Add @OnOpen method
> - Add @OnClose method
> - Add @OnError method
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 11 months
[JBoss JIRA] (JBIDE-13727) Enable generation of tests for Seam components
by Alexey Kazakov (JIRA)
[ https://issues.jboss.org/browse/JBIDE-13727?page=com.atlassian.jira.plugi... ]
Alexey Kazakov resolved JBIDE-13727.
------------------------------------
Fix Version/s: 4.3.0.Beta1
(was: 4.3.x)
Resolution: Won't Fix
> Enable generation of tests for Seam components
> ----------------------------------------------
>
> Key: JBIDE-13727
> URL: https://issues.jboss.org/browse/JBIDE-13727
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: seam2
> Affects Versions: 4.0.0.Final, 4.1.0.Beta1
> Environment: JBDS 6.0.0.GA, JBDS 7.0.0.Beta1. JBDS 7.1.0.GA
> Reporter: Tomas Remes
> Assignee: Alexey Kazakov
> Fix For: 4.3.0.Beta1
>
>
> Currently the test generation for Seam Action, Form is disabled (but not properly - see JBIDE-13596) because of previous Seam version (I guess 2.3.0.Final). In latest Seam version test can be already generated by seam-gen and are even valid and usable.
> JBDS should enable and support this functionality again.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 11 months
[JBoss JIRA] (JBIDE-19704) Visual part of Visual/Source tab is empty for HTML page when JSF support enabled
by Ilya Buziuk (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19704?page=com.atlassian.jira.plugi... ]
Ilya Buziuk commented on JBIDE-19704:
-------------------------------------
reproduced same behavior on RHEL 7 86_64
This simple page is not parsed by vpe with xulrunner
However, *index.html* from jboss-as-kitchensink-html5-mobile is parsed like a charm. Pretty weird behavior
> Visual part of Visual/Source tab is empty for HTML page when JSF support enabled
> --------------------------------------------------------------------------------
>
> Key: JBIDE-19704
> URL: https://issues.jboss.org/browse/JBIDE-19704
> Project: Tools (JBoss Tools)
> Issue Type: Bug
> Components: visual-page-editor-core
> Affects Versions: 4.3.0.Alpha2
> Environment: Fedora 19 64bit, JBDS 9.0.0.Alpha2-v20150421-1151-B25, Oracle JDK 1.7
> Reporter: Vlado Pakan
> Assignee: Ilya Buziuk
>
> 1. Set Visual Editor to use JSF support
> 2. Create simple HTML page like this and open it in VPE editor
> {code:html}
> <!DOCTYPE html>
> <html>
> <body>
> <h1>test heading</h1>
> </body>
> </html>
> {code}
> ERROR: Visual part of Visual/Source tab of VPE is empty.
> Visual tab of VPE renders page properly.
> When HTML support is enabled it works fine.
> I'm not sure if this is issue or expected behavior so if it's not an issue just mark it as won't fix please.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 11 months
[JBoss JIRA] (JBIDE-19342) Update code to cope with generics added to org.eclipse.core.runtime package API
by Denis Golovin (JIRA)
[ https://issues.jboss.org/browse/JBIDE-19342?page=com.atlassian.jira.plugi... ]
Denis Golovin commented on JBIDE-19342:
---------------------------------------
Building IAdapter hierarchy is not working for me fails with error explained here [451352|https://bugs.eclipse.org/bugs/show_bug.cgi?id=451352].
> Update code to cope with generics added to org.eclipse.core.runtime package API
> --------------------------------------------------------------------------------
>
> Key: JBIDE-19342
> URL: https://issues.jboss.org/browse/JBIDE-19342
> Project: Tools (JBoss Tools)
> Issue Type: Enhancement
> Components: aerogear-hybrid, archives, batch, bean-validation, birt, browsersim, cdi, cdi-extensions, central, common/jst/core, cordovasim, forge, hibernate, integration-platform, jmx, jsf, jsp/jsf/xml/html source editing
> Affects Versions: 4.3.0.Alpha2
> Reporter: Fred Bricon
> Priority: Minor
> Fix For: 4.3.x
>
>
> We need to detect and address any part of our code affected by generics added to the org.eclipse.core.runtime package API.
> From https://dev.eclipse.org/mhonarc/lists/cross-project-issues-dev/msg11590.html :
> {quote}
> See https://bugs.eclipse.org/bugs/show_bug.cgi?id=442021
> Markus Keller wrote up an nice summary of what consumers should do to fix any warnings that may be caused by this change at https://bugs.eclipse.org/bugs/show_bug.cgi?id=442021#c25
> Here is a copy of the recommendations if you are going to compile against the latest version of org.eclipse.equinox.common:
> 1. In MANIFEST.MF, update your Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.11.0,4.0.0)", or org.eclipse.equinox.common;bundle-version="[3.7.0,4.0.0)", or update your Import-Package: org.eclipse.core.runtime; version="[3.5,4.0)"
> 2. If your bundle re-exports one of these bundles, then you also have to make sure the minor version is incremented.
> 3. Remove unnecessary casts (Clean Up, or Problems view > Quick Fix > Select All)
> 4. Update implementations of IAdaptable#getAdapter(Class<T>), unless you override another implementation of that method that still uses the old signature.
> Typical change:
> Old:
> {code}
> public Object getAdapter(Class adapter) {
> if (ICompilationUnit.class.equals(adapter))
> return getCompilationUnit();
> return null;
> }
> {code}
> New:
> {code}
> public <T> T getAdapter(Class<T> adapter) {
> if (ICompilationUnit.class.equals(adapter))
> return adapter.cast(getCompilationUnit());
> return null;
> }
> {code}
> 5. Update implementations of IAdapterFactory
> Hint for 4. & 5.:
> - Open Type Hierarchy on IAdaptable, etc.
> - In the view menu, select a working set that contains your projects
> - In the methods list of the Type Hierarchy view, select the methods, and then click the first toolbar button (Lock View and Show Members in Hierarchy)
> {quote}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 11 months
[JBoss JIRA] (JBIDE-18570) Creating EJB 3.x bean is asking EJB 2.x values
by Rob Stryker (JIRA)
[ https://issues.jboss.org/browse/JBIDE-18570?page=com.atlassian.jira.plugi... ]
Rob Stryker commented on JBIDE-18570:
-------------------------------------
> and I'm sure Rob will be happy to reconsider
It's not about me reconsidering ;) These are WTP wizards, so I'd need a compelling argument to get them to change their UI, which has been stable for a long time.
> Creating EJB 3.x bean is asking EJB 2.x values
> ----------------------------------------------
>
> Key: JBIDE-18570
> URL: https://issues.jboss.org/browse/JBIDE-18570
> Project: Tools (JBoss Tools)
> Issue Type: Feature Request
> Components: ejb3, upstream
> Reporter: Arun Gupta
> Assignee: Rob Stryker
> Fix For: 4.3.x
>
> Attachments: Screen Shot 2014-10-09 at 9.41.39 pm.png
>
>
> Creating a singleton EJB using 3.x wizard and its asking for home and component interfaces from 2.x. This is confusing and redundant.
> Image coming in attachment next.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
10 years, 11 months