rt/emul/compact/src/main/java/java/lang/System.java
author Anton Epple <toni.epple@eppleton.de>
Wed, 18 Sep 2013 11:20:57 +0200
branchcanvas
changeset 1289 5a0768a5e095
parent 1269 8dce385fd361
parent 1279 6e49193b04f1
child 1290 3fc3e7c4fb5c
permissions -rw-r--r--
merging latest changes from default
jaroslav@1260
     1
/**
jaroslav@1260
     2
 * Back 2 Browser Bytecode Translator
jaroslav@1260
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@1260
     4
 *
jaroslav@1260
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@1260
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@1260
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@1260
     8
 *
jaroslav@1260
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@1260
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@1260
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@1260
    12
 * GNU General Public License for more details.
jaroslav@1260
    13
 *
jaroslav@1260
    14
 * You should have received a copy of the GNU General Public License
jaroslav@1260
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@1260
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@1260
    17
 */
jaroslav@1260
    18
package java.lang;
jaroslav@1260
    19
jaroslav@1279
    20
import org.apidesign.bck2brwsr.core.JavaScriptBody;
jaroslav@1279
    21
jaroslav@1260
    22
/** Poor man's re-implementation of most important System methods.
jaroslav@1260
    23
 *
jaroslav@1260
    24
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@1260
    25
 */
jaroslav@1260
    26
public class System {
jaroslav@1260
    27
    private System() {
jaroslav@1260
    28
    }
jaroslav@1260
    29
    
jaroslav@1260
    30
    public static void arraycopy(Object value, int srcBegin, Object dst, int dstBegin, int count) {
jaroslav@1260
    31
        org.apidesign.bck2brwsr.emul.lang.System.arraycopy(value, srcBegin, dst, dstBegin, count);
jaroslav@1260
    32
    }
jaroslav@1260
    33
    
jaroslav@1260
    34
    public static long currentTimeMillis() {
jaroslav@1260
    35
        return org.apidesign.bck2brwsr.emul.lang.System.currentTimeMillis();
jaroslav@1260
    36
    }
jaroslav@1260
    37
    
toni@1289
    38
    public static long nanoTime() {
toni@1289
    39
        return org.apidesign.bck2brwsr.emul.lang.System.nanoTime();
toni@1289
    40
    }
toni@1289
    41
    
jaroslav@1260
    42
    public static int identityHashCode(Object obj) {
jaroslav@1260
    43
        return obj.defaultHashCode();
jaroslav@1260
    44
    }
jaroslav@1260
    45
jaroslav@1260
    46
    public static String getProperty(String name) {
jaroslav@1260
    47
        return null;
jaroslav@1260
    48
    }
jaroslav@1260
    49
    
jaroslav@1260
    50
    public static String getProperty(String key, String def) {
jaroslav@1260
    51
        return def;
jaroslav@1260
    52
    }
jaroslav@1260
    53
    
jaroslav@1260
    54
    /**
jaroslav@1260
    55
     * Returns the system-dependent line separator string.  It always
jaroslav@1260
    56
     * returns the same value - the initial value of the {@linkplain
jaroslav@1260
    57
     * #getProperty(String) system property} {@code line.separator}.
jaroslav@1260
    58
     *
jaroslav@1260
    59
     * <p>On UNIX systems, it returns {@code "\n"}; on Microsoft
jaroslav@1260
    60
     * Windows systems it returns {@code "\r\n"}.
jaroslav@1260
    61
     */
jaroslav@1260
    62
    public static String lineSeparator() {
jaroslav@1260
    63
        return "\n";
jaroslav@1260
    64
    }
jaroslav@1279
    65
jaroslav@1279
    66
    @JavaScriptBody(args = { "exitCode" }, body = "window.close();")
jaroslav@1279
    67
    public static void exit(int exitCode) {
jaroslav@1279
    68
    }
jaroslav@1260
    69
}