src/test/java/org/apidesign/java4browser/StaticMethod.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Mon, 27 Aug 2012 05:17:08 +0200
changeset 1 48b1dce93691
parent 0 71aab30ab2b7
child 2 4679bf342a1f
permissions -rw-r--r--
Handle float multiplication
jaroslav@0
     1
/*
jaroslav@0
     2
Java 4 Browser Bytecode Translator
jaroslav@0
     3
Copyright (C) 2012-2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@0
     4
jaroslav@0
     5
This program is free software: you can redistribute it and/or modify
jaroslav@0
     6
it under the terms of the GNU General Public License as published by
jaroslav@0
     7
the Free Software Foundation, version 2 of the License.
jaroslav@0
     8
jaroslav@0
     9
This program is distributed in the hope that it will be useful,
jaroslav@0
    10
but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@0
    11
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@0
    12
GNU General Public License for more details.
jaroslav@0
    13
jaroslav@0
    14
You should have received a copy of the GNU General Public License
jaroslav@0
    15
along with this program. Look for COPYING file in the top folder.
jaroslav@0
    16
If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@0
    17
*/
jaroslav@0
    18
package org.apidesign.java4browser;
jaroslav@0
    19
jaroslav@0
    20
/**
jaroslav@0
    21
 *
jaroslav@0
    22
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@0
    23
 */
jaroslav@0
    24
public class StaticMethod {
jaroslav@0
    25
    public static int sum(int x, int y) {
jaroslav@0
    26
        return x + y;
jaroslav@0
    27
    }
jaroslav@1
    28
    public static float power(float x) {
jaroslav@1
    29
        return x * x;
jaroslav@1
    30
    }
jaroslav@0
    31
}