rubyx-debugger/lib/base/constant_view.rb
2015-08-22 02:23:53 +02:00

15 lines
227 B
Ruby

require_relative "element_view"
class ConstantView < ElementView
def initialize class_or_id , text = nil
@class_or_id = class_or_id
@text = text
end
def draw
@element = div(@class_or_id , @text)
end
end