Package com.meapsoft.visualizer

Examples of com.meapsoft.visualizer.SingleFeatureWaveformPanel


        {
          //create our hashmap first
          mVisualPanels = new HashMap();
         
            //instantiate these for use later on
            SingleFeaturePanel waveformPanel = new SingleFeatureWaveformPanel();
            waveformPanel.setMinimumSize(new Dimension(400, 45));
            waveformPanel.setPreferredSize(new Dimension(400,45));
            waveformPanel.setSegTickType(SingleFeaturePanel.SHORT_SEG_TICKS);

            SingleFeatureSpectrumPanel spectrumPanel = new SingleFeatureSpectrumPanel();
            spectrumPanel.setMinimumSize(new Dimension(400, 45));
            spectrumPanel.setPreferredSize(new Dimension(400,45))
            spectrumPanel.setSegTickType(SingleFeaturePanel.SHORT_SEG_TICKS);
View Full Code Here


    ////////////////////////////
    // now do GUIs for the tabs
    ////////////////////////////
   
        //create our two always-present panels
        waveformPanel = new SingleFeatureWaveformPanel();
        waveformPanel.setMinimumSize(new Dimension(400, 100));
        waveformPanel.setPreferredSize(new Dimension(400,100));

        spectrumPanel = new SingleFeatureSpectrumPanel();
        spectrumPanel.setMinimumSize(new Dimension(400, 100));
View Full Code Here

TOP

Related Classes of com.meapsoft.visualizer.SingleFeatureWaveformPanel

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.