-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDashboardNameInfo.java
More file actions
32 lines (25 loc) · 924 Bytes
/
DashboardNameInfo.java
File metadata and controls
32 lines (25 loc) · 924 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
package com.server.reveal;
public class DashboardNameInfo {
private String dashboardFileName;
private String dashboardTitle;
public DashboardNameInfo(String dashboardFileName, String dashboardTitle) {
this.dashboardFileName = dashboardFileName;
this.dashboardTitle = dashboardTitle;
}
public String getDashboardFileName() {
return dashboardFileName;
}
public void setDashboardFileName(String dashboardFileName) {
this.dashboardFileName = dashboardFileName;
}
public String getDashboardTitle() {
return dashboardTitle;
}
public void setDashboardTitle(String dashboardTitle) {
this.dashboardTitle = dashboardTitle;
}
@Override
public String toString() {
return "DashboardNameInfo [dashboardFileName=" + dashboardFileName + ", dashboardTitle=" + dashboardTitle + "]";
}
}