File: exp_workspacePatchMod2.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 (35 lines) | stat: -rw-r--r-- 672 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
package testPkg;

public class TestProjectClass1 implements IWorkspacePatcherTest {

	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
	}

	public boolean canApplyToMultipleProjects() {
		// TODO Auto-generated method stub
		return false;
	}

	public void doSomething() {
		// TODO Auto-generated method stub
		
	}

	public boolean isWorkspacePatcherTest() {
		// TODO Auto-generated method stub
		return false;
	}

	

}