Package shared

Examples of shared.Planet


    public void reset_result () {
      next_result = Planet.Mercury;
    };

    public Planet result () {
      Planet symbol = next_result;
      next_result = succ(symbol);
      return symbol;
    };
View Full Code Here

TOP

Related Classes of shared.Planet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.