]
Marco Rizzi updated ROASTER-127:
--------------------------------
Steps to Reproduce: Add the test
[
Interface without package in the qualified name
-----------------------------------------------
Key: ROASTER-127
URL:
https://issues.jboss.org/browse/ROASTER-127
Project: Roaster
Issue Type: Bug
Affects Versions: 2.20.0.Final
Reporter: Marco Rizzi
Assignee: Marco Rizzi
Priority: Major
I have the interface
{code:java}
package com.foo.forge;
public interface MyInterface {}
{code}
and the class
{code:java}
package com.foo.forge;
public class MockClass implements MyInterface {}
{code}
so they're in the same package .
The
[
org.jboss.forge.roaster.model.InterfaceCapable#getInterfaces|https://gith...]
method returns only the value {{MyInterface}} instead of {{com.foo.forge.MyInterface}}.
I created a fix for this together with a test in the linked PR
https://github.com/forge/roaster/pull/78
Thanks,
Marco