samples/apifest1/day2/inputandoperation/src/org/netbeans/apifest/boolcircuit/Input.java
changeset 52 4257f4cf226b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/samples/apifest1/day2/inputandoperation/src/org/netbeans/apifest/boolcircuit/Input.java	Sat Jun 14 09:52:45 2008 +0200
     1.3 @@ -0,0 +1,25 @@
     1.4 +/*
     1.5 + * Input.java
     1.6 + *
     1.7 + * Created on July 12, 2006, 2:20 PM
     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 + *
    1.17 + */
    1.18 +public abstract class Input {
    1.19 +
    1.20 +    Input() {
    1.21 +        
    1.22 +    }
    1.23 +    
    1.24 +    public abstract boolean getBooleanValue();
    1.25 +    
    1.26 +    public abstract double getRealValue();
    1.27 +    
    1.28 +}