+ 4
Hello $@!妉
I am not sure if I understand your question.
public interface YourInterface{
}
public class YourClass implements YourInterface{
}
Your interface provides some methods. And your class implements them (you need to override them).



