Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Recall that an interface defines a new datatype without implementing any of the methods of that datatype. Thus, to create an interface, we use the following syntax:
interface SomeName {
function method1 (param1:datatype,...paramn:datatype):returnType;
function method2 (param1:datatype,...paramn:datatype):returnType;
...
function methodn (param1:datatype,...paramn:datatype):returnType;
}