<<< Interface as method parameter | Index | Product interface examples >>> |
The syntax for declaring an interface that inherits other interfaces
public interface InterfaceName
extends InterfaceName1[, InterfaceName2]...
{
// the constants and methods of the interface
}
<<< Interface as method parameter | Index | Product interface examples >>> |