Created
March 8, 2011 02:40
-
-
Save objo/859757 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.me.Baz | |
import org.me.Foo | |
class Bar | |
implements MyInterface | |
def this_method; end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.me; | |
public class Baz { | |
public void call(){ | |
System.out.println("I'm here"); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.me; | |
public class Foo { | |
public interface MyInterface { | |
void thisMethod(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.me.Baz | |
import org.me.Foo | |
#If I comment out the call to the interface it works :-/ | |
class Bar | |
#implements MyInterface | |
def this_method; end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment