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/HTMLAppletElement.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<HTMLAppletElement*>(jlong_to_ptr(peer)))
  45 
  46 
  47 // Attributes
  48 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getAlignImpl(JNIEnv* env, jclass, jlong peer)
  49 {
  50     WebCore::JSMainThreadNullState state;
  51     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::alignAttr));
  52 }
  53 
  54 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setAlignImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  55 {
  56     WebCore::JSMainThreadNullState state;
  57     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::alignAttr, String(env, value));
  58 }
  59 
  60 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getAltImpl(JNIEnv* env, jclass, jlong peer)
  61 {
  62     WebCore::JSMainThreadNullState state;
  63     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::altAttr));
  64 }
  65 
  66 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setAltImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  67 {
  68     WebCore::JSMainThreadNullState state;
  69     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::altAttr, String(env, value));
  70 }
  71 
  72 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getArchiveImpl(JNIEnv* env, jclass, jlong peer)
  73 {
  74     WebCore::JSMainThreadNullState state;
  75     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::archiveAttr));
  76 }
  77 
  78 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setArchiveImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  79 {
  80     WebCore::JSMainThreadNullState state;
  81     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::archiveAttr, String(env, value));
  82 }
  83 
  84 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getCodeImpl(JNIEnv* env, jclass, jlong peer)
  85 {
  86     WebCore::JSMainThreadNullState state;
  87     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::codeAttr));
  88 }
  89 
  90 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setCodeImpl(JNIEnv* env, jclass, jlong peer, jstring value)
  91 {
  92     WebCore::JSMainThreadNullState state;
  93     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::codeAttr, String(env, value));
  94 }
  95 
  96 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getCodeBaseImpl(JNIEnv* env, jclass, jlong peer)
  97 {
  98     WebCore::JSMainThreadNullState state;
  99     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::codebaseAttr));
 100 }
 101 
 102 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setCodeBaseImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 103 {
 104     WebCore::JSMainThreadNullState state;
 105     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::codebaseAttr, String(env, value));
 106 }
 107 
 108 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getHeightImpl(JNIEnv* env, jclass, jlong peer)
 109 {
 110     WebCore::JSMainThreadNullState state;
 111     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::heightAttr));
 112 }
 113 
 114 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setHeightImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 115 {
 116     WebCore::JSMainThreadNullState state;
 117     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::heightAttr, String(env, value));
 118 }
 119 
 120 JNIEXPORT jint JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getHspaceImpl(JNIEnv*, jclass, jlong peer)
 121 {
 122     WebCore::JSMainThreadNullState state;
 123     return IMPL->getIntegralAttribute(WebCore::HTMLNames::hspaceAttr);
 124 }
 125 
 126 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setHspaceImpl(JNIEnv*, jclass, jlong peer, jint value)
 127 {
 128     WebCore::JSMainThreadNullState state;
 129     IMPL->setIntegralAttribute(WebCore::HTMLNames::hspaceAttr, value);
 130 }
 131 
 132 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getNameImpl(JNIEnv* env, jclass, jlong peer)
 133 {
 134     WebCore::JSMainThreadNullState state;
 135     return JavaReturn<String>(env, IMPL->getNameAttribute());
 136 }
 137 
 138 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setNameImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 139 {
 140     WebCore::JSMainThreadNullState state;
 141     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::nameAttr, String(env, value));
 142 }
 143 
 144 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getObjectImpl(JNIEnv* env, jclass, jlong peer)
 145 {
 146     WebCore::JSMainThreadNullState state;
 147     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::objectAttr));
 148 }
 149 
 150 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setObjectImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 151 {
 152     WebCore::JSMainThreadNullState state;
 153     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::objectAttr, String(env, value));
 154 }
 155 
 156 JNIEXPORT jint JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getVspaceImpl(JNIEnv*, jclass, jlong peer)
 157 {
 158     WebCore::JSMainThreadNullState state;
 159     return IMPL->getIntegralAttribute(WebCore::HTMLNames::vspaceAttr);
 160 }
 161 
 162 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setVspaceImpl(JNIEnv*, jclass, jlong peer, jint value)
 163 {
 164     WebCore::JSMainThreadNullState state;
 165     IMPL->setIntegralAttribute(WebCore::HTMLNames::vspaceAttr, value);
 166 }
 167 
 168 JNIEXPORT jstring JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_getWidthImpl(JNIEnv* env, jclass, jlong peer)
 169 {
 170     WebCore::JSMainThreadNullState state;
 171     return JavaReturn<String>(env, IMPL->getAttribute(WebCore::HTMLNames::widthAttr));
 172 }
 173 
 174 JNIEXPORT void JNICALL Java_com_sun_webkit_dom_HTMLAppletElementImpl_setWidthImpl(JNIEnv* env, jclass, jlong peer, jstring value)
 175 {
 176     WebCore::JSMainThreadNullState state;
 177     IMPL->setAttributeWithoutSynchronization(WebCore::HTMLNames::widthAttr, String(env, value));
 178 }
 179 
 180 }