1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 module com
{ module sun
{ module star
{ module xml
{ module dom
{
24 interface XAttr
: XNode
27 Returns the name of this attribute.
32 The Element node this attribute is attached to or null if this
33 attribute is not in use.
35 XElement getOwnerElement
();
38 If this attribute was explicitly given a value in the original
39 document, this is true; otherwise, it is false.
41 boolean getSpecified
();
44 On retrieval, the value of the attribute is returned as a string.
49 Sets the value of the attribute from a string.
51 DOMException - NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
54 void setValue
([in] string value
) raises
(DOMException
);
58 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */