Advertisement
wingman007

Java2014OOP_Introducable

Dec 6th, 2014
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6.  
  7. package myworld;
  8.  
  9. /**
  10.  *
  11.  * @author fmi
  12.  */
  13. public interface Introducable {
  14.     // public int age = 40;
  15.     // public static final double PI = 3.14;
  16.     void introduceYorSelf();
  17.     // void mandatadoryMthod(int par1, String par2);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement