com.ail.coretest.service
Interface TestArg

All Superinterfaces:
CommandArg, java.io.Serializable
All Known Implementing Classes:
TestArgImp, TestCommand

public interface TestArg
extends CommandArg

Version:
$Revision: 1.4 $

Method Summary
 Attribute getDetailAttribute()
           
 boolean getPostConditionFlag()
          Fetch the value of the postconditionflag argument.
 boolean getPreConditionFlag()
          Fetch the value of the preconditionflag argument.
 int getR()
          Fetch the value of the r argument.
 Version getVersionArgRet()
          Fetch the value of the version argument.
 int getX()
          Fetch the value of the x argument.
 int getY()
          Fetch the value of the y argument.
 void setDetailAttribute(Attribute attribute)
           
 void setPostConditionFlag(boolean postconditionflag)
          Set the value of the postconditionflag argument.
 void setPreConditionFlag(boolean preconditionflag)
          Set the value of the preconditionflag argument.
 void setR(int r)
          Set the value of the r argument.
 void setVersionArgRet(Version versionArgRet)
          Set the value of the version argument.
 void setX(int x)
          Set the value of the x argument.
 void setY(int y)
          Set the value of the y argument.
 
Methods inherited from interface com.ail.core.command.CommandArg
getCallersCore, setCallersCore
 

Method Detail

getVersionArgRet

Version getVersionArgRet()
Fetch the value of the version argument.

Returns:
value of version
See Also:
#setVersion

setVersionArgRet

void setVersionArgRet(Version versionArgRet)
Set the value of the version argument.

Parameters:
versionArgRet - New value for version argument.
See Also:
#getVersion

getX

int getX()
Fetch the value of the x argument. First value for adder

Returns:
value of x
See Also:
setX(int)

setX

void setX(int x)
Set the value of the x argument. First value for adder

Parameters:
x - New value for x argument.
See Also:
getX()

getY

int getY()
Fetch the value of the y argument. Second value for adder

Returns:
value of y
See Also:
setY(int)

setY

void setY(int y)
Set the value of the y argument. Second value for adder

Parameters:
y - New value for y argument.
See Also:
getY()

getR

int getR()
Fetch the value of the r argument. Result from addition

Returns:
value of r
See Also:
setR(int)

setR

void setR(int r)
Set the value of the r argument. Result from addition

Parameters:
r - New value for r argument.
See Also:
getR()

getPostConditionFlag

boolean getPostConditionFlag()
Fetch the value of the postconditionflag argument. Flag set by the pre-condition service to show that it has been run.

Returns:
value of postconditionflag
See Also:
setPostConditionFlag(boolean)

setPostConditionFlag

void setPostConditionFlag(boolean postconditionflag)
Set the value of the postconditionflag argument. Flag set by the pre-condition service to show that it has been run.

Parameters:
postconditionflag - New value for postconditionflag argument.
See Also:
getPostConditionFlag()

getPreConditionFlag

boolean getPreConditionFlag()
Fetch the value of the preconditionflag argument. Flag set by the pre condition service to show that it has been run.

Returns:
value of preconditionflag
See Also:
setPreConditionFlag(boolean)

setPreConditionFlag

void setPreConditionFlag(boolean preconditionflag)
Set the value of the preconditionflag argument. Flag set by the pre condition service to show that it has been run.

Parameters:
preconditionflag - New value for preconditionflag argument.
See Also:
getPreConditionFlag()

setDetailAttribute

void setDetailAttribute(Attribute attribute)

getDetailAttribute

Attribute getDetailAttribute()