elemental.html.AnchorElement 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 2012 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 elemental.html;
import elemental.dom.Element;
import elemental.events.*;
import elemental.util.*;
import elemental.dom.*;
import elemental.html.*;
import elemental.css.*;
import elemental.stylesheets.*;
import java.util.Date;
/**
* DOM anchor elements expose the HTMLAnchorElement (or HTML 4 HTMLAnchorElement
) interface, which provides special properties and methods (beyond the regular element object interface they also have available to them by inheritance) for manipulating the layout and presentation of hyperlink elements.
*/
public interface AnchorElement extends Element {
/**
* The character encoding of the linked resource.
Obsolete in
HTML5
*/
String getCharset();
void setCharset(String arg);
/**
* Comma-separated list of coordinates.
Obsolete in
HTML5
*/
String getCoords();
void setCoords(String arg);
String getDownload();
void setDownload(String arg);
/**
* The fragment identifier (including the leading hash mark (#)), if any, in the referenced URL.
*/
String getHash();
void setHash(String arg);
/**
* The hostname and port (if it's not the default port) in the referenced URL.
*/
String getHost();
void setHost(String arg);
/**
* The hostname in the referenced URL.
*/
String getHostname();
void setHostname(String arg);
/**
* Reflects the
href
HTML attribute, containing a valid URL of a linked resource.
*/
String getHref();
void setHref(String arg);
/**
* Reflects the
hreflang
HTML attribute, indicating the language of the linked resource.
*/
String getHreflang();
void setHreflang(String arg);
/**
* Anchor name.
Obsolete in
HTML5
*/
String getName();
void setName(String arg);
String getOrigin();
/**
* The path name component, if any, of the referenced URL.
*/
String getPathname();
void setPathname(String arg);
String getPing();
void setPing(String arg);
/**
* The port component, if any, of the referenced URL.
*/
String getPort();
void setPort(String arg);
/**
* The protocol component (including trailing colon (:)), of the referenced URL.
*/
String getProtocol();
void setProtocol(String arg);
/**
* Reflects the
rel
HTML attribute, specifying the relationship of the target object to the link object.
*/
String getRel();
void setRel(String arg);
/**
* Reverse link type.
Obsolete in
HTML5
*/
String getRev();
void setRev(String arg);
/**
* The search element (including leading question mark (?)), if any, of the referenced URL
*/
String getSearch();
void setSearch(String arg);
/**
* The shape of the active area.
Obsolete in
HTML5
*/
String getShape();
void setShape(String arg);
/**
* Reflectst the
target
HTML attribute, indicating where to display the linked resource.
*/
String getTarget();
void setTarget(String arg);
/**
* Same as the textContent property.
*/
String getText();
/**
* Reflects the
type
HTML attribute, indicating the MIME type of the linked resource.
*/
String getType();
void setType(String arg);
}