org.eclipse.gmt.modisco.workflow
Class AbstractDriverCore

java.lang.Object
  extended by org.eclipse.gmt.modisco.workflow.AbstractDriverCore
All Implemented Interfaces:
Driver

Deprecated. no Driver needed anymore

@Deprecated
public abstract class AbstractDriverCore
extends java.lang.Object
implements Driver


Constructor Summary
AbstractDriverCore()
          Deprecated.  
 
Method Summary
 WorkParameterBooleanValue createBooleanValue(boolean value)
          Deprecated. Allows to create a WorkParameterBooleanValue
 WorkParameterIntegerValue createIntegerValue(int value)
          Deprecated. Allows to create a WorkParameterIntegerValue
 WorkParameterMapValue createMapValue(java.util.Map<java.lang.String,java.lang.String> map)
          Deprecated. Allows to create a WorkParameterMapValue
 WorkParameter createOneWorkParameter(java.lang.String name, Direction direction, java.lang.String description, java.lang.Boolean required, java.lang.Class<?> type)
          Deprecated. Allows to create one work parameter
 WorkParameterStringListValue createStringListValue(java.util.List<java.lang.String> values)
          Deprecated. Allows to create a WorkParameterStringListValue
 WorkParameterStringValue createStringValue(java.lang.String value)
          Deprecated. Allows to create a WorkParameterStringValue
 WorkParameterStringListValue createValueStringList(java.util.List<java.lang.String> values)
          Deprecated. Allows to create a WorkParameterStringListValue
abstract  java.util.List<WorkParameter> getParameters(ILaunchConfiguration configuration)
          Deprecated. Allows to retrieve all descriptions of parameters
abstract  java.lang.String getTypeLaunchConfig()
          Deprecated. Allows to retrieve the type of launcher.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractDriverCore

public AbstractDriverCore()
Deprecated. 
Method Detail

getParameters

public abstract java.util.List<WorkParameter> getParameters(ILaunchConfiguration configuration)
Deprecated. 
Description copied from interface: Driver
Allows to retrieve all descriptions of parameters

Specified by:
getParameters in interface Driver
Parameters:
configuration - Configuration of MoDiscoWork selected
Returns:
All parameters of driver

getTypeLaunchConfig

public abstract java.lang.String getTypeLaunchConfig()
Deprecated. 
Description copied from interface: Driver
Allows to retrieve the type of launcher. The type is defines in the file "example.launch" like that :

Specified by:
getTypeLaunchConfig in interface Driver
Returns:
the type of launcher

createOneWorkParameter

public WorkParameter createOneWorkParameter(java.lang.String name,
                                            Direction direction,
                                            java.lang.String description,
                                            java.lang.Boolean required,
                                            java.lang.Class<?> type)
Deprecated. 
Allows to create one work parameter

Parameters:
name - The name of parameter
direction - The direction of parameter
description - The description of parameter
required - True if parameter is required otherwise false
type - The type of parameter
Returns:
A work parameter

createStringValue

public WorkParameterStringValue createStringValue(java.lang.String value)
Deprecated. 
Allows to create a WorkParameterStringValue

Parameters:
value - The value of WorkParameterStringValue
Returns:
A new instance of WorkParameterStringValue

createStringListValue

public WorkParameterStringListValue createStringListValue(java.util.List<java.lang.String> values)
Deprecated. 
Allows to create a WorkParameterStringListValue

Parameters:
values - The futures values of list
Returns:
A new instance of WorkParameterStringListValue

createMapValue

public WorkParameterMapValue createMapValue(java.util.Map<java.lang.String,java.lang.String> map)
Deprecated. 
Allows to create a WorkParameterMapValue

Parameters:
map - The futures values of WorkParameterMapValue
Returns:
A new instance of WorkParameterMapValue

createBooleanValue

public WorkParameterBooleanValue createBooleanValue(boolean value)
Deprecated. 
Allows to create a WorkParameterBooleanValue

Parameters:
value - The future value
Returns:
A new instance of WorkParameterBooleanValue

createValueStringList

public WorkParameterStringListValue createValueStringList(java.util.List<java.lang.String> values)
Deprecated. 
Allows to create a WorkParameterStringListValue

Parameters:
values - The futures values of WorkParameterStringListValue
Returns:
A new instance of WorkParameterStringListValue

createIntegerValue

public WorkParameterIntegerValue createIntegerValue(int value)
Deprecated. 
Allows to create a WorkParameterIntegerValue

Parameters:
value - The future value
Returns:
A new instance of WorkParameterIntegerValue