Created
August 30, 2015 01:23
-
-
Save jm66/0e4f4a4d6ad696820e3f to your computer and use it in GitHub Desktop.
Telefono.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
abstract class Telefono { | |
public void call(); | |
public void callerID(); | |
public void sms(); | |
} | |
public class Nokia3210 extends Telefono { | |
} | |
public class iPhone6 extends Telefono { | |
public void startiOS(); | |
public void camera(); | |
public void siri(); | |
public void iCloud(); | |
public void mms(); | |
. | |
. | |
. | |
} | |
public class Nexus6 extends Telefono { | |
public void startPureAndroid(); | |
public void camera(); | |
public void googleNow(); | |
public void googleCloud(); | |
public void mms(); | |
. | |
. | |
. | |
} | |
public class S6 extends Telefono { | |
public void startCustomAndroid(); | |
public void camera(); | |
public void samsungCloud(); | |
public void touchWiz(); | |
public void mms(); | |
. | |
. | |
. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment