//	Example : TestClass (Can be predefined or user-defined) public class TestClass {   // properties   private int id = 111;      // constructor   public TestClass(){     super();   }      // method   public void test(){     // some code here   } }

Read more of this post