From: <pd...@us...> - 2015-04-23 08:49:28
|
Revision: 2226 http://sourceforge.net/p/jsbml/code/2226 Author: pdp10 Date: 2015-04-23 08:49:20 +0000 (Thu, 23 Apr 2015) Log Message: ----------- update spatial package v0.90 Added Paths: ----------- trunk/extensions/spatial/src/org/sbml/jsbml/ext/spatial/CompressionKind.java trunk/extensions/spatial/src/org/sbml/jsbml/ext/spatial/DataKind.java Added: trunk/extensions/spatial/src/org/sbml/jsbml/ext/spatial/CompressionKind.java =================================================================== --- trunk/extensions/spatial/src/org/sbml/jsbml/ext/spatial/CompressionKind.java (rev 0) +++ trunk/extensions/spatial/src/org/sbml/jsbml/ext/spatial/CompressionKind.java 2015-04-23 08:49:20 UTC (rev 2226) @@ -0,0 +1,44 @@ +/* + * $Id: CompressionKind.java 2206 2015-04-23 09:57:59Z pdp10 $ + * $URL: svn+ssh://pd...@sv.../p/jsbml/code/trunk/extensions/spatial/src/org/sbml/jsbml/ext/spatial/CompressionKind.java $ + * ---------------------------------------------------------------------------- + * This file is part of JSBML. Please visit <http://sbml.org/Software/JSBML> + * for the latest version of JSBML and more information about SBML. + * + * Copyright (C) 2009-2015 jointly by the following organizations: + * 1. The University of Tuebingen, Germany + * 2. EMBL European Bioinformatics Institute (EBML-EBI), Hinxton, UK + * 3. The California Institute of Technology, Pasadena, CA, USA + * 4. The University of California, San Diego, La Jolla, CA, USA + * 5. The Babraham Institute, Cambridge, UK + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation. A copy of the license agreement is provided + * in the file named "LICENSE.txt" included with this software distribution + * and also available online as <http://sbml.org/Software/JSBML/License>. + * ---------------------------------------------------------------------------- + */ +package org.sbml.jsbml.ext.spatial; + +/** + * This enum type was created following the specifications defined in Spatial Package v0.90. + * @author Piero Dalle Pezze + * @version $Rev$ + * @since 1.0 + * @date 23 Apr 2015 + */ +public enum CompressionKind { + /** + * If no compression is used + */ + UNCOMPRESSED, + /** + * If the deflation algorithm was used to compress the text version of the data + */ + DEFLATED, + /** + * If the base 64 algorithm was used to transform the binary form of the actual members into text + */ + BASE64; +} \ No newline at end of file Added: trunk/extensions/spatial/src/org/sbml/jsbml/ext/spatial/DataKind.java =================================================================== --- trunk/extensions/spatial/src/org/sbml/jsbml/ext/spatial/DataKind.java (rev 0) +++ trunk/extensions/spatial/src/org/sbml/jsbml/ext/spatial/DataKind.java 2015-04-23 08:49:20 UTC (rev 2226) @@ -0,0 +1,53 @@ +/* + * $Id: DataKind.java 2206 2015-04-23 09:57:59Z pdp10 $ + * $URL: svn+ssh://pd...@sv.../p/jsbml/code/trunk/extensions/spatial/src/org/sbml/jsbml/ext/spatial/DataKind.java $ + * ---------------------------------------------------------------------------- + * This file is part of JSBML. Please visit <http://sbml.org/Software/JSBML> + * for the latest version of JSBML and more information about SBML. + * + * Copyright (C) 2009-2015 jointly by the following organizations: + * 1. The University of Tuebingen, Germany + * 2. EMBL European Bioinformatics Institute (EBML-EBI), Hinxton, UK + * 3. The California Institute of Technology, Pasadena, CA, USA + * 4. The University of California, San Diego, La Jolla, CA, USA + * 5. The Babraham Institute, Cambridge, UK + * + * This library is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation. A copy of the license agreement is provided + * in the file named "LICENSE.txt" included with this software distribution + * and also available online as <http://sbml.org/Software/JSBML/License>. + * ---------------------------------------------------------------------------- + */ +package org.sbml.jsbml.ext.spatial; + + +/** + * This enum type was created following the specifications defined in Spatial Package v0.90. + * @author Piero Dalle Pezze + * @version $Rev$ + * @since 1.0 + * @date 23 Apr 2015 + */ +public enum DataKind { + /** + * To indicate 8-bit unsigned integer + */ + UINT8, + /** + * To indicate 16-bit unsigned integer + */ + UINT16, + /** + * To indicate 32-bit unsigned integer + */ + UINT32, + /** + * To indicate single-precision (32-bit) floating point values + */ + FLOAT, + /** + * To indicate double-precision (64-bit) floating point values + */ + DOUBLE; +} \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |