]
Lucia Jelinkova closed JBIDE-19386.
-----------------------------------
Verified in JBDS 9.0.0.beta1 that content assis lists available classes. Created new issue
for filtering those classes only to real exception JBIDE-19972.
Content assist for <* class=""> in Batch Job XML
files.
-------------------------------------------------------
Key: JBIDE-19386
URL:
https://issues.jboss.org/browse/JBIDE-19386
Project: Tools (JBoss Tools)
Issue Type: Feature Request
Components: batch
Reporter: Alexey Kazakov
Assignee: Alexey Kazakov
Labels: new_and_noteworthy
Fix For: 4.3.0.Beta1
Attachments: scr.png
Works for all class="" attributes.
For example:
{code:xml}
<?xml version="1.0" encoding="UTF-8"?>
<job id="myJob"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
version="1.0">
<step id="step1">
<chunk>
<retryable-exception-classes>
<exclude class="excepT"/>
</retryable-exception-classes>
<no-rollback-exception-classes>
<exclude class="runtimee"/>
</no-rollback-exception-classes>
<skippable-exception-classes>
<include class="java.lang.Excep"/>
</skippable-exception-classes>
</chunk>
</step>
</job>
{code}
Limitations:
- Content assist doesn't work for empty strings. You have to type at least the first
character in the class="<any_character>" before invoke the content
assist.
- Content assist may not show all available classes if java indexing is not completed
yet.
!scr.png!