移动了getter setter
This commit is contained in:
parent
149f8f79f0
commit
3aa1f9444e
@ -30,14 +30,6 @@ public class ProjectBean implements Serializable {
|
|||||||
|
|
||||||
public List<String> selectedKeywords; // List of selected keywords for the current project
|
public List<String> selectedKeywords; // List of selected keywords for the current project
|
||||||
|
|
||||||
public List<String> getSelectedKeywords() {
|
|
||||||
return selectedKeywords;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSelectedKeywords(List<String> selectedKeywords) {
|
|
||||||
this.selectedKeywords = selectedKeywords;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static String getJDBCurl() {
|
private static String getJDBCurl() {
|
||||||
return "jdbc:derby:testDB;create=true";
|
return "jdbc:derby:testDB;create=true";
|
||||||
}
|
}
|
||||||
@ -217,4 +209,12 @@ public class ProjectBean implements Serializable {
|
|||||||
public void setUserInfo(UserInfo userInfo) {
|
public void setUserInfo(UserInfo userInfo) {
|
||||||
this.userInfo = userInfo;
|
this.userInfo = userInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<String> getSelectedKeywords() {
|
||||||
|
return selectedKeywords;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSelectedKeywords(List<String> selectedKeywords) {
|
||||||
|
this.selectedKeywords = selectedKeywords;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user