Package gov.aps.jca.cas
Class ProcessVariableExistanceCompletion
- java.lang.Object
-
- gov.aps.jca.Enum
-
- gov.aps.jca.cas.ProcessVariableExistanceCompletion
-
public final class ProcessVariableExistanceCompletion extends Enum
Process variable existance completion enum class.- Version:
- $Id: ProcessVariableExistanceCompletion.java,v 1.1 2006-03-06 17:16:04 msekoranja Exp $
- Author:
- Matej Sekoranja (matej.sekoranja@cosylab.com)
-
-
Field Summary
Fields Modifier and Type Field Description static ProcessVariableExistanceCompletionASYNC_COMPLETIONDeffered result (asynchronous operation),ProcessVariableExistanceCompletionCallback.processVariableExistanceTestCompleted()callback method method should be called to return completion.static ProcessVariableExistanceCompletionDOES_NOT_EXIST_HEREProcess variable does not exist.static ProcessVariableExistanceCompletionEXISTS_HEREProcess variable exists.
-
Constructor Summary
Constructors Modifier Constructor Description protectedProcessVariableExistanceCompletion(String name)Creates a new PV existance completion.
-
-
-
Field Detail
-
EXISTS_HERE
public static final ProcessVariableExistanceCompletion EXISTS_HERE
Process variable exists.
-
DOES_NOT_EXIST_HERE
public static final ProcessVariableExistanceCompletion DOES_NOT_EXIST_HERE
Process variable does not exist.
-
ASYNC_COMPLETION
public static final ProcessVariableExistanceCompletion ASYNC_COMPLETION
Deffered result (asynchronous operation),ProcessVariableExistanceCompletionCallback.processVariableExistanceTestCompleted()callback method method should be called to return completion.
-
-
Constructor Detail
-
ProcessVariableExistanceCompletion
protected ProcessVariableExistanceCompletion(String name)
Creates a new PV existance completion. Contructor isprotectedto deny creation of unsupported types.- Parameters:
name- name of the completion.
-
-