Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > b8be6964f00c511f00fed788c030da8c > files > 34

jdiff-manual-1.0.10-2.0.5mdv2010.0.i586.rpm

package com.acme.spextra;

import java.lang.*;

/**
 * This class is the new class for add-ons to SuperProduct.
 */
public class AddOns {

    /** Default constructor. */
    public AddOns() {
    }

    /** 
     * Switch SuperProduct to hyperdrive.
     *
     * @param warpSpeed How fast to go.
     * @return If successful, return true.
     */
    public boolean hyperdrive(int warpSpeed) {
        if (warpSpeed < 8)
            return true;
        else
            return false; // "The engine's canna handle it, cap'n!"
    }

}