KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > cleanup > RemoveUnusedElements


1 package org.netbeans.test.cleanup;
2
3 import java.io.IOException JavaDoc;
4 import java.io.ObjectInputStream JavaDoc;
5 import java.io.ObjectOutputStream JavaDoc;
6
7 /**
8  * @author leon chiver
9  */

10 public class RemoveUnusedElements {
11     
12     private final static long serialVersionUID = 100l;
13     
14     private RemoveUnusedElements() {
15         // Could be singleton
16
this("", "");
17     }
18     
19     private RemoveUnusedElements(String JavaDoc s1, String JavaDoc s2) {
20     }
21
22     private RemoveUnusedElements(String JavaDoc s) {
23     }
24     
25     private void writeObject(ObjectOutputStream JavaDoc stream) throws IOException JavaDoc {
26     }
27     
28     private void readObject(ObjectInputStream JavaDoc stream) throws IOException JavaDoc, ClassNotFoundException JavaDoc {
29     }
30     
31     private void writeObject(String JavaDoc s) throws Exception JavaDoc {
32     }
33     
34     private void readObject(String JavaDoc s) {
35     }
36     
37     private String JavaDoc alpha;
38
39     
40 }
41
Popular Tags