Skip to main content
summaryrefslogtreecommitdiffstats
blob: e178f78722a4a5df8ca69a10ca09133807ed0576 (plain) (blame)
1
2
3
4
5
6
7
8
// test003 
package p1.p2.test;		
		
import java.io.Serializable;		
import java.io.IOException;		
		
public abstract class A extends java.lang.Object implements Runnable, Cloneable, Serializable {		
}

Back to the top