]
Daniel Azarov updated JBIDE-19507:
----------------------------------
Attachment: SearchableBatchletReferences.png
Search and rename participants for Batch Artifacts
--------------------------------------------------
Key: JBIDE-19507
URL:
https://issues.jboss.org/browse/JBIDE-19507
Project: Tools (JBoss Tools)
Issue Type: Sub-task
Components: batch
Reporter: Daniel Azarov
Assignee: Daniel Azarov
Labels: new_and_noteworthy
Fix For: 4.3.0.Alpha2
Attachments: SearchableBatchletReferences.png
*Search Participant*
1. Should be able to find references in job.xml files for Batch Artifact Class IType
Example:
During the search for references for class "SearchableBatchlet" like:
{code}
package batch;
import javax.batch.api.BatchProperty;
import javax.batch.api.Batchlet;
import javax.inject.Inject;
import javax.inject.Named;
@Named
public class SearchableBatchlet implements Batchlet {
@Inject @BatchProperty(name="secondName") String otherName;
@Override
public String process() throws Exception {
return null;
}
@Override
public void stop() throws Exception {
}
}
{code}
In the search result should be added references in jbob.xml files like this:
!SearchableBatchletReferences.png!
2. Should be able to find references in job.xml files for Batch Artifact Property IField
3. Should be able to find references in job.xml files for Exception Class IType
*Rename Participant*
1. Should be able to add changes in JDT Java Class Rename Refactoring for references in
job.xml files.