bpatel@233: /* ohair@554: * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved. bpatel@233: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. bpatel@233: * bpatel@233: * This code is free software; you can redistribute it and/or modify it bpatel@233: * under the terms of the GNU General Public License version 2 only, as ohair@554: * published by the Free Software Foundation. Oracle designates this bpatel@233: * particular file as subject to the "Classpath" exception as provided ohair@554: * by Oracle in the LICENSE file that accompanied this code. bpatel@233: * bpatel@233: * This code is distributed in the hope that it will be useful, but WITHOUT bpatel@233: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or bpatel@233: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License bpatel@233: * version 2 for more details (a copy is included in the LICENSE file that bpatel@233: * accompanied this code). bpatel@233: * bpatel@233: * You should have received a copy of the GNU General Public License version bpatel@233: * 2 along with this work; if not, write to the Free Software Foundation, bpatel@233: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. bpatel@233: * ohair@554: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA ohair@554: * or visit www.oracle.com if you need additional information or have any ohair@554: * questions. bpatel@233: */ bpatel@233: bpatel@233: package pkg1; bpatel@233: bpatel@233: import java.io.Serializable; bpatel@233: bpatel@233: /** bpatel@233: * Test for Serializable bpatel@233: * bpatel@233: * @author Bhavesh Patel bpatel@233: * @deprecated This class is no longer used. bpatel@233: */ bpatel@233: @Deprecated bpatel@233: public abstract class C5 implements Serializable { bpatel@233: bpatel@233: /** bpatel@233: * The name for this class. bpatel@233: * bpatel@233: * @serial bpatel@233: */ bpatel@233: private String name; bpatel@233: bpatel@233: /** bpatel@233: * @serial bpatel@233: */ bpatel@233: private int publicKey; bpatel@233: bpatel@233: /** bpatel@233: * Constructor for serialization only. bpatel@233: */ bpatel@233: protected C5() { bpatel@233: bpatel@233: } bpatel@233: bpatel@233: /** bpatel@233: * Prints general information. bpatel@233: * bpatel@233: */ bpatel@233: public void printInfo() { bpatel@233: bpatel@233: } bpatel@233: }