View difference between Paste ID: agdS41sc and 7X9PantK
SHOW: | | - or go back to the newest paste.
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
}