Package net.sf.xtvdclient.xtvd.datatypes

Examples of net.sf.xtvdclient.xtvd.datatypes.ProgramGenre


              if (additional.length() > 0) {
                prog.setTextField(ProgramFieldType.ADDITIONAL_PERSONS_TYPE, additional.toString());
              }
            }

            ProgramGenre programGenre = xtvd.getGenres().get( xtvdProgram.getId() );
            if (programGenre != null) {
              StringBuilder genreStr = new StringBuilder();
              for (Genre genre : programGenre.getGenres()) {
                if (genreStr.length() > 0) {
                  genreStr.append(", ");
                }
                genreStr.append(genre.getClassValue());
              }
View Full Code Here

TOP

Related Classes of net.sf.xtvdclient.xtvd.datatypes.ProgramGenre

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.