移动了getter setter

This commit is contained in:
高子兴 2024-07-14 14:00:14 +08:00
parent 149f8f79f0
commit 3aa1f9444e

View File

@ -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;
}
} }