Package net.pms.dlna.virtual

Examples of net.pms.dlna.virtual.VirtualFolder.addChild()


          configuration.setDisableSubtitles(newValue);
          return newValue;
        }
      });

      vfSub.addChild(new VirtualVideoAction(Messages.getString("PMS.6"), configuration.isAutoloadExternalSubtitles()) {
        @Override
        public boolean enable() {
          boolean oldValue = configuration.isAutoloadExternalSubtitles();
          boolean newValue = !oldValue;
          configuration.setAutoloadExternalSubtitles(newValue);
View Full Code Here


          configuration.setAutoloadExternalSubtitles(newValue);
          return newValue;
        }
      });

      vfSub.addChild(new VirtualVideoAction(Messages.getString("MEncoderVideo.36"), configuration.isMencoderAssDefaultStyle()) {
        @Override
        public boolean enable() {
          boolean oldValue = configuration.isMencoderAssDefaultStyle();
          boolean newValue = !oldValue;
          configuration.setMencoderAssDefaultStyle(newValue);
View Full Code Here

      }
      for (Set set : sets)
      {
        VirtualFolder setFolder = new VirtualFolder(set.getTitle(), set.getArtworkUrl());
        for (Track track : set.getTracks()) {
          setFolder.addChild(trackToStream(track));
        }
        addChild(setFolder)
      }
    }
    this.refresh = false;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.