Package org.fourthline.cling.model.meta

Examples of org.fourthline.cling.model.meta.Icon


    /**
     * Try loading the icon specified in the properties file
     */
    private Icon loadIcon() {
      File iconFile = new File(properties.getIconPath());
      Icon icon = null;
      try {
        if (iconFile.exists() && iconFile.canRead()) {
          icon = new Icon("image/png", 48, 48, 8, iconFile);
        } else {
          log.warning("Custom icon " + properties.getIconPath() + " could not be read.");
        }
      } catch (IOException e) {
        log.warning("IO Exception trying to load icon file at " + properties.getIconPath());
View Full Code Here

TOP

Related Classes of org.fourthline.cling.model.meta.Icon

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.