1 package org.netbeans.test.cleanup; 2 3 import java.io.IOException ; 4 import java.io.ObjectInputStream ; 5 import java.io.ObjectOutputStream ; 6 7 10 public class RemoveUnusedElements { 11 12 private final static long serialVersionUID = 100l; 13 14 private RemoveUnusedElements() { 15 this("", ""); 17 } 18 19 private RemoveUnusedElements(String s1, String s2) { 20 } 21 22 private RemoveUnusedElements(String s) { 23 } 24 25 private void writeObject(ObjectOutputStream stream) throws IOException { 26 } 27 28 private void readObject(ObjectInputStream stream) throws IOException , ClassNotFoundException { 29 } 30 31 private void writeObject(String s) throws Exception { 32 } 33 34 private void readObject(String s) { 35 } 36 37 private String alpha; 38 39 40 } 41 | Popular Tags |