Examples of ContentDescriptor


Examples of javax.media.protocol.ContentDescriptor

          return "Couldn't find tracks in processor";
      }
      // Set the output content descriptor to RAW_RTP
      // This will limit the supported formats reported from
      // Track.getSupportedFormats to only valid RTP formats.
      ContentDescriptor cd = new ContentDescriptor(ContentDescriptor.RAW_RTP);
     
      processor.setContentDescriptor(cd);

      Format supported[];
      Format chosen;
View Full Code Here

Examples of org.noos.xing.mydoggy.plaf.ui.content.ContentDescriptor

                    content.setFlashing(getBoolean(context, contentElement, "flashing", false));

                    // Load "minimizedState" sub element if any
                    Element minimizedStateElem = getElement(contentElement, "minimizedState");
                    if (minimizedStateElem != null && content.isMinimized()) {
                        ContentDescriptor contentDescriptor = (ContentDescriptor) toolWindowManager.getDockableDescriptor(content.getId());
                        contentDescriptor.setAnchor(getToolWindowAnchor(context, minimizedStateElem, "anchor", ToolWindowAnchor.LEFT),
                                getInteger(context, minimizedStateElem, "anchorIndex", -1)
                        );
                    }

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.