feenkcom / jdt2famix

Jdt2Famix takes Java sources and produces MSE files that can be imported into Glamorous Toolkit.
https://gtoolkit.com
Eclipse Public License 1.0
37 stars 22 forks source link

FAMIXReferences in method annotations are not in model #14

Open VincentBlondeau opened 8 years ago

VincentBlondeau commented 8 years ago

For example:

public class GlobalControllerExceptionHandler {
    @ResponseBody
    @ResponseStatus(HttpStatus.BAD_REQUEST)
    @ExceptionHandler({ NotSupportedCountryException.class, WrongPeriodException.class })
    public String handleException(final Exception ex) {
        return ex.getMessage();
    }
}

references to HttpStatus, NotSupportedCountryExceptionand WrongPeriodExceptionare not linked to method handleException.