javaquery/api/src/main/java/org/apidesign/bck2brwsr/htmlpage/Attributes.java
author Jan Horvath <jan.horvath@oracle.com>
Thu, 21 Mar 2013 15:45:42 +0100
changeset 866 9b4751828ceb
child 1074 3ab2f70b300d
permissions -rw-r--r--
Dynamically generate classes representing elements on the HTML @Page
     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;
    19 
    20 import java.util.HashMap;
    21 import java.util.Map;
    22 
    23 /**
    24  * Temporary storing the type of attributes here. This should be implemented in HTML 5 model
    25  *
    26  * @author Jan Horvath <jhorvath@netbeans.org>
    27  */
    28 public class Attributes {
    29     
    30     static final Map<String, String> TYPES = new HashMap<String, String>() {
    31         {
    32             // HTML Global Attributes
    33             // id attribute is already defined in Element, don't add it again
    34             put("accesskey", "String");
    35             put("class", "String");
    36             put("contenteditable", "Boolean");
    37             put("contextmenu", "String");
    38             put("dir", "String");
    39             put("draggable", "Boolean");
    40             put("dropzone", "String");
    41             put("hidden", "Boolean");
    42             put("lang", "String");
    43             put("spellcheck", "Boolean");
    44             put("style", "String");
    45             put("tabindex", "String");
    46             put("title", "String");
    47             put("translate", "Boolean");
    48             put("width", "Integer");
    49             put("height", "Integer");
    50             
    51             put("value", "String");
    52             put("disabled", "Boolean");
    53             
    54 //          put("text", "String"); 'text' field is used to set innerHTML of element
    55         }
    56     };
    57 }