samples/apifest1/day2/pinbasedsolution/src/org/netbeans/apifest/boolcircuit/Function.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:52:52 +0200
changeset 59 02e05defc6a0
parent 52 4257f4cf226b
permissions -rw-r--r--
URLs in apifest chapter replaced with code snippets
jtulach@52
     1
package org.netbeans.apifest.boolcircuit;
jtulach@52
     2
jtulach@59
     3
// BEGIN: apifest.day2.pinbasedsolution.Function
jtulach@52
     4
/**
jtulach@52
     5
 * An abstract transfer function of a gate.
jtulach@52
     6
 */
jtulach@52
     7
public abstract class Function {
jtulach@52
     8
    public abstract double evaluate(double input1, double input2);
jtulach@52
     9
}
jtulach@59
    10
// END: apifest.day2.pinbasedsolution.Function