Class: Cassowary::DummyVariable

Inherits:
AbstractVariable show all
Defined in:
lib/variables/dummy_variable.rb

Instance Attribute Summary

Attributes inherited from AbstractVariable

#name

Instance Method Summary collapse

Methods inherited from AbstractVariable

#initialize, #inspect

Constructor Details

This class inherits a constructor from Cassowary::AbstractVariable

Instance Method Details

#dummy?Boolean



5
6
7
# File 'lib/variables/dummy_variable.rb', line 5

def dummy?
  true
end

#external?Boolean



9
10
11
# File 'lib/variables/dummy_variable.rb', line 9

def external?
  false
end

#pivotable?Boolean



13
14
15
# File 'lib/variables/dummy_variable.rb', line 13

def pivotable?
  false
end

#restricted?Boolean



17
18
19
# File 'lib/variables/dummy_variable.rb', line 17

def restricted?
  true
end