List of usage examples for java.io Externalizable interface-usage
From source file gnu.trove.map.custom_hash.TObjectDoubleCustomHashMap.java
/** * An open addressed Map implementation for Object keys and double values. * * @author Rob Eden */ public class TObjectDoubleCustomHashMap<K> extends TCustomObjectHash<K>
From source file org.apache.sysml.runtime.matrix.data.FrameBlock.java
@SuppressWarnings({ "rawtypes", "unchecked" }) //allow generic native arrays public class FrameBlock implements Writable, CacheBlock, Externalizable { private static final long serialVersionUID = -3993450030207130665L; public static final int BUFFER_SIZE = 1 * 1000 * 1000; //1M elements, size of default matrix block
From source file org.apache.openjpa.lib.conf.ConfigurationImpl.java
/**
* Default implementation of the {@link Configuration} interface.
* Subclasses can choose to obtain configuration
* information from JNDI, Properties, a Bean-builder, etc. This class
* provides base configuration functionality, including serialization,
* the <code>equals</code> and <code>hashCode</code> contracts, and default
From source file com.splicemachine.derby.impl.sql.execute.operations.SpliceBaseOperation.java
public abstract class SpliceBaseOperation implements SpliceOperation, ScopeNamed, Externalizable { private static final long serialVersionUID = 4l; private static Logger LOG = Logger.getLogger(SpliceBaseOperation.class); private static Logger LOG_CLOSE = Logger.getLogger(SpliceBaseOperation.class.getName() + ".close"); protected Iterator<LocatedRow> locatedRowIterator; protected Activation activation;
From source file org.codice.proxy.http.HttpProxyCamelHttpTransportServlet.java
/** * Camel HTTP servlet which can be used in Camel routes to route servlet invocations in routes. */ public class HttpProxyCamelHttpTransportServlet extends CamelServlet implements Externalizable { private static final long serialVersionUID = -1797014782158930490L;
From source file com.sentaroh.android.TextFileBrowser.ViewedFileListAdapter.java
class ViewedFileListItem implements Externalizable { public String file_path = ""; public String file_name = ""; public Fragment file_view_fragment = null; public ThreadCtrl tc_view = null; public IndexedFileReader ix_reader_view = null;
From source file com.joey.software.regionSelectionToolkit.controlers.ImageProfileTool.java
public class ImageProfileTool extends ROIControler implements Externalizable { private static final long serialVersionUID = 1L; public static int AXIS_X = 0; public static int AXIS_Y = 1;
From source file LayeredPaneDemo4.java
class InnerFrame extends JPanel implements RootPaneContainer, Externalizable { private static String IMAGE_DIR = "mdi" + java.io.File.separator; private static ImageIcon ICONIZE_BUTTON_ICON = new ImageIcon(IMAGE_DIR + "iconize.gif"); private static ImageIcon RESTORE_BUTTON_ICON = new ImageIcon(IMAGE_DIR + "restore.gif"); private static ImageIcon CLOSE_BUTTON_ICON = new ImageIcon(IMAGE_DIR + "close.gif"); private static ImageIcon MAXIMIZE_BUTTON_ICON = new ImageIcon(IMAGE_DIR + "maximize.gif");
From source file xbird.xquery.dm.instance.DocumentTableModel.java
/**
*
* <DIV lang="en"></DIV>
* <DIV lang="ja"></DIV>
*
* @author Makoto YUI (yuin405+xbird@gmail.com)
From source file SequencedHashMap.java
/**
* A map of objects whose mapping entries are sequenced based on the order in which they were added. This data structure
* has fast <I>O(1) </I> search time, deletion time, and insertion time. <p/>
* <P>
* Although this map is sequenced, it cannot implement {@link java.util.List}because of incompatible interface
* definitions. The remove methods in List and Map have different return values (see: