com.gargoylesoftware.htmlunit.activex.javascript.msxml.XMLDOMText 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
* http://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.activex.javascript.msxml;
import static com.gargoylesoftware.htmlunit.javascript.configuration.SupportedBrowser.IE;
import com.gargoylesoftware.htmlunit.html.DomText;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxClass;
import com.gargoylesoftware.htmlunit.javascript.configuration.JsxFunction;
import net.sourceforge.htmlunit.corejs.javascript.Context;
/**
* A JavaScript object for MSXML's (ActiveX) XMLDOMText.
* Represents the text content of an element or attribute.
* @see MSDN documentation
*
* @author David K. Taylor
* @author Chris Erskine
* @author Ahmed Ashour
* @author Chuck Dumont
* @author Ronald Brill
* @author Frank Danek
*/
@JsxClass(domClass = DomText.class, value = IE)
public class XMLDOMText extends XMLDOMCharacterData {
/**
* Returns the text contained in the node.
* @return the text contained in the node
*/
@Override
public Object getText() {
final DomText domText = getDomNodeOrDie();
return domText.getWholeText();
}
/**
* Splits this text node into two text nodes at the specified offset and inserts the new text node into the tree
* as a sibling that immediately follows this node.
* @param offset the number of characters at which to split this text node into two nodes, starting from zero
* @return the new text node
*/
@JsxFunction
public Object splitText(final int offset) {
if (offset < 0) {
throw Context.reportRuntimeError("The offset must be 0 or a positive number that is not greater than the "
+ "number of characters in the data.");
}
final DomText domText = getDomNodeOrDie();
if (offset > domText.getLength()) {
throw Context.reportRuntimeError("The offset must be 0 or a positive number that is not greater than the "
+ "number of characters in the data.");
}
return getScriptableFor(domText.splitText(offset));
}
/**
* {@inheritDoc}
*/
@Override
public DomText getDomNodeOrDie() {
return (DomText) super.getDomNodeOrDie();
}
}