Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package javaapplication28;
- /**
- *
- * @author fmi
- */
- public class Hdd extends StorageDeviceDeafult {
- @Override
- public String read(){
- return "I am HDD. Read.";
- }
- @Override
- public String write(String data){
- return "I am the HDD. Write.";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement