Java   View all facts   Glossary   Help
syntactic unit > clause > implements clause
Next clausethrows clause    Upclause

implements clause
subjectfact 
implements clausehas example
public class AnimatedSign extends javax.swing.JApplet
implements Runnable {
//...
}
added by: JK, source: Teach Yourself Java 2 in 21 Days, 2001-10-19 11:36:53.0
has purpose to indicate that a class implements an interfaceadded by: JK, 2001-10-19 11:36:53.0
has syntax
className implements Interface1 (,Interface2, Interface3 ...)
added by: JK, source: Sun Java Tutorial, 2001-10-19 11:36:53.0
indicates that a class contains methods for each of the operations specified by the interface    source: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:36:53.0
is a subtopic of Interfaces2001-10-19 11:36:53.0
is a kind of clausesource: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:36:53.0
syntactic unithas syntax rule
bold = mandatory
italic = non-terminal
normal font = optional
2001-10-19 11:38:04.0