Class XorGate

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

public class XorGate
extends BinaryGate
A class that output the xor result of its two inputs.

See Also:
BinaryGate

Constructor Index

 o XorGate()

Method Index

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

Constructors

 o XorGate
 public XorGate()

Methods

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

Overrides:
Output in class BinaryGate
See Also:
Output