01: /*
02: * Created on Mar 10, 2004
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.core.object;
08:
09: /**
10: * @author AYegorov
11: *
12: * To change the template for this generated type comment go to
13: * Window>Preferences>Java>Code Generation>Code and Comments
14: */
15: public abstract class Test {
16: static int minusOne = -1;
17:
18: /**
19: *
20: */
21: public Test() {
22: super ();
23:
24: int a = minusOne >> 31;
25:
26: Thread th = new Thread();
27:
28: }
29: }
|