samples/apifest1/day2/pinbasedsolution/src/org/netbeans/apifest/boolcircuit/Element.java
changeset 59 02e05defc6a0
parent 52 4257f4cf226b
child 132 3bc4c54f4bcc
     1.1 --- a/samples/apifest1/day2/pinbasedsolution/src/org/netbeans/apifest/boolcircuit/Element.java	Sat Jun 14 09:52:45 2008 +0200
     1.2 +++ b/samples/apifest1/day2/pinbasedsolution/src/org/netbeans/apifest/boolcircuit/Element.java	Sat Jun 14 09:52:52 2008 +0200
     1.3 @@ -96,9 +96,9 @@
     1.4          };
     1.5      }
     1.6  
     1.7 +    // BEGIN: apifest.day2.pinbasedsolution.FunctionFactory
     1.8      /**
     1.9       * Creates an Element with user-defined transfer function.
    1.10 -     *
    1.11       */
    1.12      public static Element createGate(final Element source1, final Element source2, final Function function) {
    1.13          return new Element() {
    1.14 @@ -115,5 +115,5 @@
    1.15              }
    1.16          };
    1.17      }
    1.18 -
    1.19 +    // END: apifest.day2.pinbasedsolution.FunctionFactory
    1.20  }