/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you 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 .
*/
/** Retrieves an attribute value by name.
*/ virtual OUString SAL_CALL getAttribute(const OUString& name) override;
/** Retrieves an attribute node by name.
*/ virtual css::uno::Reference< css::xml::dom::XAttr > SAL_CALL getAttributeNode(const OUString& name) override;
/** Retrieves an Attr node by local name and namespace URI.
*/ virtual css::uno::Reference< css::xml::dom::XAttr > SAL_CALL getAttributeNodeNS(const OUString& namespaceURI, const OUString& localName) override;
/** Retrieves an attribute value by local name and namespace URI.
*/ virtual OUString SAL_CALL getAttributeNS(const OUString& namespaceURI, const OUString& localName) override;
/** Returns a NodeList of all descendant Elements with a given tag name, in the order in which they are encountered in a preorder traversal of this Element tree.
*/ virtual css::uno::Reference< css::xml::dom::XNodeList > SAL_CALL getElementsByTagName(const OUString& name) override;
/** Returns a NodeList of all the descendant Elements with a given local name and namespace URI in the order in which they are encountered in a preorder traversal of this Element tree.
*/ virtual css::uno::Reference< css::xml::dom::XNodeList > SAL_CALL getElementsByTagNameNS(const OUString& namespaceURI, const OUString& localName) override;
/** The name of the element.
*/ virtual OUString SAL_CALL getTagName() override;
/** Returns true when an attribute with a given name is specified on this element or has a default value, false otherwise.
*/ virtual sal_Bool SAL_CALL hasAttribute(const OUString& name) override;
/** Returns true when an attribute with a given local name and namespace URI is specified on this element or has a default value, false otherwise.
*/ virtual sal_Bool SAL_CALL hasAttributeNS(const OUString& namespaceURI, const OUString& localName) override;
/** Removes an attribute by name.
*/ virtualvoid SAL_CALL removeAttribute(const OUString& name) override;
/** Removes an attribute by local name and namespace URI.
*/ virtualvoid SAL_CALL removeAttributeNS(const OUString& namespaceURI, const OUString& localName) override;
/** Adds a new attribute.
*/ virtualvoid SAL_CALL setAttribute(const OUString& name, const OUString& value) override;
/** Adds a new attribute node.
*/ virtual css::uno::Reference< css::xml::dom::XAttr > SAL_CALL setAttributeNode(const css::uno::Reference< css::xml::dom::XAttr >& newAttr) override;
/** Adds a new attribute.
*/ virtual css::uno::Reference< css::xml::dom::XAttr > SAL_CALL setAttributeNodeNS(const css::uno::Reference< css::xml::dom::XAttr >& newAttr) override;
/** Adds a new attribute.
*/ virtualvoid SAL_CALL setAttributeNS( const OUString& namespaceURI, const OUString& qualifiedName, const OUString& value) override;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.