ALBPM Process API (PAPI)

fuego.papi
Interface TaskArgument


public interface TaskArgument

Represents an argument of an activity task. TaskArgument can be an input argument, an output argument, or an input/output argument. TaskArguments are set in Studio.


Method Summary
 String getDescription()
          Gets the argument description.
 String getJavaType()
          Gets the Java type of this argument.
 String getName()
          Gets the argument name.
 boolean isIn()
          Returns true if this argument is an input argument.
 boolean isOut()
          Returns true if this argument is an output argument.
 

Method Detail

getDescription

public String getDescription()
Gets the argument description. Note that the argument description is optional, so this may return null.

Returns:
argument description

isIn

public boolean isIn()
Returns true if this argument is an input argument. Note that arguments can be in, out, or in/out.

Returns:
true if this argument is an input argument

getJavaType

public String getJavaType()
Gets the Java type of this argument.

Returns:
Java type of this argument

getName

public String getName()
Gets the argument name. Argument names start with a lowercase letter and contain no spaces

Returns:
argument name

isOut

public boolean isOut()
Returns true if this argument is an output argument. Note that arguments can be in, out, or in/out.

Returns:
true if this argument is an output argument

ALBPM Process API (PAPI)

© Copyright 1996/2005 Fuego Inc. All Rights Reserved