Lines Matching refs:Person

38     public Person                 publicObject                  = new Person(256);
39 …public Person[] publicObjectArray = { new Person(4), new Person(-422), n…
67 public static Person publicStaticObject = new Person(512);
68 …public static Person[] publicStaticObjectArray = { new Person(40), new Person(-22), n…
96 public final Person publicFinalObject = new Person(1024);
97 …public final Person[] publicFinalObjectArray = { new Person(-900), new Person(1000)…
125 public static final Person publicStaticFinalObject = new Person(2048);
126 …public static final Person[] publicStaticFinalObjectArray = { new Person(-9), new Person(110), n…
315 public Person[] objectArrayMethod(final Person[] arr) { in objectArrayMethod()
316 final Person[] res = new Person[arr.length]; in objectArrayMethod()
318 res[i] = new Person(i + 100); in objectArrayMethod()
323 public Person objectMethod(final Person t) { in objectMethod()
336 public Person[] twoObjectParamMethod(final Person arg1, final Person arg2) { in twoObjectParamMethod()
337 return new Person[] { arg2, arg1 }; in twoObjectParamMethod()
340 … public Person[] threeObjectParamMethod(final Person arg1, final Person arg2, final Person arg3) { in threeObjectParamMethod()
341 return new Person[] { arg3, arg2, arg1 }; in threeObjectParamMethod()
344Person[] eightObjectParamMethod(final Person arg1, final Person arg2, final Person arg3, final Per… in eightObjectParamMethod()
345 return new Person[] { arg8, arg7, arg6, arg5, arg4, arg3, arg2, arg1 }; in eightObjectParamMethod()
348Person[] nineObjectParamMethod(final Person arg1, final Person arg2, final Person arg3, final Pers… in nineObjectParamMethod()
349 return new Person[] { arg9, arg8, arg7, arg6, arg5, arg4, arg3, arg2, arg1 }; in nineObjectParamMethod()
352 public Person[] methodObjectEllipsis(final Person... args) { in methodObjectEllipsis()
354 final Person[] res = new Person[l]; in methodObjectEllipsis()
361 public Person[] methodPrimitiveEllipsis(final int... args) { in methodPrimitiveEllipsis()
363 final Person[] res = new Person[l]; in methodPrimitiveEllipsis()
365 res[i] = new Person(args[i]); in methodPrimitiveEllipsis()
438 public int overloadedMethod(final Person arg) { in overloadedMethod()
458 …public Person firstLevelMethodObject(final Person p) throws ScriptException, NoSuchMethodException… in firstLevelMethodObject()
459 return (Person) ((Invocable)engine).invokeFunction("secondLevelMethodObject", p); in firstLevelMethodObject()
462 public Person thirdLevelMethodObject(final Person p) { in thirdLevelMethodObject()