Package org.wildstang.framework.hardware
Interface OutputFactory
- All Known Implementing Classes:
RoboRIOOutputFactory
public interface OutputFactory
Creates Output objects attached to a specified port, and of a specified type.
This interface would have been purge because it only has one implementation,
however, that implementation is in org.wildstang.hardware and we would prefer
org.wildstang.framework not import anything from there.
-
Method Summary
Modifier and TypeMethodDescriptioncreateOutput(Outputs p_output) Creates an Output from an enumeration of WsOutputs.voidinit()Any preperation should be done in this method.
-
Method Details
-
init
void init()Any preperation should be done in this method. -
createOutput
Creates an Output from an enumeration of WsOutputs.- Parameters:
p_output- An enumeration of WsOutputs.- Returns:
- A constructed Output.
-