File: patch_workspacePatchAddition.txt

package info (click to toggle)
eclipse-platform-team 4.18-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 25,692 kB
  • sloc: java: 198,182; xml: 91,186; cpp: 318; ansic: 156; makefile: 31
file content (48 lines) | stat: -rw-r--r-- 1,235 bytes parent folder | download | duplicates (4)
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
### Eclipse Workspace Patch 1.0
#P TestProject2
Index: testPkg2/TestProject2Class2.java
===================================================================
RCS file: testPkg2/TestProject2Class2.java
diff -N testPkg2/TestProject2Class2.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ testPkg2/TestProject2Class2.java	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,12 @@
+package testPkg2;
+
+public class TestProject2Class2 {
+
+	/**
+	 * @param args
+	 */
+	public static void main(String[] args) {
+		// TODO Auto-generated method stub
+	}
+
+}
#P TestProject
Index: testPkg/TestProjectClass1.java
===================================================================
RCS file: testPkg/TestProjectClass1.java
diff -N testPkg/TestProjectClass1.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ testPkg/TestProjectClass1.java	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,19 @@
+package testPkg;
+
+public class TestProjectClass1 {
+
+	public TestProjectClass1(){};
+	
+	/**
+	 * Does something - how much is dictated by howMuchSomething, the something
+	 * is called nameOfSomething
+	 * 
+	 * @param howMuchSomething
+	 * @param nameOfSomething
+	 */
+	public void doSomething(int howMuchSomething, String nameOfSomething){
+		//does something
+	}
+
+
+}