|
Class: HTMLStyle
Object
|
+--Collection
|
+--SequenceableCollection
|
+--ArrayedCollection
|
+--Array
|
+--HTMLElement
|
+--HTMLMarkup
|
+--HTMLStyle
- Package:
- stx:libhtml
- Category:
- System-Documentation
- Version:
- rev:
1.5
date: 2023/02/07 19:06:19
- user: cg
- file: HTMLStyle.st directory: libhtml
- module: stx stc-classLibrary: libhtml
Attention: Please read the warning in HTMLElement.
copyrightCOPYRIGHT (c) 1996 by Claus Gittinger
All Rights Reserved
This software is furnished under a license and may be used
only in accordance with the terms of that license and with the
inclusion of the above copyright notice. This software may not
be provided or otherwise made available to, or used by, any
other person. No title to or ownership of the software is
hereby transferred.
accessing
-
at: propertyName
-
(comment from inherited method)
return the indexed instance variable with index, anInteger.
Reimplemented here to avoid the additional at:->basicAt: send
(which we can do here, since when arriving here, #at: is obviously not
redefined in a subclass).
This method is the same as basicAt:.
-
at: propertyName put: something
-
(comment from inherited method)
store the 2nd arg, anObject as indexed instvar with index, anInteger.
Returns anObject (sigh).
Reimplemented here to avoid the additional at:put:->basicAt:put: send
(which we can do here, since when arriving here, #atput:: is obviously not
redefined in a subclass).
This method is the same as basicAt:put:.
testing
-
isStyleElement
-
|