|
|
Class: Link (in HTML)
Object
|
+--HTML::AbstractElement
|
+--HTML::AbstractHTMLElement
|
+--HTML::Link
- Package:
- stx:goodies/webServer/htmlTree
- Category:
- Net-Documents-ModelTree-Head
- Version:
- rev:
1.18
date: 2007/11/05 21:12:03
- user: cg
- file: HTML__Link.st directory: goodies/webServer/htmlTree
- module: stx stc-classLibrary: htmlTree
instance creation
-
href: aHref rel: aRel type: aType
-
Create a new link with the necessary attributes.
-
rel: aRel href: aHref
-
Create a new link with the necessary attributes.
-
rel: aRel href: aHref title: aString
-
Create a new link with the necessary attributes.
-
rel: aRel href: aHref type: aType
-
Create a new link with the necessary attributes.
required protocol
-
tagName
-
interface-attributes
-
href
-
Return the href of the link.
-
href: aHref
-
Set the href of the link.
-
media: mediaString
-
-
rel
-
Return the rel-attribute of the link.
This is a relationship to a link.
-
rel: aRel
-
Set the rel-attribute of the link.
This is a relationship to a link.
-
rev
-
Return the rev-attribute of the link.
This is a relationship from a link.
-
rev: aRev
-
Set the rev-attribute of the link.
This is a relationship to a link.
-
target
-
Return the target of the link.
-
target: aTarget
-
Set the target of the link.
-
title
-
Return the title of the link.
-
type
-
Return the type of the link.
-
type: aType
-
Set the type of the link.
queries
-
canHaveChild: anElement
-
-
canHaveText
-
-
mustBeClosed
-
required-visiting
-
acceptHTMLVisitor: aVisitor
-
visitor pattern: dispatch me to the visitor
testing
-
isLink
-
|