Advertisement
Guest User

Untitled

a guest
Dec 6th, 2017
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Imports and package declaration omitted
  2.  
  3. public interface Bobject {
  4.    
  5.     default void doOne() {
  6.         System.out.println("Default doOne()");
  7.     }
  8.     default void doTwo(int i, String s) {
  9.        
  10.     }
  11.    
  12.     default void doArray(Object[] array) {
  13.        
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement