-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProjectInformation.java
More file actions
106 lines (88 loc) · 2.41 KB
/
ProjectInformation.java
File metadata and controls
106 lines (88 loc) · 2.41 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import java.awt.*;
import java.io.Serializable;
import java.util.Vector;
class ProjectInformation implements Serializable {
Vector<PIBlock> blocks;
String projectName;
Color backgroundColor;
Color textColor;
Color commonArticleColor;
Color nameColor;
Color thematicColor;
Font textFont;
int style;
Vector<String> sign;
Font font2, font3, font4, font5;
int integer1, integer2, integer3, integer4, integer5;
Color color1, color2, color3;
String str1, str2, str3, str4;
ProjectInformation(Vector<PIBlock> blocks,
String projectName,
Color backgroundColor,
Color textColor,
Color commonArticleColor,
Color nameColor,
Color thematicColor,
Font textFont,
int style,
Vector<String> sign) {
this.blocks = blocks;
this.projectName = projectName;
this.backgroundColor = backgroundColor;
this.textColor = textColor;
this.commonArticleColor = commonArticleColor;
this.nameColor = nameColor;
this.thematicColor = thematicColor;
this.textFont = textFont;
this.style = style;
this.sign = sign;
}
void setFont2(Font font2) {
this.font2 = font2;
}
void setFont3(Font font3) {
this.font3 = font3;
}
void setFont4(Font font4) {
this.font4 = font4;
}
void setFont5(Font font5) {
this.font5 = font5;
}
void setInteger1(int integer1) {
this.integer1 = integer1;
}
void setInteger2(int integer2) {
this.integer2 = integer2;
}
void setInteger3(int integer3) {
this.integer3 = integer3;
}
void setInteger4(int integer4) {
this.integer4 = integer4;
}
void setInteger5(int integer5) {
this.integer5 = integer5;
}
void setColor1(Color color1) {
this.color1 = color1;
}
void setColor2(Color color2) {
this.color2 = color2;
}
void setColor3(Color color3) {
this.color3 = color3;
}
void setStr1(String str1) {
this.str1 = str1;
}
void setStr2(String str2) {
this.str2 = str2;
}
void setStr3(String str3) {
this.str3 = str3;
}
void setStr4(String str4) {
this.str4 = str4;
}
}