Joeblackdev
Joeblackdev

Reputation: 7327

Slicing Tools for Eclipse

Does anyone know if there are any open source tools for eclipse that can generate static program slices according to the slicing technique outlined by Mark Weiser (http://en.wikipedia.org/wiki/Program_slicing)? I can only seem to find JSlice, which only works for Fedora. Any pointers about how I could tackle this (and libraries out there, or example algorithms for java) would be great.

Upvotes: 7

Views: 1440

Answers (2)

user3601784
user3601784

Reputation: 377

How about WALA and javaslicer.

Upvotes: 1

Vineet Reynolds
Vineet Reynolds

Reputation: 76719

Disclaimer: I haven't tried the tool listed below.


Indus. It appears to make itself useful via the Kaveri plugin in Eclipse.


It would be worth noting that apart from JSlice and Indus, no other known code slicers for Java appear to be available, although there are quite a few papers that discuss building a code slicer for Java. Sadly, the authors do not appear to have made these tools available for further research.

Upvotes: 4

Related Questions