Skip to content

Commit

Permalink
Update plugins.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dmolony committed May 10, 2015
1 parent 4cb23ce commit b12a36f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/plugins.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Plugins
This facility allows users to write their own plugin java modules which are able to examine and process 3270 input screens. Modifiable screen fields may be altered, the cursor may be moved and any command or function key may be pressed. A plugin can be executed automatically after each screen is displayed, or on request by the user.
This facility allows users to write their own plugin java modules which are able to examine and process 3270 input screens. Modifiable screen fields may be altered, the cursor may be moved and any command or function key may be pressed. Plugins can be executed automatically after each screen is displayed, on request by the user, or both.
#### Creation
Implement the Plugin interface or extend DefaultPlugin.
```java
Expand Down Expand Up @@ -32,5 +32,5 @@ Use the Plugin Manager to connect the class name to a command name. The command
##### Plugins Menu
![Plugins](pluginmenu.png?raw=true "plugins menu")
#### Activation
Select the plugin from the plugins menu. Plugins that are defined as Active are automatically activated. If the plugin returns true from doesRequest() then it will be assigned a command key (0-9) which will be attached to a new menu entry. This new command can be triggered by the user at any time.
Select the plugin from the plugins menu to activate it (plugins that are defined as Active are automatically activated). If the plugin returns true from doesRequest() then it will be assigned a command key (0-9) which will be attached to a new menu entry. This new command can be triggered by the user at any time.
![Plugins](plugin2menu.png?raw=true "plugins menu")

0 comments on commit b12a36f

Please sign in to comment.