samples/apifest1/day2/stackbasedsolution/src/org/netbeans/apifest/boolcircuit/Circuit2.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 10:07:36 +0200
changeset 235 cfcf2129865f
parent 154 0fd5e9c500b9
child 244 2b19d24a755f
permissions -rw-r--r--
Fixing examples so their BEGIN starts with space
jtulach@52
     1
package org.netbeans.apifest.boolcircuit;
jtulach@52
     2
jtulach@52
     3
/**
jtulach@52
     4
 */ 
jtulach@235
     5
// BEGIN: apifest.day2.stackbasedsolution.Circuit2
jtulach@52
     6
public interface Circuit2 extends Circuit {
jtulach@154
     7
    public double evaluate (double ... input) 
jtulach@154
     8
    throws IllegalArgumentException;
jtulach@52
     9
}
jtulach@235
    10
// END: apifest.day2.stackbasedsolution.Circuit2