Parse access flags
This commit is contained in:
parent
1e6be5588a
commit
7d7df22df3
5 changed files with 147 additions and 14 deletions
10
Interface.java
Normal file
10
Interface.java
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
public interface Interface {
|
||||
|
||||
String getName();
|
||||
|
||||
default void sayHello() {
|
||||
System.out.println("Hello " + getName());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue