KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JSci > physics > particles > AntiMeson


1 package JSci.physics.particles;
2
3 import JSci.physics.quantum.QuantumParticle;
4
5 /**
6 * A class representing antimesons.
7 * @version 1.5
8 * @author Mark Hale
9 */

10 public abstract class AntiMeson extends AntiHadron {
11         /**
12         * Constructs an antimeson.
13         */

14         public AntiMeson() {}
15         /**
16         * Returns the number of 1/2 units of spin.
17         * @return 0
18         */

19         public final int spin() {return 0;}
20         /**
21         * Returns the baryon number.
22         * @return 0
23         */

24         public final int baryonQN() {return 0;}
25 }
26
27
Popular Tags