Interface Pin

All Known Implementing Classes:
Pin_std

public interface Pin

This interface describes the services an instance of a Pin should offer.
You can read the source of this interface here.


Method Summary
 boolean getState()
          Returns the state of the pin.
 void setState(boolean state)
          Sets the state of the pin.
 void setStateDontNotify(boolean state)
          Sets the state of the pin without notifying the other component.
 

Method Detail

setState

public void setState(boolean state)
Sets the state of the pin.

setStateDontNotify

public void setStateDontNotify(boolean state)
Sets the state of the pin without notifying the other component.

getState

public boolean getState()
Returns the state of the pin.