Package jsky.science

Examples of jsky.science.Passband


    /**
     * Sets the Passband instance to be displayed/edited.
     **/
    public void setPassband(Passband newP) {
        Passband oldP = fBand;
        if (fBand != null) removePropertyChangeListener(this);
        fBand = newP;
        updateText();
        if (fBand != null) addPropertyChangeListener(this);
    }
View Full Code Here


        }
    }

    public void actionPerformed(ActionEvent event) {
        if (event != null && event.getActionCommand().equals(PASSBAND)) {
            Passband tempP = new Passband(fTextRange.getText());
            fBand.setLowWavelength(tempP.getLowWavelength());
            fBand.setHighWavelength(tempP.getHighWavelength());
        }
    }
View Full Code Here

TOP

Related Classes of jsky.science.Passband

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.