com.google.gwt.xml.client.Element Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vaadin-client Show documentation
Show all versions of vaadin-client Show documentation
Vaadin is a web application framework for Rich Internet Applications (RIA).
Vaadin enables easy development and maintenance of fast and
secure rich web
applications with a stunning look and feel and a wide browser support.
It features a server-side architecture with the majority of the logic
running
on the server. Ajax technology is used at the browser-side to ensure a
rich
and interactive user experience.
/*
* Copyright 2008 Google 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.google.gwt.xml.client;
/*
* Implementation notes: Internet Explorer does not support any of the namespace
* methods, so xxxNS is not supported for all xxx. Safari does not support
* Attribute node modification; use setAttribute
instead.
*
*/
/**
* This interface represents XML DOM elements, which are the basic building
* block of XML. An example follows:
*
*
*
* Some text more text
*
*
*/
public interface Element extends Node {
/**
* This method retrieves the attribute which has a name of name
.
*
* @param name the name of the attribute to get the value of
* @return the value of the attribute specified by name
*/
String getAttribute(String name);
/**
* This method retrieves the attribute node which has a name of
* name
. This Attr
will have the same value as
* would be gotten with getAttribute
.
*
* @param name the name of the Attr
to get
* @return the attribute node of this Element
which has a name
* of name
*/
Attr getAttributeNode(String name);
/**
* This method retrieves the elements by tag name which has a name of
* name
.
*
* @param name the name of the Element
to get
* @return the elements by tag name of this Element
which has a
* name of name
*/
NodeList getElementsByTagName(String name);
/**
* This method retrieves the tag name.
*
* @return the tag name of this Element
*/
String getTagName();
/**
* This method determines whether this Element
has an attribute
* with the supplied name.
*
* @param name the name of the attribute
* @return true
if this Element
has an attribute
* that name.
*/
boolean hasAttribute(String name);
/**
* This method removes the attribute which has the specified name.
*
* @param name the name of the attribute to remove
*/
void removeAttribute(String name);
/**
* This method sets the attribute specified by name
to
* value
.
*
* @param name the name of the attribute to set
* @param value the new value this attribute is to have
*/
void setAttribute(String name, String value);
}