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
     1 package org.netbeans.apifest.boolcircuit;
     2 
     3 // BEGIN: apifest.day2.pinbasedsolution.Function
     4 /**
     5  * An abstract transfer function of a gate.
     6  */
     7 public abstract class Function {
     8     public abstract double evaluate(double input1, double input2);
     9 }
    10 // END: apifest.day2.pinbasedsolution.Function