Peak.java :  » XML » xtandem-parser » de » proteinms » xtandemparser » interfaces » Java Open Source

Java Open Source » XML » xtandem parser 
xtandem parser » de » proteinms » xtandemparser » interfaces » Peak.java
package de.proteinms.xtandemparser.interfaces;

/**
 * This class represents the Peak interface.
 *
 * @author Thilo Muth
 */
public interface Peak {

    /**
     * This method returns the m/z.
     *
     * @return double
     */
    public double getMZ();

    /**
     * This method returns the intensity.
     *
     * @return double
     */
    public double getIntensity();

    /**
     * Returns charge information for this peak.
     * 
     * @return int
     */
    public int getCharge();
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.