edu.iu.iv.core.plugin
Class PluginProperty

java.lang.Object
  |
  +--edu.iu.iv.core.plugin.PluginProperty

public class PluginProperty
extends java.lang.Object

A class representing a key to a PluginProperty. These are to be used by a plugin's property map for specifiying new optional meta-data that can be used by IVC. Public instances are available for standard properties used.

Version:
0.1
Author:
Team IVC

Field Summary
static Property AUTHOR
          Represents the property for the Author of the algorithm the plugin is written around.
static Property CITATION_STRING
          Represents the property for a citation string.
static Property DOCUMENTATION_LINK
          Represents the property for a Documentation Link.
 
Constructor Summary
PluginProperty()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DOCUMENTATION_LINK

public static final Property DOCUMENTATION_LINK
Represents the property for a Documentation Link. The value to use in the property map is an URL.


CITATION_STRING

public static final Property CITATION_STRING
Represents the property for a citation string. The value to use in the property map is a String.


AUTHOR

public static final Property AUTHOR
Represents the property for the Author of the algorithm the plugin is written around. The value to use in the property map is a String.

Constructor Detail

PluginProperty

public PluginProperty()