001    package util.sdss;
002    
003    import java.util.List;
004    
005    /**
006     * Properties shared by all stellar objects
007     */
008    
009    public interface Star {
010    
011      /** Get a list of Line objects representing emission lines */
012      public List<Line> getEmissionLines();
013    
014      /** Get a list of Line objects representing absorption lines */
015      public List<Line> getAbsorptionLines();
016    
017    }