Example #1
0
 public Helper1 testPassByRef5() {
   Helper1 h1 = new Helper1();
   h1.a = 1;
   h1.b = "testPassByRef5";
   return h1;
 }
Example #2
0
 public void testPassByRef2(Helper1 helper1) {
   helper1.a++;
   helper1.b = helper1.b + "BmpEJB::testPassByRef2";
 }