Class: JIJI::Plugin::SecuritiesPlugin::Input

Inherits:
Struct
  • Object
show all
Defined in:
lib/jiji/plugin/securities_plugin.rb

Overview

ユーザーに入力を要求するデータの情報

key

データのキー

description

入力時に表示する説明

secure

UIでの入力値の表示を行うかどうか。trueにするとUI上では「*」で表示されます。

validator

UIでの入力値のチェックを行うProc。引数として文字列を受け取り、

エラーがあった場合はエラーメッセージ、問題ない場合はnilを返すこと。
nilを指定すると、入力値のチェックを行わない。

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionObject

Returns the value of attribute description

Returns:

  • (Object)

    the current value of description



74
75
76
# File 'lib/jiji/plugin/securities_plugin.rb', line 74

def description
  @description
end

#keyObject

Returns the value of attribute key

Returns:

  • (Object)

    the current value of key



74
75
76
# File 'lib/jiji/plugin/securities_plugin.rb', line 74

def key
  @key
end

#secureObject

Returns the value of attribute secure

Returns:

  • (Object)

    the current value of secure



74
75
76
# File 'lib/jiji/plugin/securities_plugin.rb', line 74

def secure
  @secure
end

#validatorObject

Returns the value of attribute validator

Returns:

  • (Object)

    the current value of validator



74
75
76
# File 'lib/jiji/plugin/securities_plugin.rb', line 74

def validator
  @validator
end