Package com.philip.journal.home.bean

Examples of com.philip.journal.home.bean.Category


                while (branch.getParent() != null && branch.getParent().getBranchId() != 0) { // NOPMD by r39
                    categoryDesc.insert(0, branch.getParent().getName() + " > ");
                    branch = branch.getParent();
                }
                retval.add(new Category(nextBranch.getBranchId(), categoryDesc.toString())); // NOPMD by r39
            }
        }
        return retval;
    }
View Full Code Here

TOP

Related Classes of com.philip.journal.home.bean.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.