Example usage for java.io ObjectOutputStream subclass-usage

List of usage examples for java.io ObjectOutputStream subclass-usage

Introduction

In this page you can find the example usage for java.io ObjectOutputStream subclass-usage.

Usage

From source file org.openengsb.core.persistence.internal.SerializableChecker.java

/**
 * Utility class that analyzes objects for non-serializable nodes. Construct, then call {@link #check(Object)} with the
 * object you want to check. When a non-serializable object is found, a {@link WicketNotSerializableException} is thrown
 * with a message that shows the trace up to the not-serializable object. The exception is thrown for the first
 * non-serializable instance it encounters, so multiple problems will not be shown.
 * <p>

From source file com.sec.ose.osi.thread.job.identify.data.IdentifyQueue.java

class AppendAllowedObjectOutputStream extends ObjectOutputStream {
    public AppendAllowedObjectOutputStream(FileOutputStream out) throws IOException {
        super(out);
    }

    @Override