samples/apifest1/day1/inputandoperation/src/org/netbeans/apifest/boolcircuit/OperationInput.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:52:45 +0200
changeset 52 4257f4cf226b
permissions -rw-r--r--
Adding samples from API fest to the repository, including pieces of their code in the document, not just links
jtulach@52
     1
/*
jtulach@52
     2
 * OperationInput.java
jtulach@52
     3
 *
jtulach@52
     4
 * Created on July 12, 2006, 2:32 PM
jtulach@52
     5
 *
jtulach@52
     6
 * To change this template, choose Tools | Template Manager
jtulach@52
     7
 * and open the template in the editor.
jtulach@52
     8
 */
jtulach@52
     9
jtulach@52
    10
package org.netbeans.apifest.boolcircuit;
jtulach@52
    11
jtulach@52
    12
/**
jtulach@52
    13
 *
jtulach@52
    14
 */
jtulach@52
    15
final class OperationInput extends Input {
jtulach@52
    16
    private Operation operation;
jtulach@52
    17
    /** Creates a new instance of OperationInput */
jtulach@52
    18
    public OperationInput(Operation oper) {
jtulach@52
    19
        operation = oper;
jtulach@52
    20
    }
jtulach@52
    21
jtulach@52
    22
    public boolean getBooleanValue() {
jtulach@52
    23
        return operation.performBooleanOperation();
jtulach@52
    24
    }
jtulach@52
    25
    
jtulach@52
    26
}