|
Class: Center (in HTML)
Object
|
+--HTML::AbstractElement
|
+--HTML::AbstractHTMLElement
|
+--HTML::Center
- Package:
- stx:goodies/webServer/htmlTree
- Category:
- Net-Documents-HTML-ModelTree-BlockLevel
- Version:
- rev:
1.19
date: 2018/04/26 10:30:20
- user: cg
- file: HTML__Center.st directory: goodies/webServer/htmlTree
- module: stx stc-classLibrary: htmlTree
- Author:
- Martin Walser
Alignment html element..
[instance variables:]
-
[class variables:]
-
Div
required protocol
-
tagName
-
Return a tag name for a center.
queries
-
canHaveChild: aChild in: aParser
-
(comment from inherited method)
return true, if anotherElement is allowed as my child
-
printInlineWithSimpleElements
-
(comment from inherited method)
helper for printing; controls if begin- and end-tags are generated into extra lines
required-visiting
-
acceptHTMLVisitor: aVisitor
-
visitor pattern: dispatch me to the visitor
testing
-
isBlockElement
-
-
isCenter
-
A centered text:
|center|
center := Center with:'This is a generated centered Text'.
center htmlString.
|
A centered paragraph:
|paragraph center|
paragraph := Paragraph with: 'This is a generated centered Text.'.
center := Center with: paragraph.
center htmlString.
|
|