added unit tests for plugin condition

This commit is contained in:
Sebastian Sdorra
2011-03-12 16:56:03 +01:00
parent 5f6d1325c0
commit f60ee10718
2 changed files with 129 additions and 0 deletions

View File

@@ -58,6 +58,29 @@ import javax.xml.bind.annotation.XmlRootElement;
public class PluginCondition
{
/**
* Constructs ...
*
*/
public PluginCondition() {}
/**
* Constructs ...
*
*
* @param minVersion
* @param os
* @param arch
*/
public PluginCondition(String minVersion, List<String> os, String arch)
{
this.minVersion = minVersion;
this.os = os;
this.arch = arch;
}
//~--- get methods ----------------------------------------------------------
/**
* Method description
*