Class: WsdlMapper::Generation::AbstractFormatter Abstract
- Inherits:
-
Object
- Object
- WsdlMapper::Generation::AbstractFormatter
- Defined in:
- lib/wsdl_mapper/generation/abstract_formatter.rb
Overview
This class is abstract.
Instance Method Summary (collapse)
- - (Object) after_constants
- - (Object) after_requires
- - (Object) assignment(var_name, value)
- - (Object) assignments(*assigns)
- - (Object) attr_accessors(*attrs)
- - (Object) begin_class(name)
- - (Object) begin_def(name, *args)
- - (Object) begin_module(name)
- - (Object) begin_modules(names)
- - (Object) begin_sub_class(name, super_name)
- - (Object) blank_comment
- - (Object) blank_line
- - (Object) block(statement, block_args, &block)
- - (Object) block_assignment(var_name, statement, block_args, &block)
- - (Object) call(name, *args)
- - (Object) end
- - (Object) end_modules(names)
- - (Object) in_class(name)
- - (Object) in_def(name, *args)
- - (Object) in_modules(names)
- - (Object) in_sub_class(name)
-
- (AbstractFormatter) initialize(io)
constructor
A new instance of AbstractFormatter.
- - (Object) literal_array(name, values)
- - (Object) next_statement
- - (Object) requires(path)
- - (Object) statement(statement)
- - (Object) statements(*statements)
Constructor Details
- (AbstractFormatter) initialize(io)
Returns a new instance of AbstractFormatter
5 6 7 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 5 def initialize(io) @io = io end |
Instance Method Details
- (Object) after_constants
65 66 67 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 65 def after_constants raise NotImplementedError end |
- (Object) after_requires
61 62 63 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 61 def after_requires raise NotImplementedError end |
- (Object) assignment(var_name, value)
29 30 31 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 29 def assignment(var_name, value) raise NotImplementedError end |
- (Object) assignments(*assigns)
105 106 107 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 105 def assignments(*assigns) raise NotImplementedError end |
- (Object) attr_accessors(*attrs)
77 78 79 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 77 def attr_accessors(*attrs) raise NotImplementedError end |
- (Object) begin_class(name)
85 86 87 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 85 def begin_class(name) raise NotImplementedError end |
- (Object) begin_def(name, *args)
93 94 95 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 93 def begin_def(name, *args) raise NotImplementedError end |
- (Object) begin_module(name)
81 82 83 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 81 def begin_module(name) raise NotImplementedError end |
- (Object) begin_modules(names)
17 18 19 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 17 def begin_modules(names) raise NotImplementedError end |
- (Object) begin_sub_class(name, super_name)
89 90 91 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 89 def begin_sub_class(name, super_name) raise NotImplementedError end |
- (Object) blank_comment
45 46 47 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 45 def blank_comment raise NotImplementedError end |
- (Object) blank_line
41 42 43 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 41 def blank_line raise NotImplementedError end |
- (Object) block(statement, block_args, &block)
49 50 51 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 49 def block(statement, block_args, &block) raise NotImplementedError end |
- (Object) block_assignment(var_name, statement, block_args, &block)
53 54 55 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 53 def block_assignment(var_name, statement, block_args, &block) raise NotImplementedError end |
- (Object) call(name, *args)
33 34 35 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 33 def call(name, *args) raise NotImplementedError end |
- (Object) end
109 110 111 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 109 def end raise NotImplementedError end |
- (Object) end_modules(names)
21 22 23 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 21 def end_modules(names) raise NotImplementedError end |
- (Object) in_class(name)
9 10 11 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 9 def in_class(name) raise NotImplementedError end |
- (Object) in_def(name, *args)
97 98 99 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 97 def in_def(name, *args) raise NotImplementedError end |
- (Object) in_modules(names)
25 26 27 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 25 def in_modules(names) raise NotImplementedError end |
- (Object) in_sub_class(name)
13 14 15 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 13 def in_sub_class(name) raise NotImplementedError end |
- (Object) literal_array(name, values)
101 102 103 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 101 def literal_array(name, values) raise NotImplementedError end |
- (Object) next_statement
37 38 39 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 37 def next_statement raise NotImplementedError end |
- (Object) requires(path)
73 74 75 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 73 def requires(path) raise NotImplementedError end |
- (Object) statement(statement)
69 70 71 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 69 def statement(statement) raise NotImplementedError end |
- (Object) statements(*statements)
57 58 59 |
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 57 def statements(*statements) raise NotImplementedError end |