Source of ByteGenerator.java


  1: //: com:bruceeckel:util:ByteGenerator.java
  2: // From 'Thinking in Java, 2nd ed.' by Bruce Eckel
  3: // www.BruceEckel.com. See copyright notice in CopyRight.txt.
  4: package com.bruceeckel.util;
  5: public interface ByteGenerator {
  6:   byte next();
  7: } ///:~