fabricio
12/05/2018, 4:58 PMinterface Resource {
val resourceId: String
}
and a class like this:
data class Document(
override val resourceId: String
) : Resource
Now I need to convert that interface to java code. I made this:
public interface Resource {
String getResourceId();
}
but now I get an error that override
overrides nothing. How to solve this?