Class: FieldReports::Proxy
- Inherits:
-
Object
- Object
- FieldReports::Proxy
- Defined in:
- lib/field_reports/proxy.rb
Overview
Field Reportsと連携するためのProxyオブジェクト
Instance Method Summary collapse
-
#parse(pdf) ⇒ String
PDFデータを解析し,フィールドや注釈の情報を取得します。.
-
#render(param) ⇒ String
レンダリング・パラメータを元にレンダリングを実行します。.
-
#version ⇒ String
バージョン番号を取得します。.
Instance Method Details
#parse(pdf) ⇒ String
PDFデータを解析し,フィールドや注釈の情報を取得します。
35 36 37 |
# File 'lib/field_reports/proxy.rb', line 35 def parse(pdf) raise "not implemented" end |
#render(param) ⇒ String
Note:
ユーザーズ・マニュアル「第5章 レンダリングパラメータ」参照
レンダリング・パラメータを元にレンダリングを実行します。
26 27 28 |
# File 'lib/field_reports/proxy.rb', line 26 def render(param) raise "not implemented" end |
#version ⇒ String
バージョン番号を取得します。
15 16 17 |
# File 'lib/field_reports/proxy.rb', line 15 def version raise "not implemented" end |