1 /*
   2  * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #undef IMPL
  27 
  28 #include "config.h"
  29 
  30 #include <WebCore/HTMLAreaElement.h>
  31 #include <WebCore/HTMLNames.h>
  32 #include <WebCore/JSMainThreadExecState.h>
  33 
  34 #include <wtf/RefPtr.h>
  35 #include <wtf/GetPtr.h>
  36 
  37 #include "JavaDOMUtils.h"
  38 #include <wtf/java/JavaEnv.h>
  39 
  40 using namespace WebCore;
  41 
  42 extern "C" {
  43 
  44 #define IMPL (static_cast<HTMLAreaElement*>(jlong_to_ptr(peer)))
  45 
  46 
  47 // Attributes
  48 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getAltImpl(JNIEnv* env, jclass, jlong peer)
  49 {
  50     WebCore::JSMainThreadNullState state;
  51     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::altAttr));
  52 }
  53 
  54 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setAltImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  55 {
  56     WebCore::JSMainThreadNullState state;
  57     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::altAttr, String(env, value));
  58 }
  59 
  60 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getCoordsImpl(JNIEnv* env, jclass, jlong peer)
  61 {
  62     WebCore::JSMainThreadNullState state;
  63     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::coordsAttr));
  64 }
  65 
  66 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setCoordsImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  67 {
  68     WebCore::JSMainThreadNullState state;
  69     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::coordsAttr, String(env, value));
  70 }
  71 
  72 JNIEXPORT jboolean JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getNoHrefImpl(JNIEnv*, jclass, jlong peer)
  73 {
  74     WebCore::JSMainThreadNullState state;
  75     return IMPL->hasAttribute(WebCore::HTMLNames::nohrefAttr);
  76 }
  77 
  78 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setNoHrefImpl(JNIEnv*, jclass, jlong peer, jboolean value)
  79 {
  80     WebCore::JSMainThreadNullState state;
  81     IMPL->setBooleanAttribute(WebCore::HTMLNames::nohrefAttr, value);
  82 }
  83 
  84 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getPingImpl(JNIEnv* env, jclass, jlong peer)
  85 {
  86     WebCore::JSMainThreadNullState state;
  87     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::pingAttr));
  88 }
  89 
  90 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setPingImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  91 {
  92     WebCore::JSMainThreadNullState state;
  93     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::pingAttr, String(env, value));
  94 }
  95 
  96 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getRelImpl(JNIEnv* env, jclass, jlong peer)
  97 {
  98     WebCore::JSMainThreadNullState state;
  99     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::relAttr));
 100 }
 101 
 102 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setRelImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 103 {
 104     WebCore::JSMainThreadNullState state;
 105     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::relAttr, String(env, value));
 106 }
 107 
 108 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getShapeImpl(JNIEnv* env, jclass, jlong peer)
 109 {
 110     WebCore::JSMainThreadNullState state;
 111     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::shapeAttr));
 112 }
 113 
 114 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setShapeImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 115 {
 116     WebCore::JSMainThreadNullState state;
 117     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::shapeAttr, String(env, value));
 118 }
 119 
 120 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getTargetImpl(JNIEnv* env, jclass, jlong peer)
 121 {
 122     WebCore::JSMainThreadNullState state;
 123     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::targetAttr));
 124 }
 125 
 126 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setTargetImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 127 {
 128     WebCore::JSMainThreadNullState state;
 129     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::targetAttr, String(env, value));
 130 }
 131 
 132 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getAccessKeyImpl(JNIEnv* env, jclass, jlong peer)
 133 {
 134     WebCore::JSMainThreadNullState state;
 135     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::accesskeyAttr));
 136 }
 137 
 138 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setAccessKeyImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 139 {
 140     WebCore::JSMainThreadNullState state;
 141     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::accesskeyAttr, String(env, value));
 142 }
 143 
 144 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getHrefImpl(JNIEnv* env, jclass, jlong peer)
 145 {
 146     WebCore::JSMainThreadNullState state;
 147     return JavaReturn<String>(env, IMPL->getURLAttribute(WebCore::HTMLNames::hrefAttr));
 148 }
 149 
 150 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setHrefImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 151 {
 152     WebCore::JSMainThreadNullState state;
 153     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::hrefAttr, String(env, value));
 154 }
 155 
 156 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getOriginImpl(JNIEnv* env, jclass, jlong peer)
 157 {
 158     WebCore::JSMainThreadNullState state;
 159     return JavaReturn<String>(env, IMPL->origin());
 160 }
 161 
 162 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getProtocolImpl(JNIEnv* env, jclass, jlong peer)
 163 {
 164     WebCore::JSMainThreadNullState state;
 165     return JavaReturn<String>(env, IMPL->protocol());
 166 }
 167 
 168 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setProtocolImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 169 {
 170     WebCore::JSMainThreadNullState state;
 171     IMPL->setProtocol(String(env, value));
 172 }
 173 
 174 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getUsernameImpl(JNIEnv* env, jclass, jlong peer)
 175 {
 176     WebCore::JSMainThreadNullState state;
 177     return JavaReturn<String>(env, IMPL->username());
 178 }
 179 
 180 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setUsernameImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 181 {
 182     WebCore::JSMainThreadNullState state;
 183     IMPL->setUsername(String(env, value));
 184 }
 185 
 186 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getPasswordImpl(JNIEnv* env, jclass, jlong peer)
 187 {
 188     WebCore::JSMainThreadNullState state;
 189     return JavaReturn<String>(env, IMPL->password());
 190 }
 191 
 192 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setPasswordImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 193 {
 194     WebCore::JSMainThreadNullState state;
 195     IMPL->setPassword(String(env, value));
 196 }
 197 
 198 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getHostImpl(JNIEnv* env, jclass, jlong peer)
 199 {
 200     WebCore::JSMainThreadNullState state;
 201     return JavaReturn<String>(env, IMPL->host());
 202 }
 203 
 204 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setHostImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 205 {
 206     WebCore::JSMainThreadNullState state;
 207     IMPL->setHost(String(env, value));
 208 }
 209 
 210 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getHostnameImpl(JNIEnv* env, jclass, jlong peer)
 211 {
 212     WebCore::JSMainThreadNullState state;
 213     return JavaReturn<String>(env, IMPL->hostname());
 214 }
 215 
 216 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setHostnameImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 217 {
 218     WebCore::JSMainThreadNullState state;
 219     IMPL->setHostname(String(env, value));
 220 }
 221 
 222 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getPortImpl(JNIEnv* env, jclass, jlong peer)
 223 {
 224     WebCore::JSMainThreadNullState state;
 225     return JavaReturn<String>(env, IMPL->port());
 226 }
 227 
 228 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setPortImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 229 {
 230     WebCore::JSMainThreadNullState state;
 231     IMPL->setPort(String(env, value));
 232 }
 233 
 234 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getPathnameImpl(JNIEnv* env, jclass, jlong peer)
 235 {
 236     WebCore::JSMainThreadNullState state;
 237     return JavaReturn<String>(env, IMPL->pathname());
 238 }
 239 
 240 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setPathnameImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 241 {
 242     WebCore::JSMainThreadNullState state;
 243     IMPL->setPathname(String(env, value));
 244 }
 245 
 246 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getSearchImpl(JNIEnv* env, jclass, jlong peer)
 247 {
 248     WebCore::JSMainThreadNullState state;
 249     return JavaReturn<String>(env, IMPL->search());
 250 }
 251 
 252 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setSearchImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 253 {
 254     WebCore::JSMainThreadNullState state;
 255     IMPL->setSearch(String(env, value));
 256 }
 257 
 258 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_getHashImpl(JNIEnv* env, jclass, jlong peer)
 259 {
 260     WebCore::JSMainThreadNullState state;
 261     return JavaReturn<String>(env, IMPL->hash());
 262 }
 263 
 264 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAreaElementImpl_setHashImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 265 {
 266     WebCore::JSMainThreadNullState state;
 267     IMPL->setHash(String(env, value));
 268 }
 269 
 270 }