File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
demo/src/main/java/io/asfjava/ui/demo/screen Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ public class DemoForm implements Serializable {
17
17
@ TextField (title = "Pesonal Website" ,fieldAddonLeft ="http://" , description = "This is TextField with fieldAddonLeft" )
18
18
private String webSite ;
19
19
20
+ @ TextField (title = "Your Github Mail" ,fieldAddonRight ="@github.com" , description = "This is TextField with fieldAddonRight" )
21
+ private String gitHub ;
22
+
20
23
// @Tab(title = "Contact", index = 2)
21
24
@ Password (title = "Password" , placeHolder = "Please set you password" , description = "This is password" )
22
25
private String password ;
@@ -78,6 +81,14 @@ public String getEmail() {
78
81
return email ;
79
82
}
80
83
84
+ public void setGitHub (String github ) {
85
+ this .gitHub = github ;
86
+ }
87
+
88
+ public String getGitHub () {
89
+ return gitHub ;
90
+ }
91
+
81
92
public void setWebSite (String website ) {
82
93
this .webSite = website ;
83
94
}
You can’t perform that action at this time.
0 commit comments