1 /*
   2  * Copyright (c) 2013, 2017, 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/HTMLLinkElement.h>
  31 #include <WebCore/HTMLNames.h>
  32 #include <WebCore/StyleSheet.h>
  33 #include <WebCore/JSMainThreadExecState.h>
  34 
  35 #include <wtf/RefPtr.h>
  36 #include <wtf/GetPtr.h>
  37 
  38 #include "JavaDOMUtils.h"
  39 #include <wtf/java/JavaEnv.h>
  40 
  41 using namespace WebCore;
  42 
  43 extern "C" {
  44 
  45 #define IMPL (static_cast<HTMLLinkElement*>(jlong_to_ptr(peer)))
  46 
  47 
  48 // Attributes
  49 JNIEXPORT jboolean JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_getDisabledImpl(JNIEnv*, jclass, jlong peer)
  50 {
  51     WebCore::JSMainThreadNullState state;
  52     return IMPL->hasAttribute(WebCore::HTMLNames::disabledAttr);
  53 }
  54 
  55 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_setDisabledImpl(JNIEnv*, jclass, jlong peer, jboolean value)
  56 {
  57     WebCore::JSMainThreadNullState state;
  58     IMPL->setBooleanAttribute(WebCore::HTMLNames::disabledAttr, value);
  59 }
  60 
  61 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_getCharsetImpl(JNIEnv* env, jclass, jlong peer)
  62 {
  63     WebCore::JSMainThreadNullState state;
  64     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::charsetAttr));
  65 }
  66 
  67 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_setCharsetImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  68 {
  69     WebCore::JSMainThreadNullState state;
  70     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::charsetAttr, String(env, value));
  71 }
  72 
  73 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_getHrefImpl(JNIEnv* env, jclass, jlong peer)
  74 {
  75     WebCore::JSMainThreadNullState state;
  76     return JavaReturn<String>(env, IMPL->getURLAttribute(WebCore::HTMLNames::hrefAttr));
  77 }
  78 
  79 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_setHrefImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  80 {
  81     WebCore::JSMainThreadNullState state;
  82     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::hrefAttr, String(env, value));
  83 }
  84 
  85 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_getHreflangImpl(JNIEnv* env, jclass, jlong peer)
  86 {
  87     WebCore::JSMainThreadNullState state;
  88     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::hreflangAttr));
  89 }
  90 
  91 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_setHreflangImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  92 {
  93     WebCore::JSMainThreadNullState state;
  94     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::hreflangAttr, String(env, value));
  95 }
  96 
  97 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_getMediaImpl(JNIEnv* env, jclass, jlong peer)
  98 {
  99     WebCore::JSMainThreadNullState state;
 100     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::mediaAttr));
 101 }
 102 
 103 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_setMediaImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 104 {
 105     WebCore::JSMainThreadNullState state;
 106     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::mediaAttr, String(env, value));
 107 }
 108 
 109 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_getRelImpl(JNIEnv* env, jclass, jlong peer)
 110 {
 111     WebCore::JSMainThreadNullState state;
 112     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::relAttr));
 113 }
 114 
 115 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_setRelImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 116 {
 117     WebCore::JSMainThreadNullState state;
 118     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::relAttr, String(env, value));
 119 }
 120 
 121 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_getRevImpl(JNIEnv* env, jclass, jlong peer)
 122 {
 123     WebCore::JSMainThreadNullState state;
 124     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::revAttr));
 125 }
 126 
 127 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_setRevImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 128 {
 129     WebCore::JSMainThreadNullState state;
 130     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::revAttr, String(env, value));
 131 }
 132 
 133 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_getTargetImpl(JNIEnv* env, jclass, jlong peer)
 134 {
 135     WebCore::JSMainThreadNullState state;
 136     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::targetAttr));
 137 }
 138 
 139 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_setTargetImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 140 {
 141     WebCore::JSMainThreadNullState state;
 142     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::targetAttr, String(env, value));
 143 }
 144 
 145 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_getTypeImpl(JNIEnv* env, jclass, jlong peer)
 146 {
 147     WebCore::JSMainThreadNullState state;
 148     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::typeAttr));
 149 }
 150 
 151 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_setTypeImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 152 {
 153     WebCore::JSMainThreadNullState state;
 154     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::typeAttr, String(env, value));
 155 }
 156 
 157 JNIEXPORT jlong JNICALL Java_com_sun_webkit_dom_HTMLLinkElementImpl_getSheetImpl(JNIEnv* env, jclass, jlong peer)
 158 {
 159     WebCore::JSMainThreadNullState state;
 160     return JavaReturn<StyleSheet>(env, WTF::getPtr(IMPL->sheet()));
 161 }
 162 
 163 }