Package edu.brown.benchmark.auctionmark.util

Examples of edu.brown.benchmark.auctionmark.util.Category


        }
        @Override
        protected int populateRow() {
            int col = 0;

            Category category = this.categories.poll();
            assert(category != null);
           
            // C_ID
            this.row[col++] = category.getCategoryID();
            // C_NAME
            this.row[col++] = category.getName();
            // C_PARENT_ID
            this.row[col++] = category.getParentCategoryID();
           
            return (col);
        }
View Full Code Here

TOP

Related Classes of edu.brown.benchmark.auctionmark.util.Category

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.