javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/api/Element.java
author Anton Epple <toni.epple@eppleton.de>
Tue, 22 Jan 2013 17:28:01 +0100
branchcanvas
changeset 521 5e9d7f92d5d2
parent 443 9359b006782b
child 529 8140ba8c005b
permissions -rw-r--r--
API for accesing HTML canvas
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.htmlpage.api;
    19 
    20 import org.apidesign.bck2brwsr.core.JavaScriptBody;
    21 
    22 /** Represents a generic HTML element.
    23  *
    24  * @author Jaroslav Tulach <jtulach@netbeans.org>
    25  */
    26 public abstract class Element {
    27     private final String id;
    28     
    29     public Element(String id) {
    30         this.id = id;
    31     }
    32     
    33     abstract void dontSubclass();
    34     
    35     @JavaScriptBody(
    36         args={"el", "property", "value"},
    37         body="var e = window.document.getElementById(el.fld_id);\n"
    38            + "e[property] = value;\n"
    39     )
    40     static native void setAttribute(Element el, String property, Object value);
    41 
    42     @JavaScriptBody(
    43         args={"el", "property"},
    44         body="var e = window.document.getElementById(el.fld_id);\n"
    45            + "return e[property];\n"
    46     )
    47     static native Object getAttribute(Element el, String property);
    48     
    49     @JavaScriptBody(
    50         args={"el"},
    51         body="return window.document.getElementById(el.fld_id);"
    52     )
    53     static native Object getElementById(Element el);
    54     
    55     /** Executes given runnable when user performs a "click" on the given
    56      * element.
    57      * @param r the runnable to execute, never null
    58      */
    59     @JavaScriptBody(
    60         args={ "ev", "r" },
    61         body="var e = window.document.getElementById(this.fld_id);\n"
    62            + "e[ev.fld_id] = function() { r.run__V(); };\n"
    63     )
    64     final native void on(OnEvent ev, Runnable r);
    65 
    66     /** Shows alert message dialog in a browser.
    67      * @param msg the message to show
    68      */
    69     @JavaScriptBody(args = "msg", body = "alert(msg);")
    70     public static native void alert(String msg);
    71 
    72     /** Generic way to query any attribute of this element.
    73      * @param property name of the attribute
    74      */
    75     public final Object getAttribute(String property) {
    76         return getAttribute(this, property);
    77     }
    78     
    79     /** Generic way to change an attribute of this element.
    80      * 
    81      * @param property name of the attribute
    82      * @param value value to associate with the attribute
    83      */
    84     public final void setAttribute(String property, Object value) {
    85         setAttribute(this, property, value);
    86     }
    87 }