001 // 002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.1-05/30/2003 05:06 AM(java_re)-fcs 003 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 004 // Any modifications to this file will be lost upon recompilation of the source schema. 005 // Generated on: 2004.10.11 at 12:13:34 EDT 006 // 007 008 009 package astronomy.data.spectra; 010 011 012 /** 013 * Java content class for RangeType complex type. 014 * <p>The following schema fragment specifies the expected content contained within this java content object. 015 * <p> 016 * <pre> 017 * <complexType name="RangeType"> 018 * <complexContent> 019 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 020 * <sequence> 021 * <element name="startwavelength" type="{}WavelengthType"/> 022 * <element name="endwavelength" type="{}WavelengthType"/> 023 * </sequence> 024 * </restriction> 025 * </complexContent> 026 * </complexType> 027 * </pre> 028 * 029 */ 030 public interface RangeType { 031 032 033 /** 034 * 035 * @return possible object is 036 * {@link astronomy.data.spectra.WavelengthType} 037 */ 038 astronomy.data.spectra.WavelengthType getStartwavelength(); 039 040 /** 041 * 042 * @param value allowed object is 043 * {@link astronomy.data.spectra.WavelengthType} 044 */ 045 void setStartwavelength(astronomy.data.spectra.WavelengthType value); 046 047 /** 048 * 049 * @return possible object is 050 * {@link astronomy.data.spectra.WavelengthType} 051 */ 052 astronomy.data.spectra.WavelengthType getEndwavelength(); 053 054 /** 055 * 056 * @param value allowed object is 057 * {@link astronomy.data.spectra.WavelengthType} 058 */ 059 void setEndwavelength(astronomy.data.spectra.WavelengthType value); 060 061 }