forked from tushartushar/DesigniteJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSourceItemInfo.java
More file actions
48 lines (37 loc) · 907 Bytes
/
SourceItemInfo.java
File metadata and controls
48 lines (37 loc) · 907 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
40
41
42
43
44
45
46
47
48
package Designite.SourceModel;
public class SourceItemInfo {
private String projectName;
private String packageName;
private String typeName;
private String methodName;
public SourceItemInfo(String projectName
, String packageName) {
this.projectName = projectName;
this.packageName = packageName;
}
public SourceItemInfo(String projectName
, String packageName
, String typeName) {
this(projectName, packageName);
this.typeName = typeName;
}
public SourceItemInfo(String projectName
, String packageName
, String typeName
, String methodName) {
this(projectName, packageName, typeName);
this.methodName = methodName;
}
public String getProjectName() {
return projectName;
}
public String getPackageName() {
return packageName;
}
public String getTypeName() {
return typeName;
}
public String getMethodName() {
return methodName;
}
}