samples/apifest1/day2/pinbasedsolution/src/org/netbeans/apifest/boolcircuit/Function.java
changeset 52 4257f4cf226b
child 59 02e05defc6a0
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/apifest1/day2/pinbasedsolution/src/org/netbeans/apifest/boolcircuit/Function.java	Sat Jun 14 09:52:45 2008 +0200
     1.3 @@ -0,0 +1,19 @@
     1.4 +/*
     1.5 + * Function.java
     1.6 + *
     1.7 + * Created on 13. Ĩervenec 2006, 14:40
     1.8 + *
     1.9 + * To change this template, choose Tools | Template Manager
    1.10 + * and open the template in the editor.
    1.11 + */
    1.12 +
    1.13 +package org.netbeans.apifest.boolcircuit;
    1.14 +
    1.15 +/**
    1.16 + * An abstract transfer function of a gate.
    1.17 + * @author nenik
    1.18 + */
    1.19 +public abstract class Function {
    1.20 +    
    1.21 +    public abstract double evaluate(double input1, double input2);
    1.22 +}