javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/Logger.java
author Anton Epple <toni.epple@eppleton.de>
Mon, 27 May 2013 14:13:01 +0200
branchcanvas
changeset 1158 633572e14095
child 1267 0f775bd8d210
permissions -rw-r--r--
fixed bugs in Image Handling
toni@1158
     1
/*
toni@1158
     2
 * To change this template, choose Tools | Templates
toni@1158
     3
 * and open the template in the editor.
toni@1158
     4
 */
toni@1158
     5
package org.apidesign.bck2brwsr.htmlpage;
toni@1158
     6
toni@1158
     7
import org.apidesign.bck2brwsr.core.JavaScriptBody;
toni@1158
     8
toni@1158
     9
/**
toni@1158
    10
 *
toni@1158
    11
 * @author antonepple
toni@1158
    12
 */
toni@1158
    13
public class Logger {
toni@1158
    14
    
toni@1158
    15
    @JavaScriptBody(args = "message",body = "console.log(message)")
toni@1158
    16
    public static native void log(String text);
toni@1158
    17
    
toni@1158
    18
}