Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: f101fe5f1ad8869b94954d5c736738654d1d5132 (plain) (tree)


















                                                                                   
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
	}


}

Back to the top