Example usage for java.io Externalizable interface-usage

List of usage examples for java.io Externalizable interface-usage

Introduction

In this page you can find the example usage for java.io Externalizable interface-usage.

Usage

From source file A.java

class A implements Externalizable {
    public A() {
        System.out.println("A Constructor");
    }

    public void writeExternal(ObjectOutput out) throws IOException {

From source file A.java

class A implements Externalizable {
    public A() {
        System.out.println("A Constructor");
    }

    public void writeExternal(ObjectOutput out) throws IOException {

From source file PersonExt.java

class PersonExt implements Externalizable {
    private String name = "Unknown";
    private String gender = "Unknown";
    private double height = Double.NaN;

    public PersonExt() {

From source file Blip3.java

public class Blip3 implements Externalizable {
    private int i;

    private String s; // No initialization

    public Blip3() {

From source file Blip1.java

class Blip1 implements Externalizable {
    public Blip1() {
        System.out.println("Blip1 Constructor");
    }

    public void writeExternal(ObjectOutput out) throws IOException {

From source file org.marketcetera.util.ws.wrappers.RemoteException.java

/**
 * A remote exception. It wraps any {@link Throwable} in a manner that
 * enables its marshalling using JAXB in the context of web service
 * faults, or for use by Java serialization in other contexts; this is
 * done by serializing the throwable and marshalling it using a {@link
 * SerWrapper}. On the server side, this class sets the wrapped

From source file com.enonic.cms.core.portal.instruction.PostProcessInstruction.java

/**
 * Created by rmy - Date: Nov 18, 2009
 */
public abstract class PostProcessInstruction implements Externalizable {

    private final PostProcessInstructionType type;

From source file com.enonic.cms.domain.portal.instruction.PostProcessInstruction.java

/**
 * Created by rmy - Date: Nov 18, 2009
 */
public abstract class PostProcessInstruction implements Externalizable {

    private final PostProcessInstructionType type;

From source file Clock.java

public class Clock extends JButton implements Customizer, Externalizable, Runnable {

    protected PropertyChangeSupport propertyChangeSupport;

    protected boolean isDigital = false;

From source file gov.nih.nci.caarray.external.v1_0.data.AbstractDataColumn.java

/**
 * An AbstractDataColumn represents a list of values for a particular measurement within a hybridization data set. 
 * There are subclasses of this class for different value types (e.g. integers, floats, booleans, etc). 
 * 
 * @author dkokotov
 */