samples/apifest1/day2/stackbasedsolution/src/org/netbeans/apifest/boolcircuit/Circuit2.java
changeset 154 0fd5e9c500b9
parent 153 b5cbb797ec0a
child 235 cfcf2129865f
     1.1 --- a/samples/apifest1/day2/stackbasedsolution/src/org/netbeans/apifest/boolcircuit/Circuit2.java	Sat Jun 14 09:58:08 2008 +0200
     1.2 +++ b/samples/apifest1/day2/stackbasedsolution/src/org/netbeans/apifest/boolcircuit/Circuit2.java	Sat Jun 14 09:58:11 2008 +0200
     1.3 @@ -1,22 +1,3 @@
     1.4 -/*
     1.5 - * The contents of this file are subject to the terms of the Common Development
     1.6 - * and Distribution License (the License). You may not use this file except in
     1.7 - * compliance with the License.
     1.8 - *
     1.9 - * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
    1.10 - * or http://www.netbeans.org/cddl.txt.
    1.11 - *
    1.12 - * When distributing Covered Code, include this CDDL Header Notice in each file
    1.13 - * and include the License file at http://www.netbeans.org/cddl.txt.
    1.14 - * If applicable, add the following below the CDDL Header, with the fields
    1.15 - * enclosed by brackets [] replaced by your own identifying information:
    1.16 - * "Portions Copyrighted [year] [name of copyright owner]"
    1.17 - *
    1.18 - * The Original Software is NetBeans. The Initial Developer of the Original
    1.19 - * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
    1.20 - * Microsystems, Inc. All Rights Reserved.
    1.21 - */
    1.22 -
    1.23  package org.netbeans.apifest.boolcircuit;
    1.24  
    1.25  import java.util.Stack;
    1.26 @@ -25,6 +6,7 @@
    1.27   */ 
    1.28  //BEGIN: apifest.day2.stackbasedsolution.Circuit2
    1.29  public interface Circuit2 extends Circuit {
    1.30 -    public double evaluate (double ... input) throws IllegalArgumentException;
    1.31 +    public double evaluate (double ... input) 
    1.32 +    throws IllegalArgumentException;
    1.33  }
    1.34  //END: apifest.day2.stackbasedsolution.Circuit2