Class: NotationDecl (REXML::DTD)

Overview
Module Structure
Class Hierarchy
Constants
NotationDecl::START
NotationDecl::START_RE
NotationDecl::PUBLIC
NotationDecl::SYSTEM
Class Methods
NotationDecl.parse_source
Instance Methods
NotationDecl#initialize
NotationDecl#to_s
NotationDecl#write / 2
is a submodule of
module: DTD ( REXML )
inherits from
  Child ( REXML )
has properties
constant: START   
constant: START_RE   
constant: PUBLIC   
constant: SYSTEM   
method: initialize   
method: to_s   
method: write / 2   
class method: parse_source   
is defined at
#4 in rexml/dtd/notationdecl.rb  

Overview

Module Structure

  module: <Toplevel Module>
  module: REXML
  class: Child
  module: DTD
class: NotationDecl     

Class Hierarchy

Object ( Builtin-Module )
has properties
method: dclone   
Child ( REXML )
includes
  Node ( REXML )
has properties
attribute: parent [R]   
method: initialize / 1   
method: replace_with / 1   
method: remove   
method: parent= / 1   
alias: next_sibling next_sibling_node   
alias: previous_sibling previous_sibling_node   
method: next_sibling= / 1   
method: previous_sibling= / 1   
method: document   
method: bytes   
NotationDecl ( REXML::DTD )
has properties
constant: START   
constant: START_RE   
constant: PUBLIC   
constant: SYSTEM   
method: initialize   
method: to_s   
method: write / 2   
class method: parse_source   

Constants

NotationDecl::START

#5 in rexml/dtd/notationdecl.rb

START = "<!NOTATION"   

NotationDecl::START_RE

#6 in rexml/dtd/notationdecl.rb

START_RE = /^\s*#{START}/um   

NotationDecl::PUBLIC

#7 in rexml/dtd/notationdecl.rb

PUBLIC = /^\s*#{START}\s+(\w[\w-]*)\s+(PUBLIC)\s+((["']).*?\4)\s*>/um   

NotationDecl::SYSTEM

#8 in rexml/dtd/notationdecl.rb

SYSTEM = /^\s*#{START}\s+(\w[\w-]*)\s+(SYSTEM)\s+((["']).*?\4)\s*>/um   

Class Methods

NotationDecl.parse_source

#32 in rexml/dtd/notationdecl.rb

parse_source

Instance Methods

NotationDecl#initialize

#9 in rexml/dtd/notationdecl.rb

initialize

NotationDecl#to_s

#23 in rexml/dtd/notationdecl.rb

to_s

NotationDecl#write / 2

#27 in rexml/dtd/notationdecl.rb

write ( output ,
  indent )