Skip to content
Snippets Groups Projects
Commit a5a80475 authored by Armin Costa's avatar Armin Costa
Browse files

Update Plugins.md

parent 71d1c8e1
No related branches found
No related tags found
No related merge requests found
......@@ -45,13 +45,13 @@ Example:
The parameters can be passed to the *Task* plugin with one of the following options:
1) By using a custom keyword tag eg. *FilePrefix* in the *Task* definition and then accessing the parameter with the Hashtable parameters in the Interface
- By using a custom keyword tag eg. *FilePrefix* in the *Task* definition and then accessing the parameter with the Hashtable parameters in the Interface
```java
String file_prefix = (String)parameters.get("FilePrefix");
```
2) By using the *Parameter* tag in the *Task* definition and than referencing the parameter with the Object[] args type in the Interface
- By using the *Parameter* tag in the *Task* definition and than referencing the parameter with the Object[] args type in the Interface
```java
String classname = (String)args[1];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment