We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9e5201 commit 4dc340aCopy full SHA for 4dc340a
src/javaxt/utils/src/Class.java
@@ -9,6 +9,7 @@ public class Class implements Member, Comparable {
9
private Class parent;
10
private ArrayList<Member> members;
11
private boolean isPublic = true;
12
+ private boolean isInterface = false;
13
private String namespace;
14
private ArrayList<String> extensions;
15
private ArrayList<String> interfaces;
@@ -41,6 +42,14 @@ public void setPublic(boolean isPublic){
41
42
this.isPublic = isPublic;
43
}
44
45
+ public boolean isInterface(){
46
+ return isInterface;
47
+ }
48
+
49
+ public void setInterface(boolean isInterface){
50
+ this.isInterface = isInterface;
51
52
53
public void setNamespace(String namespace){
54
this.namespace = namespace;
55
0 commit comments