Class: KafoWizards::Entries::StringEntry

Inherits:
AbstractEntry show all
Defined in:
lib/kafo_wizards/entries/string.rb

Instance Attribute Summary

Attributes inherited from AbstractEntry

#default_value, #description, #label, #name, #parent, #post_hook, #pre_hook, #validators, #value

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AbstractEntry

#call_post_hook, #call_pre_hook, descendants, #display_type, inherited, #required?, #update, #validate

Constructor Details

#initialize(name, options = {}) ⇒ StringEntry

Returns a new instance of StringEntry.



3
4
5
# File 'lib/kafo_wizards/entries/string.rb', line 3

def initialize(name, options={})
  super(name, options)
end

Class Method Details

.entry_typeObject



7
8
9
# File 'lib/kafo_wizards/entries/string.rb', line 7

def self.entry_type
  :string
end