KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JSci > chemistry > periodictable > AlkaliEarthMetal


1 package JSci.chemistry.periodictable;
2
3 import JSci.chemistry.Element;
4
5 /**
6 * A class representing alkali earth metals.
7 * @version 1.6
8 * @author Mark Hale
9 */

10 public final class AlkaliEarthMetal extends Element {
11         /**
12         * Constructs an alkali earth metal.
13         */

14         public AlkaliEarthMetal(String JavaDoc name,String JavaDoc symbol) {
15                 super(name,symbol);
16         }
17 }
18
19
Popular Tags