Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Imports and package declaration omitted
- public interface Bobject {
- default void doOne() {
- System.out.println("Default doOne()");
- }
- default void doTwo(int i, String s) {
- }
- default void doArray(Object[] array) {
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement