Package advene :: Package model :: Module _impl :: Class Hrefed
[hide private]
[frames] | no frames]

Class Hrefed

source code

object --+
         |
        Hrefed
Known Subclasses:

An implementation for the 'href' property. Inheriting classes must have a _getModel method returning a DOM element (inheriting the modeled.Modeled class looks like a good idea). Note that this implementation consider 'href' to be required.

Instance Methods [hide private]
 
delHref(self)
Always raises an exception since href is a required attribute.
source code
 
getHref(self)
Return the 'href' attribute.
source code
 
setHref(self, value)
Set the 'href' attribute.
source code

Inherited from object: __delattr__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties [hide private]
  href
Return the 'href' attribute.

Inherited from object: __class__

Method Details [hide private]

getHref(self)

source code 

Return the 'href' attribute. You would probably rather use the 'href' property.

setHref(self, value)

source code 

Set the 'href' attribute. You would probably rather use the 'href' property.


Property Details [hide private]

href

Return the 'href' attribute. You would probably rather use the 'href' property.

Get Method:
getHref(self) - Return the 'href' attribute.
Set Method:
setHref(self, value) - Set the 'href' attribute.
Delete Method:
delHref(self) - Always raises an exception since href is a required attribute.