Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 526afae

Browse files
Added isPublic property to the Property class
1 parent 30d05ec commit 526afae

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

‎src/javaxt/utils/src/Property.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ public class Property implements Member {
77
private String type;
88
private String defaultValue;
99
private boolean isStatic = false;
10+
private boolean isPublic = true;
1011

1112
public Property(String name){
1213
this.name = name;
@@ -16,6 +17,14 @@ public String getName(){
1617
return name;
1718
}
1819

20+
public boolean isPublic(){
21+
return isPublic;
22+
}
23+
24+
public void setPublic(boolean isPublic){
25+
this.isPublic = isPublic;
26+
}
27+
1928
public void setDescription(String description){
2029
this.description = description;
2130
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /