Class AndGate

java.lang.Object
   |
   +----Gate
           |
           +----BinaryGate
                   |
                   +----AndGate

public class AndGate
extends BinaryGate
A class that output the and result of its two inputs.

See Also:
BinaryGate

Constructor Index

 o AndGate()

Method Index

 o Output()
This method return the and result of its two inputs.

Constructors

 o AndGate
 public AndGate()

Methods

 o Output
 public boolean Output()
This method return the and result of its two inputs.

Overrides:
Output in class BinaryGate
See Also:
Output