blob: f101fe5f1ad8869b94954d5c736738654d1d5132 [file] [log] [blame]
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
}
}