Package bankqueue.customer

Examples of bankqueue.customer.CustomerType


        int numNormalCustomers = 0;
        int numFastCustomers = 0;
        int numVipCustomers = 0;
        for (int i = 0; i < numTotolCustomers; ++i) {
            CustomerType type = CustomerFactory.getCustomerType(r);

            switch (type) {
            case kNormal:
                ++numNormalCustomers;
                break;
View Full Code Here

TOP

Related Classes of bankqueue.customer.CustomerType

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.