Class: WsdlMapper::Generation::AbstractFormatter Abstract

Inherits:
Object
  • Object
show all
Defined in:
lib/wsdl_mapper/generation/abstract_formatter.rb

Overview

This class is abstract.

noinspection RubyUnusedLocalVariable

Instance Method Summary collapse

Constructor Details

#initialize(io) ⇒ AbstractFormatter

Returns a new instance of AbstractFormatter.



6
7
8
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 6

def initialize(io)
  @io = io
end

Instance Method Details

#after_constantsObject

Raises:

  • (NotImplementedError)


66
67
68
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 66

def after_constants
  raise NotImplementedError
end

#after_requiresObject

Raises:

  • (NotImplementedError)


62
63
64
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 62

def after_requires
  raise NotImplementedError
end

#assignment(var_name, value) ⇒ Object

Raises:

  • (NotImplementedError)


30
31
32
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 30

def assignment(var_name, value)
  raise NotImplementedError
end

#assignments(*assigns) ⇒ Object

Raises:

  • (NotImplementedError)


106
107
108
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 106

def assignments(*assigns)
  raise NotImplementedError
end

#attr_accessors(*attrs) ⇒ Object

Raises:

  • (NotImplementedError)


78
79
80
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 78

def attr_accessors(*attrs)
  raise NotImplementedError
end

#begin_class(name) ⇒ Object

Raises:

  • (NotImplementedError)


86
87
88
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 86

def begin_class(name)
  raise NotImplementedError
end

#begin_def(name, *args) ⇒ Object

Raises:

  • (NotImplementedError)


94
95
96
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 94

def begin_def(name, *args)
  raise NotImplementedError
end

#begin_module(name) ⇒ Object

Raises:

  • (NotImplementedError)


82
83
84
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 82

def begin_module(name)
  raise NotImplementedError
end

#begin_modules(names) ⇒ Object

Raises:

  • (NotImplementedError)


18
19
20
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 18

def begin_modules(names)
  raise NotImplementedError
end

#begin_sub_class(name, super_name) ⇒ Object

Raises:

  • (NotImplementedError)


90
91
92
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 90

def begin_sub_class(name, super_name)
  raise NotImplementedError
end

#blank_commentObject

Raises:

  • (NotImplementedError)


46
47
48
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 46

def blank_comment
  raise NotImplementedError
end

#blank_lineObject

Raises:

  • (NotImplementedError)


42
43
44
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 42

def blank_line
  raise NotImplementedError
end

#block(statement, block_args, &block) ⇒ Object

Raises:

  • (NotImplementedError)


50
51
52
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 50

def block(statement, block_args, &block)
  raise NotImplementedError
end

#block_assignment(var_name, statement, block_args, &block) ⇒ Object

Raises:

  • (NotImplementedError)


54
55
56
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 54

def block_assignment(var_name, statement, block_args, &block)
  raise NotImplementedError
end

#call(name, *args) ⇒ Object

Raises:

  • (NotImplementedError)


34
35
36
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 34

def call(name, *args)
  raise NotImplementedError
end

#endObject

Raises:

  • (NotImplementedError)


110
111
112
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 110

def end
  raise NotImplementedError
end

#end_modules(names) ⇒ Object

Raises:

  • (NotImplementedError)


22
23
24
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 22

def end_modules(names)
  raise NotImplementedError
end

#in_class(name) ⇒ Object

Raises:

  • (NotImplementedError)


10
11
12
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 10

def in_class(name)
  raise NotImplementedError
end

#in_def(name, *args) ⇒ Object

Raises:

  • (NotImplementedError)


98
99
100
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 98

def in_def(name, *args)
  raise NotImplementedError
end

#in_modules(names) ⇒ Object

Raises:

  • (NotImplementedError)


26
27
28
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 26

def in_modules(names)
  raise NotImplementedError
end

#in_sub_class(name) ⇒ Object

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 14

def in_sub_class(name)
  raise NotImplementedError
end

#literal_array(name, values) ⇒ Object

Raises:

  • (NotImplementedError)


102
103
104
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 102

def literal_array(name, values)
  raise NotImplementedError
end

#next_statementObject

Raises:

  • (NotImplementedError)


38
39
40
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 38

def next_statement
  raise NotImplementedError
end

#requires(path) ⇒ Object

Raises:

  • (NotImplementedError)


74
75
76
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 74

def requires(path)
  raise NotImplementedError
end

#statement(statement) ⇒ Object

Raises:

  • (NotImplementedError)


70
71
72
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 70

def statement(statement)
  raise NotImplementedError
end

#statements(*statements) ⇒ Object

Raises:

  • (NotImplementedError)


58
59
60
# File 'lib/wsdl_mapper/generation/abstract_formatter.rb', line 58

def statements(*statements)
  raise NotImplementedError
end