01: /***************************************************************************************************
02: * Copyright (c) Jonas BonŽr, Alexandre Vasseur. All rights reserved. *
03: * http://aspectwerkz.codehaus.org *
04: * ---------------------------------------------------------------------------------- * The software
05: * in this package is published under the terms of the LGPL license * a copy of which has been
06: * included with this distribution in the license.txt file. *
07: **************************************************************************************************/package test.reflection;
08:
09: public class OtherChild extends Super {
10: public int incr(int value) {
11: return (value >= 0) ? (value + 1) : (value - 1);
12: }
13:
14: public static int incrStatic(int value) {
15: return (value >= 0) ? (value + 1) : (value - 1);
16: }
17: }
|