42 |
} |
} |
43 |
} # AUTOLOAD |
} # AUTOLOAD |
44 |
|
|
45 |
## The |Node| interface - attribute |
## |Node| attributes |
46 |
|
|
47 |
## Spec: |
sub node_name () { '#text' } |
|
## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-F68D095> |
|
|
## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-1950641247> |
|
48 |
|
|
49 |
sub node_name ($) { |
sub node_type { 3 } # TEXT_NODE |
|
return '#text'; |
|
|
} # node_name |
|
50 |
|
|
51 |
## Spec: |
sub is_element_content_whitespace ($;$) { |
52 |
## <http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core.html#ID-111237558> |
## TODO: |
53 |
|
return 0; |
54 |
sub node_type ($) { 3 } # TEXT_NODE |
} # is_element_content_whitespace |
55 |
|
|
56 |
package Message::IF::Text; |
package Message::IF::Text; |
57 |
|
|