com.gargoylesoftware.htmlunit.javascript.host.html.HTMLPhraseElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htmlunit Show documentation
Show all versions of htmlunit Show documentation
A headless browser intended for use in testing web-based applications.
/*
* Copyright (c) 2002-2021 Gargoyle Software Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.gargoylesoftware.htmlunit.javascript.host.html;
import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.HTMLABBREVIATED;
import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.JS_PHRASE_COMMON_CLASS_NAME;
import static com.gargoylesoftware.htmlunit.BrowserVersionFeatures.JS_XML_SUPPORT_VIA_ACTIVEXOBJECT;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE;
import com.gargoylesoftware.htmlunit.html.DomNode;
import com.gargoylesoftware.htmlunit.html.HtmlAbbreviated;
import com.gargoylesoftware.htmlunit.html.HtmlAcronym;
import com.gargoylesoftware.htmlunit.html.HtmlBidirectionalOverride;
import com.gargoylesoftware.htmlunit.html.HtmlBig;
import com.gargoylesoftware.htmlunit.html.HtmlBlink;
import com.gargoylesoftware.htmlunit.html.HtmlBold;
import com.gargoylesoftware.htmlunit.html.HtmlCitation;
import com.gargoylesoftware.htmlunit.html.HtmlCode;
import com.gargoylesoftware.htmlunit.html.HtmlDefinition;
import com.gargoylesoftware.htmlunit.html.HtmlEmphasis;
import com.gargoylesoftware.htmlunit.html.HtmlItalic;
import com.gargoylesoftware.htmlunit.html.HtmlKeyboard;
import com.gargoylesoftware.htmlunit.html.HtmlNoBreak;
import com.gargoylesoftware.htmlunit.html.HtmlRp;
import com.gargoylesoftware.htmlunit.html.HtmlRt;
import com.gargoylesoftware.htmlunit.html.HtmlRuby;
import com.gargoylesoftware.htmlunit.html.HtmlS;
import com.gargoylesoftware.htmlunit.html.HtmlSample;
import com.gargoylesoftware.htmlunit.html.HtmlSmall;
import com.gargoylesoftware.htmlunit.html.HtmlStrike;
import com.gargoylesoftware.htmlunit.html.HtmlStrong;
import com.gargoylesoftware.htmlunit.html.HtmlSubscript;
import com.gargoylesoftware.htmlunit.html.HtmlSuperscript;
import com.gargoylesoftware.htmlunit.html.HtmlTeletype;
import com.gargoylesoftware.htmlunit.html.HtmlUnderlined;
import com.gargoylesoftware.htmlunit.html.HtmlVariable;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass;
import com.gargoylesoftware.htmlunit.javascript.host.ActiveXObject;
/**
* The JavaScript object {@code HTMLPhraseElement}.
*
* @author Ahmed Ashour
* @author Daniel Gredler
* @author Ronald Brill
*/
@JsxClass(domClass = HtmlAbbreviated.class, value = IE)
@JsxClass(domClass = HtmlAcronym.class, value = IE)
@JsxClass(domClass = HtmlBidirectionalOverride.class, value = IE)
@JsxClass(domClass = HtmlBig.class, value = IE)
@JsxClass(domClass = HtmlBlink.class, value = IE)
@JsxClass(domClass = HtmlBold.class, value = IE)
@JsxClass(domClass = HtmlCitation.class, value = IE)
@JsxClass(domClass = HtmlCode.class, value = IE)
@JsxClass(domClass = HtmlDefinition.class, value = IE)
@JsxClass(domClass = HtmlEmphasis.class, value = IE)
@JsxClass(domClass = HtmlItalic.class, value = IE)
@JsxClass(domClass = HtmlKeyboard.class, value = IE)
@JsxClass(domClass = HtmlNoBreak.class, value = IE)
@JsxClass(domClass = HtmlRt.class, value = IE)
@JsxClass(domClass = HtmlRp.class, value = IE)
@JsxClass(domClass = HtmlRuby.class, value = IE)
@JsxClass(domClass = HtmlS.class, value = IE)
@JsxClass(domClass = HtmlSample.class, value = IE)
@JsxClass(domClass = HtmlSmall.class, value = IE)
@JsxClass(domClass = HtmlStrike.class, value = IE)
@JsxClass(domClass = HtmlSubscript.class, value = IE)
@JsxClass(domClass = HtmlSuperscript.class, value = IE)
@JsxClass(domClass = HtmlStrong.class, value = IE)
@JsxClass(domClass = HtmlTeletype.class, value = IE)
@JsxClass(domClass = HtmlUnderlined.class, value = IE)
@JsxClass(domClass = HtmlVariable.class, value = IE)
public class HTMLPhraseElement extends HTMLElement {
/**
* Sets the DOM node that corresponds to this JavaScript object.
* @param domNode the DOM node
*/
@Override
public void setDomNode(final DomNode domNode) {
super.setDomNode(domNode);
if (getBrowserVersion().hasFeature(JS_XML_SUPPORT_VIA_ACTIVEXOBJECT)) {
if ((domNode instanceof HtmlAbbreviated && getBrowserVersion().hasFeature(HTMLABBREVIATED))
|| domNode instanceof HtmlAcronym
|| domNode instanceof HtmlBidirectionalOverride
|| domNode instanceof HtmlBig
|| domNode instanceof HtmlBlink
|| domNode instanceof HtmlBold
|| domNode instanceof HtmlCitation
|| domNode instanceof HtmlCode
|| domNode instanceof HtmlDefinition
|| domNode instanceof HtmlEmphasis
|| domNode instanceof HtmlItalic
|| domNode instanceof HtmlKeyboard
|| domNode instanceof HtmlNoBreak
|| domNode instanceof HtmlS
|| domNode instanceof HtmlSample
|| domNode instanceof HtmlSmall
|| domNode instanceof HtmlStrong
|| domNode instanceof HtmlStrike
|| domNode instanceof HtmlSubscript
|| domNode instanceof HtmlSuperscript
|| domNode instanceof HtmlTeletype
|| domNode instanceof HtmlUnderlined
|| domNode instanceof HtmlVariable
) {
ActiveXObject.addProperty(this, "cite", true, true);
ActiveXObject.addProperty(this, "dateTime", true, true);
}
}
}
/**
* Returns the value of the {@code cite} property.
* @return the value of the {@code cite} property
*/
public String getCite() {
final String cite = getDomNodeOrDie().getAttributeDirect("cite");
return cite;
}
/**
* Returns the value of the {@code cite} property.
* @param cite the value
*/
public void setCite(final String cite) {
getDomNodeOrDie().setAttribute("cite", cite);
}
/**
* Returns the value of the {@code dateTime} property.
* @return the value of the {@code dateTime} property
*/
public String getDateTime() {
final String dateTime = getDomNodeOrDie().getAttributeDirect("datetime");
return dateTime;
}
/**
* Returns the value of the {@code dateTime} property.
* @param dateTime the value
*/
public void setDateTime(final String dateTime) {
getDomNodeOrDie().setAttribute("datetime", dateTime);
}
/**
* Returns whether the end tag is forbidden or not.
* @see HTML 4 specs
* @return whether the end tag is forbidden or not
*/
@Override
protected boolean isEndTagForbidden() {
return false;
}
/**
* {@inheritDoc}
*/
@Override
public String getClassName() {
if (getWindow().getWebWindow() != null && getBrowserVersion().hasFeature(JS_PHRASE_COMMON_CLASS_NAME)) {
return "HTMLElement";
}
return super.getClassName();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy