-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserInfo.java
More file actions
39 lines (32 loc) · 772 Bytes
/
UserInfo.java
File metadata and controls
39 lines (32 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.example.tomap.loginreal;
public class UserInfo {
String name;
String age;
String instrument;
String genre;
String skill;
public UserInfo(){
}
public UserInfo(String name, String age, String instrument, String genre, String skill){
this.name = name;
this.age = age;
this.instrument = instrument;
this.genre = genre;
this.skill = skill;
}
public String getName() {
return name;
}
public String getAge() {
return age;
}
public String getInstrument() {
return instrument;
}
public String getGenre() {
return genre;
}
public String getSkill() {
return skill;
}
}