Package util.ui

Examples of util.ui.MultipleFieldReader


    if (programChanged || (maxDescLines != mDescriptionIcon.getMaximumLineCount())) {
      // (Re)set the description text
      mDescriptionIcon.setMaximumLineCount(maxDescLines);
      if (maxDescLines > 0) {
        ProgramFieldType[] infoFieldArr = mSettings.getProgramInfoFields();
        Reader infoReader = new MultipleFieldReader(program, infoFieldArr);
        try {
          mDescriptionIcon.setText(infoReader);
        }
        catch (IOException exc) {
          mLog.log(Level.WARNING, "Reading program info failed for " + program, exc);
View Full Code Here

TOP

Related Classes of util.ui.MultipleFieldReader

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.