1 2 3 4 5 6 7 8 9 10 11 12 13
public class TestClass { public void doSomething(String stuff) { System.out.println("TestClass.doSomething(\""+stuff+"\")"); } public static void main(String[] args) { TestClass test = new TestClass(); test.doSomething("withThis"); } }