Java Programming/Keywords/implements
From Wikibooks, the open-content textbooks collection
implements is a Java keyword.
Used in class definition to declare the Interfaces that are to be implemented by the class.
Syntact:
public class MyClass implements MyInterface1, MyInterface2
{
...
}
See also: