Package org.rometools.feed.module.itunes.types

Examples of org.rometools.feed.module.itunes.types.Subcategory


                    cat.setName(category.getAttribute("text").getValue().trim());
                   
                    Element subcategory = category.getChild("category", ns);
                   
                    if (subcategory != null && subcategory.getAttribute("text") != null) {
                        Subcategory subcat = new Subcategory();
                        subcat.setName(subcategory.getAttribute("text").getValue().trim());
                        cat.setSubcategory(subcat);
                    }
                   
                    feedInfo.getCategories().add(cat);
                }
View Full Code Here

TOP

Related Classes of org.rometools.feed.module.itunes.types.Subcategory

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.