您的位置:寻梦网首页编程乐园Java天地Core JavaJava Lecture Notes
Introduction
Content
Apply
Reflect
Extend
previous.gif
 (3087 bytes)
next.gif
 (2959 bytes)

 
 
Apply Index
Apply Page # 10

Exercise 7 ?Java-to-UML B

Draw a UML diagram to show the relationships between classes expressed in the following Java outline:

class Component
{
}
  

interface KeyboardListener
{
    void keyPressed();
    void keyReleased();
}
 

class MyButton extends Component implements KeyboardListener
{
    void keyPressed()
    {
  

// instructions describing what 
// to do when a key is pressed
    }
    void keyReleased()
    { // instructions describing 
//what to do when a key is released 
    }
 }
Discussion of Exercise 7
Back to content

Back to top

basicline.gif (169 bytes)

RITSEC - Global Campus
Copyright © 1999 RITSEC- Middlesex University. All rights reserved.
webmaster@globalcampus.com.eg