List of usage examples for java.io Externalizable interface-usage
From source file org.apache.axis2.client.Options.java
/**
* Holder for operation client options. This is used by the other classes in
* this package to configure various aspects of how a client communicates with a
* service. It exposes a number of predefined properties as part of the API
* (with specific getXXX and setXXX methods), and also allows for arbitrary
* named properties to be passed using a properties map with the property name
From source file org.apache.tapestry.engine.AbstractEngine.java
/**
* Basis for building real Tapestry applications. Immediate subclasses
* provide different strategies for managing page state and other resources
* between request cycles.
*
* Uses a shared instance of
From source file org.codehaus.groovy.grails.web.util.StreamCharBuffer.java
/**
* <p>
* StreamCharBuffer is a multipurpose in-memory buffer that can replace JDK
* in-memory buffers (StringBuffer, StringBuilder, StringWriter).
* </p>
*
From source file org.apache.sysml.runtime.compress.CompressedMatrixBlock.java
/** * Experimental version of MatrixBlock that allows a compressed internal * representation. */ public class CompressedMatrixBlock extends MatrixBlock implements Externalizable { private static final long serialVersionUID = 7319972089143154057L;
From source file ArraySet.java
class ArrayMap<K, V> extends AbstractMap<K, V> implements Map<K, V>, Cloneable, Externalizable { private static final long serialVersionUID = 1L; /** * The default initial capacity.
From source file org.chiba.xml.xforms.ChibaBean.java
/**
* This class is an implementation of a W3C XForms 1.0 conformant
* XForms processor.
*
* @author Joern Turner
* @author Ulrich Nicolas Lissé
From source file org.apache.openjpa.persistence.EntityManagerImpl.java
/**
* Implementation of {@link EntityManager} interface.
*
* @author Patrick Linskey
* @author Abe White
* @nojavadoc
From source file org.grails.buffer.StreamCharBuffer.java
/**
* <p>
* StreamCharBuffer is a multipurpose in-memory buffer that can replace JDK
* in-memory buffers (StringBuffer, StringBuilder, StringWriter).
* </p>
*
From source file org.apache.axis2.context.MessageContext.java
/**
* <p>Axis2 states are held in two information models, called description hierarchy
* and context hierarchy. Description hierarchy hold deployment configuration
* and it's values does not change unless deployment configuration change
* occurs where Context hierarchy hold run time information. Both hierarchies
* consists four levels, Global, Service Group, Operation and Message. Please
From source file org.apache.sysml.runtime.matrix.data.MatrixBlock.java
public class MatrixBlock extends MatrixValue implements CacheBlock, Externalizable { private static final long serialVersionUID = 7319972089143154056L; //sparsity nnz threshold, based on practical experiments on space consumption and performance private static final double SPARSITY_TURN_POINT = 0.4; //sparsity threshold for ultra-sparse matrix operations (40nnz in a 1kx1k block)