Class: JIJI::Plugin::SecuritiesPlugin::Input
- Inherits:
-
Struct
- Object
- Struct
- JIJI::Plugin::SecuritiesPlugin::Input
- Defined in:
- lib/jiji/plugin/securities_plugin.rb
Overview
ユーザーに入力を要求するデータの情報
- key
-
データのキー
- description
-
入力時に表示する説明
- secure
-
UIでの入力値の表示を行うかどうか。trueにするとUI上では「*」で表示されます。
- validator
-
UIでの入力値のチェックを行うProc。引数として文字列を受け取り、
エラーがあった場合はエラーメッセージ、問題ない場合はnilを返すこと。 nilを指定すると、入力値のチェックを行わない。
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#key ⇒ Object
Returns the value of attribute key.
-
#secure ⇒ Object
Returns the value of attribute secure.
-
#validator ⇒ Object
Returns the value of attribute validator.
Instance Attribute Details
#description ⇒ Object
Returns the value of attribute description
74 75 76 |
# File 'lib/jiji/plugin/securities_plugin.rb', line 74 def description @description end |
#key ⇒ Object
Returns the value of attribute key
74 75 76 |
# File 'lib/jiji/plugin/securities_plugin.rb', line 74 def key @key end |
#secure ⇒ Object
Returns the value of attribute secure
74 75 76 |
# File 'lib/jiji/plugin/securities_plugin.rb', line 74 def secure @secure end |
#validator ⇒ Object
Returns the value of attribute validator
74 75 76 |
# File 'lib/jiji/plugin/securities_plugin.rb', line 74 def validator @validator end |