1 /*
2 * $Id Intensity.java $
3 *
4 */
5
6 package org.astrogrid.intensity;
7
8
9 /***
10 * abstract representation of a an intensity - implementing subclasses are
11 * for example Flux and Magnitude
12 *
13 * @author M Hill
14 */
15
16 public abstract class Intensity
17 {
18 protected Passband passband;
19 }
20
21 /*
22 $Log: Intensity.java,v $
23 Revision 1.1.1.1 2003/08/25 18:36:27 mch
24 Reimported to fit It02 source structure
25
26 Revision 1.1 2003/06/26 19:17:26 mch
27 new classes for handling passbands, etc
28
29 */