JP5229871B2 - 使用者によるデータの入力を支援する技術 - Google Patents
使用者によるデータの入力を支援する技術 Download PDFInfo
- Publication number
- JP5229871B2 JP5229871B2 JP2008003739A JP2008003739A JP5229871B2 JP 5229871 B2 JP5229871 B2 JP 5229871B2 JP 2008003739 A JP2008003739 A JP 2008003739A JP 2008003739 A JP2008003739 A JP 2008003739A JP 5229871 B2 JP5229871 B2 JP 5229871B2
- Authority
- JP
- Japan
- Prior art keywords
- input
- field
- input field
- data
- support function
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Expired - Fee Related
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F3/00—Input arrangements for transferring data to be processed into a form capable of being handled by the computer; Output arrangements for transferring data from processing unit to output unit, e.g. interface arrangements
- G06F3/01—Input arrangements or combined input and output arrangements for interaction between user and computer
- G06F3/048—Interaction techniques based on graphical user interfaces [GUI]
- G06F3/0487—Interaction techniques based on graphical user interfaces [GUI] using specific features provided by the input device, e.g. functions controlled by the rotation of a mouse with dual sensing arrangements, or of the nature of the input device, e.g. tap gestures based on pressure sensed by a digitiser
- G06F3/0489—Interaction techniques based on graphical user interfaces [GUI] using specific features provided by the input device, e.g. functions controlled by the rotation of a mouse with dual sensing arrangements, or of the nature of the input device, e.g. tap gestures based on pressure sensed by a digitiser using dedicated keyboard keys or combinations thereof
- G06F3/04895—Guidance during keyboard input operation, e.g. prompting
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F40/00—Handling natural language data
- G06F40/10—Text processing
- G06F40/166—Editing, e.g. inserting or deleting
- G06F40/174—Form filling; Merging
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- General Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computational Linguistics (AREA)
- General Health & Medical Sciences (AREA)
- Health & Medical Sciences (AREA)
- Audiology, Speech & Language Pathology (AREA)
- Artificial Intelligence (AREA)
- Human Computer Interaction (AREA)
- User Interface Of Digital Computer (AREA)
- Document Processing Apparatus (AREA)
Description
なお、上記の発明の概要は、本発明の必要な特徴の全てを列挙したものではなく、これらの特徴群のサブコンビネーションもまた、発明となりうる。
このような入力支援機能は便利な反面、入力支援機能の設定にはある程度の処理時間がかかる場合がある。
図3aは、本実施形態に係るユーザ・インターフェイス208に表示される画面の構造を示す第1図である。本実施形態に係るウェブ・ブラウザ206は、まず、代替フィールドを1つ生成する。この代替フィールドは、ページ内の複数の入力フィールドに代わってデータの入力を受け付けるために、複数の入力フィールドについて共通に生成される。
これらの処理を、JavaScriptで実現すると、例えば以下のように表される。
但し、関数setBehaviorAssist()についても同じく制御プログラム405中で例えば下記のように定義される。
function setBehaviorAssist() {
/*入力支援機能1:アルファベットのみを受け付けるように設定する処理*/
…
}
eventRegistryArray["input3"]="setNumberAssist();";
但し、関数setNumberAssist()についても同じく制御プログラム405中で例えば下記のように定義される。
function setNumberAssist() {
/*入力支援機能1:数値のみを受け付けるように設定する処理*/
…
/*入力支援機能2:3桁カンマを付すように設定する処理*/
…
}
以上のように、ウェブ・ブラウザ206がウェブページを受信した時点においては、入力支援機能それ自体が設定されるのではなく、単に入力支援機能を設定するための関数が、各入力フィールドに対応付けて登録される。これは、JavaScriptのプログラムにおいては、単に配列変数への値の代入処理である。従って、ウェブページを表示する時点においては使用者の待ち時間は殆んど発生しない。
dummy.id="_dummy";
本実施形態においては、あらかじめ各入力フィールド設定されたタブ・インデックスに基づき、フォーカスの当たる順序で、入力フィールドのid を記憶装置へ保存する。ある入力フィールド「input1」のタブ・インデックスは、以下のように取得する。
inputField.tabIndexが、入力フィールド「input1」のタブ・インデックスを示す。
tabOrderArray[0]="input1"
tabOrderArray[1]="input2"
tabOrderArray[2]="input3"
body["onkeydown"]="handleKeyDown(event)";
body["onkeyup"]="handleKeyUp(event)";
body["onclick"]="handleMouseClick(event)";
(ポインティングデバイスの場合)
var nextId=event.srcElement.id;
(タブキーの場合)
nowOrder++;
var nextId=tabOrderArray[nowOrder];
dummy[(設定されているイベント)]=null;
次に、コピー部430は、選択検出部425が第2入力フィールドを検出するまでに代替フィールドに対し入力されたデータを、第1入力フィールドにコピーする(S710)。これは、例えば以下のプログラムにより実現される。
var inputField=document.getElementById(nowOrder);
inputField.value=dummy.value;
inputField.attribute=dummy.attribute;
var nextField=document.getElementById(nextId);
dummy.座標x=nextField.座標x;
dummy.座標y=nextField.座標y;
dummy.attribute=nextField.attribute;
dummy.value=nextField.value;
var eventStr=eventRegistryArray[nextId];
eval(eventStr);
以上、図6および図7を参照して説明したように、本実施形態に係るクライアント装置200によれば、ページの受信時には各入力フィールドに対し入力支援機能を設定せず、使用者の選択に応じてその都度入力支援機能を代替フィールドに設定するので、ページの受信時における処理の待ち時間を短縮することができる。
inputField.IndexX=<入力フィールドinput1のX座標を示す数値>;
inputField.IndexY=<入力フィールドinput1のY座標を示す数値>;
tabOrderArray[<入力フィールドinput1のX座標を示す数値>][<入力フィールドinput1のY座標を示す数値>]="input1";
tabOrderArray[0][0]="input1"
tabOrderArray[1][0]="input2"
tabOrderArray[0][1]="input6"
(右キー)
nowLocationX++;
var nextId=tabOrderArray[nowLocationX][nowLocationY];
nowLocationX――;
var nextId=tabOrderArray[nowLocationX][nowLocationY];
nowLocationY――;
var nextId=tabOrderArray[nowLocationX][nowLocationY];
nowLocationY++;
var nextId=tabOrderArray[nowLocationX][nowLocationY];
var inputField=event.srcElement;
nowLocationX=inputField.IndexX;
nowLocationY=inputField.IndexY;
なお、その他の動作は、図1から図7までを参照して説明した実施形態と略同一であるから説明を省略する。
以上、本実施形態の変形例によれば、表示部410が多数の入力フィールドをスプレッドシート型に配列して表示する場合においては、方向キーの操作によって代替フィールドを適切に移動させることができる。これにより、代替フィールドの導入によっても、使用者は方向キーなどの使い慣れたインターフェイスを使い続けることができ、作業の効率を維持できる。
100 サーバ装置
102 通信インターフェイス
104 記憶装置
106 ウェブ・サーバ
200 クライアント装置
202 通信インターフェイス
204 記憶装置
206 ウェブ・ブラウザ
208 ユーザ・インターフェイス
400 ページ制御部
405 制御プログラム
410 表示部
415 フィールド生成部
420 入力部
425 選択検出部
430 コピー部
440 機能設定部
450 フィールド制御部
Claims (14)
- 使用者によるデータの入力を支援するシステムであって、
複数の入力フィールドを含むページを表示する表示部と、
前記複数の入力フィールドのそれぞれに対応付けて、当該入力フィールドに設定するべき入力支援機能を予め記憶している記憶装置と、
入力フィールドに代わってデータの入力を受け付ける代替フィールドを、前記複数の入力フィールドについて共通に生成して前記表示部に表示させるフィールド生成部と、
使用者の操作に基づいて、前記複数の入力フィールドのうち使用者がデータを入力するために選択した入力フィールドを検出する選択検出部と、
前記選択検出部が前記入力フィールドを検出したことに応じて、検出した前記入力フィールドに重なる位置に、前記代替フィールドを移動して表示させるフィールド制御部と、
検出した前記入力フィールドに対応付けられた入力支援機能を前記記憶装置から読み出して、読み出した前記入力支援機能を前記代替フィールドに設定する機能設定部と、
前記代替フィールドに対し入力されたデータを、検出した前記入力フィールドにコピーするコピー部と
を備え、
前記フィールド制御部は、前記選択検出部が検出した前記入力フィールドのフィールド枠の高さ又は幅を含む表示属性を、前記代替フィールドに設定する
システム。 - 前記コピー部は、前記選択検出部が第1入力フィールドの次に第2入力フィールドを検出したことに応じて、前記第2入力フィールドが検出されるまでに前記代替フィールドに対し入力されたデータを、前記第1入力フィールドにコピーする、
請求項1に記載のシステム。 - 前記コピー部は、前記選択検出部が第1入力フィールドの次に第2入力フィールドを検出したことに応じて、さらに、前記第2入力フィールドが検出されるまでに既に前記第2入力フィールドに対し入力されていたデータを、前記代替フィールドにコピーする、
請求項2に記載のシステム。 - 前記機能設定部は、前記選択検出部が第1入力フィールドの次に第2入力フィールドを検出したことに応じて、前記第1入力フィールドに対応する第1入力支援機能を前記代替フィールドにおいて無効化すると共に、前記第2入力フィールドに対応する第2入力支援機能を前記代替フィールドに設定する、請求項2に記載のシステム。
- 前記機能設定部は、前記選択検出部が第1入力フィールドの次に第2入力フィールドを検出したことに応じて、前記第1入力フィールドに対応する第1入力支援機能と、前記第2入力フィールドに対応する第2入力支援機能を比較し、前記第1入力支援機能および前記第2入力支援機能が一致した場合に、前記第1入力支援機能が前記代替フィールドに設定された状態で前記代替フィールドにより前記第2入力フィールドへのデータの入力を受け付けさせる請求項4に記載のシステム。
- 前記選択検出部は、使用者がポインティングデバイスを用いてクリックした入力フィールドを検出する、請求項1から5のいずれか1項に記載のシステム。
- 前記記憶装置は、前記複数の入力フィールドのそれぞれに対応付けて、当該入力フィールドがフォーカスされる順序を更に記憶し、
前記選択検出部は、既に第1入力フィールドを検出した状態において、次の入力フィールドをフォーカスする指示を検出したことに応じて、記憶された前記順序において前記第1入力フィールドの次の第2入力フィールドを、使用者から選択された入力フィールドとして検出し、
前記コピー部は、既に前記第2入力フィールドに対し入力されていたデータを、前記代替フィールドにコピーする請求項1から6のいずれか1項に記載のシステム。 - 前記記憶装置は、表示されている前記複数の入力フィールドについて、使用者がタブキーを順次操作することにより選択される順序を更に記憶しており、
前記選択検出部は、既に第1入力フィールドを検出した状態において、タブキーの操作を検出した場合には、記憶された前記順序において前記第1入力フィールドの次の第2入力フィールドを、使用者から選択された入力フィールドとして検出する、
請求項1から7のいずれか1項に記載のシステム。 - 前記表示部は、複数の入力フィールドを行列状に配列したページを表示しており、
前記記憶装置は、表示されている前記複数の入力フィールドのそれぞれについての、前記行列状の配列における座標位置を記憶しており、
前記選択検出部は、既に第1入力フィールドを検出した状態において、方向キーの操作を検出した場合には、前記第1入力フィールドを基準として前記方向キーの方向に隣接する第2入力フィールドを前記座標位置に基づいて特定して、特定した前記第2入力フィールドを、使用者から選択された入力フィールドとして検出する、
請求項1から8のいずれか1項に記載のシステム。 - 入力フィールドに予め対応付けられた前記入力支援機能は、当該入力フィールドに対し入力されたデータのフォーマットを予め定められたフォーマットに変更して前記表示部に表示する機能である、請求項1から9のいずれか1項に記載のシステム。
- 入力フィールドに入力されるデータは数値であり、前記予め定められたフォーマットは、予め定められた数の桁ごとにカンマで区切った数値のフォーマットである、請求項10に記載のシステム。
- 入力フィールドに予め対応付けられた前記入力支援機能は、当該入力フィールドに対し入力されたデータの種類が予め定められた種類と同一か否かを判断して、同一であることを条件にデータの入力を受け付ける機能である、請求項1から11のいずれか1項に記載のシステム。
- 使用者によるデータの入力を支援する方法であって、
複数の入力フィールドを含むページを表示部に表示するステップと、
前記複数の入力フィールドのそれぞれに対応付けて、当該入力フィールドに設定するべき入力支援機能を記憶装置に予め記憶するステップと、
入力フィールドに代わってデータの入力を受け付ける代替フィールドを、前記複数の入力フィールドについて共通に生成して前記表示部に表示させるステップと、
使用者の操作に基づいて、前記複数の入力フィールドのうち使用者がデータを入力するために選択した入力フィールドを検出するステップと、
前記検出するステップで前記入力フィールドを検出したことに応じて、検出した前記入力フィールドに重なる位置に、前記入力フィールドのフィールド枠の高さ又は幅を含む表示属性が設定された前記代替フィールドを移動して表示させるステップと、
検出した前記入力フィールドに対応付けられた入力支援機能を前記記憶装置から読み出して、読み出した前記入力支援機能を前記代替フィールドに設定するステップと、
前記代替フィールドに対し入力されたデータを、検出した前記入力フィールドにコピーするステップと
を備える方法。 - 使用者によるデータの入力を支援するシステムとして、コンピュータを機能させるプログラムであって、
前記コンピュータを、
複数の入力フィールドを含むページを表示する表示部と、
前記複数の入力フィールドのそれぞれに対応付けて、当該入力フィールドに設定するべき入力支援機能を予め記憶している記憶装置と、
入力フィールドに代わってデータの入力を受け付ける代替フィールドを、前記複数の入力フィールドについて共通に生成して前記表示部に表示させるフィールド生成部と、
使用者の操作に基づいて、前記複数の入力フィールドのうち使用者がデータを入力するために選択した入力フィールドを検出する選択検出部と、
前記選択検出部が前記入力フィールドを検出したことに応じて、検出した前記入力フィールドに重なる位置に、前記代替フィールドを移動して表示させ、前記選択検出部が検出した前記入力フィールドのフィールド枠の高さ又は幅を含む表示属性を、前記代替フィールドに設定するフィールド制御部と、
検出した前記入力フィールドに対応付けられた入力支援機能を前記記憶装置から読み出して、読み出した前記入力支援機能を前記代替フィールドに設定する機能設定部と、
前記代替フィールドに対し入力されたデータを、検出した前記入力フィールドにコピーするコピー部と
して機能させるプログラム。
Priority Applications (2)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| JP2008003739A JP5229871B2 (ja) | 2008-01-10 | 2008-01-10 | 使用者によるデータの入力を支援する技術 |
| US12/350,882 US8589817B2 (en) | 2008-01-10 | 2009-01-08 | Technique for supporting user data input |
Applications Claiming Priority (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| JP2008003739A JP5229871B2 (ja) | 2008-01-10 | 2008-01-10 | 使用者によるデータの入力を支援する技術 |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| JP2009169480A JP2009169480A (ja) | 2009-07-30 |
| JP5229871B2 true JP5229871B2 (ja) | 2013-07-03 |
Family
ID=40851774
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| JP2008003739A Expired - Fee Related JP5229871B2 (ja) | 2008-01-10 | 2008-01-10 | 使用者によるデータの入力を支援する技術 |
Country Status (2)
| Country | Link |
|---|---|
| US (1) | US8589817B2 (ja) |
| JP (1) | JP5229871B2 (ja) |
Families Citing this family (11)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| DE102008046058A1 (de) * | 2008-09-08 | 2010-03-11 | T-Mobile International Ag | Verfahren zur Übertragung und Aushandlung von Netzwerk kontrollierten Funktionsdaten zwischen einem Client und einem Server |
| WO2012165531A1 (ja) * | 2011-05-31 | 2012-12-06 | 楽天株式会社 | 情報処理システム、情報処理システムの処理方法、プログラム、及び、記録媒体 |
| US9727891B2 (en) * | 2012-10-22 | 2017-08-08 | Marc Alan Mezzacca | System and method of automated delivery of relevance-checked benefit-conveying codes during online transaction |
| JP6249770B2 (ja) * | 2013-12-27 | 2017-12-20 | キヤノン株式会社 | 文字入力装置 |
| US9946516B2 (en) | 2014-03-14 | 2018-04-17 | Starbucks Corporation | Application workflow framework |
| US9378029B2 (en) * | 2014-03-17 | 2016-06-28 | Sharp Laboratories Of America, Inc. | Rules based user interface architecture |
| US10311751B2 (en) * | 2014-09-22 | 2019-06-04 | Capital One Financial Corporation | Systems and methods for accessible widget selection |
| JP6361441B2 (ja) * | 2014-10-10 | 2018-07-25 | 富士通株式会社 | 認証情報管理方法、認証情報管理プログラムおよび情報処理装置 |
| KR102832245B1 (ko) | 2020-04-27 | 2025-07-10 | 삼성전자주식회사 | 전자 장치 및 전자 장치의 동작 방법 |
| US12399679B2 (en) * | 2020-07-20 | 2025-08-26 | Sony Group Corporation | Information processing apparatus and information processing method |
| US20230260300A1 (en) * | 2022-01-21 | 2023-08-17 | Capital One Services, Llc | View augmentation using a data profiler to detect and convert content to and/or from a profile-specific format |
Family Cites Families (25)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| JPS6394324A (ja) * | 1986-10-08 | 1988-04-25 | Fujitsu Ltd | フイ−ルド入力処理方式 |
| US5233513A (en) * | 1989-12-28 | 1993-08-03 | Doyle William P | Business modeling, software engineering and prototyping method and apparatus |
| US6163878A (en) * | 1998-03-31 | 2000-12-19 | Jereme Kohl | Method and system for designing, generating and storing applications |
| US6100891A (en) * | 1998-06-09 | 2000-08-08 | Teledirect International, Inc. | Call center agent interface and development tool |
| US20020007335A1 (en) * | 2000-03-22 | 2002-01-17 | Millard Jeffrey Robert | Method and system for a network-based securities marketplace |
| EP1310084B1 (en) * | 2000-04-17 | 2005-10-12 | Shawn E. Wiederin | Method for charging on-line directory assistance services |
| US20050210263A1 (en) * | 2001-04-25 | 2005-09-22 | Levas Robert G | Electronic form routing and data capture system and method |
| US6973625B1 (en) * | 2001-07-06 | 2005-12-06 | Convergys Cmg Utah | Method for creating browser-based user interface applications using a framework |
| US7062502B1 (en) * | 2001-12-28 | 2006-06-13 | Kesler John N | Automated generation of dynamic data entry user interface for relational database management systems |
| US7689482B2 (en) * | 2002-05-24 | 2010-03-30 | Jp Morgan Chase Bank, N.A. | System and method for payer (buyer) defined electronic invoice exchange |
| US20040024842A1 (en) * | 2002-07-31 | 2004-02-05 | Sap Aktiengesellschaft | Validation framework for validating markup page input on a client computer |
| JP4491249B2 (ja) * | 2003-01-31 | 2010-06-30 | マイクロソフト コーポレーション | ユーザインタフェースを制御するための挿入位置の追跡 |
| US7296017B2 (en) * | 2003-03-28 | 2007-11-13 | Microsoft Corporation | Validation of XML data files |
| US20040268225A1 (en) * | 2003-06-26 | 2004-12-30 | Walsh Raymond V. | Method and system for controlling navigation of a graphical user interface |
| US7328428B2 (en) * | 2003-09-23 | 2008-02-05 | Trivergent Technologies, Inc. | System and method for generating data validation rules |
| US20050091577A1 (en) * | 2003-10-23 | 2005-04-28 | International Business Machines Corporation | Information integration system |
| US8078481B2 (en) * | 2003-12-05 | 2011-12-13 | John Steinbarth | Benefits administration system and methods of use and doing business |
| US20050289182A1 (en) * | 2004-06-15 | 2005-12-29 | Sand Hill Systems Inc. | Document management system with enhanced intelligent document recognition capabilities |
| US7913184B1 (en) * | 2005-01-20 | 2011-03-22 | Verizon Laboratories Inc. | Intelligent auto-tabbing systems and methods |
| US20070011083A1 (en) * | 2005-07-08 | 2007-01-11 | Bird Alan H | System and method of processing asset financing transactions |
| WO2008039741A2 (en) * | 2006-09-25 | 2008-04-03 | Mark Business Intelligence Systems, Llc. | System and method for project process and workflow optimization |
| US20080102819A1 (en) * | 2006-10-30 | 2008-05-01 | Henrik Bengtsson | System and method for verifying contact data |
| US20080235578A1 (en) * | 2007-03-23 | 2008-09-25 | Sony Ericsson Mobile Communications Ab | Inline editing of web page input fields using a visibly prominent field |
| US8429751B2 (en) * | 2009-03-13 | 2013-04-23 | Trustwave Holdings, Inc. | Method and apparatus for phishing and leeching vulnerability detection |
| US20100251143A1 (en) * | 2009-03-27 | 2010-09-30 | The Ransom Group, Inc. | Method, system and computer program for creating and editing a website |
-
2008
- 2008-01-10 JP JP2008003739A patent/JP5229871B2/ja not_active Expired - Fee Related
-
2009
- 2009-01-08 US US12/350,882 patent/US8589817B2/en not_active Expired - Fee Related
Also Published As
| Publication number | Publication date |
|---|---|
| US20090183090A1 (en) | 2009-07-16 |
| JP2009169480A (ja) | 2009-07-30 |
| US8589817B2 (en) | 2013-11-19 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| JP5229871B2 (ja) | 使用者によるデータの入力を支援する技術 | |
| CN113015956B (zh) | 用于机器人流程自动化的活动目标选择的系统和方法 | |
| JP7518143B2 (ja) | 装置およびコンピュータプログラム | |
| US11354684B2 (en) | Data analytics for international product quality and user experience | |
| US8473857B1 (en) | Link annotation for keyboard navigation | |
| US9311283B2 (en) | System for clipping webpages by traversing a dom, and highlighting a minimum number of words | |
| US20100205559A1 (en) | Quick-launch desktop application | |
| CN101183360B (zh) | 字符输入编辑方法 | |
| JP5105513B2 (ja) | 処理対象として適切なテキストを選択する技術 | |
| US20170293601A1 (en) | Method and system for completing an edit area of a web page | |
| JP4140920B2 (ja) | 個人情報の保護を支援する情報処理装置 | |
| US20170154022A1 (en) | Information processing apparatus, method for controlling the same, and storage medium | |
| US8984403B2 (en) | Bringing user attention to guidance information presented on a display device | |
| US20160103799A1 (en) | Methods and systems for automated detection of pagination | |
| US8094940B2 (en) | Input method transform | |
| JP6045393B2 (ja) | 情報処理システム | |
| JP2005190458A (ja) | 機能付き電子ドキュメントの提供方法、そのプログラム、その装置及びシステム | |
| US8311801B2 (en) | Technology for supporting modification of messages displayed by program | |
| JP2021009492A (ja) | クライアント装置及びサーバ装置及びそれらの制御方法及びプログラム、並びに、リモートブラウザシステム | |
| JP4967266B2 (ja) | デバイス制御システム、及びデバイス制御処理方法 | |
| US20230022675A1 (en) | Searching and sharing content with an overlaid interface | |
| JP2014059663A (ja) | 答案処理装置及び答案処理プログラム | |
| TWI850945B (zh) | 產生並應用翻譯標記的方法及用戶裝置 | |
| WO2021010008A1 (ja) | コンピュータプログラム、記録装置、記録システム、解析装置及び記録方法 | |
| TWI901212B (zh) | 遮蔽電子文件上資料的方法、電子裝置及非暫態電腦可讀媒體 |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| A621 | Written request for application examination |
Free format text: JAPANESE INTERMEDIATE CODE: A621 Effective date: 20100813 |
|
| A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20120710 |
|
| A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20120723 |
|
| A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20120911 |
|
| A521 | Request for written amendment filed |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20121012 |
|
| TRDD | Decision of grant or rejection written | ||
| A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 Effective date: 20130226 |
|
| RD14 | Notification of resignation of power of sub attorney |
Free format text: JAPANESE INTERMEDIATE CODE: A7434 Effective date: 20130227 |
|
| A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20130314 |
|
| FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20160329 Year of fee payment: 3 |
|
| R150 | Certificate of patent or registration of utility model |
Ref document number: 5229871 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
| LAPS | Cancellation because of no payment of annual fees |