In Java, if I have an interface:
public interface MyInterface{ }
Then MyInterface implementation is:
MyInterface
class MyC
You can't instantiate an interface directly. You need to use an instance of an implementing class:
myClass mine = new myClassImpl();