|
From: <mh...@us...> - 2014-09-30 01:25:15
|
Revision: 21167
http://sourceforge.net/p/sbml/code/21167
Author: mhucka
Date: 2014-09-30 01:25:11 +0000 (Tue, 30 Sep 2014)
Log Message:
-----------
1. @see's have to be the last thing in method docs, or Javadoc myseriously omits them from the formatted output.
2. Trivial formatting changes.
Modified Paths:
--------------
trunk/libsbml/src/sbml/SBase.h
Modified: trunk/libsbml/src/sbml/SBase.h
===================================================================
--- trunk/libsbml/src/sbml/SBase.h 2014-09-30 00:27:59 UTC (rev 21166)
+++ trunk/libsbml/src/sbml/SBase.h 2014-09-30 01:25:11 UTC (rev 21167)
@@ -31,7 +31,7 @@
* ------------------------------------------------------------------------ -->
*
* @class SBase
- * @sbmlbrief{core} SBML's %SBase class, the base class of most SBML objects.
+ * @sbmlbrief{core} SBML's <em>%SBase</em> class, the base class of most SBML objects.
*
* Most components in SBML are derived from a single abstract base type,
* SBase. In addition to serving as the parent class for most other
@@ -2964,10 +2964,10 @@
* @return @c true if the given package is enabled within this object, @c
* false otherwise.
*
+ * @deprecated Replaced in libSBML 5.2.0 by
+ * SBase::isPackageURIEnabled(@if java String@endif).
+ *
* @see isPkgEnabled(@if java String@endif)
- *
- * @deprecated Replaced in libSBML 5.2.0 by
- * isPackageURIEnabled(@if java String@endif)
*/
bool isPkgURIEnabled(const std::string& pkgURI) const;
@@ -2983,10 +2983,10 @@
* @return @c true if the given package is enabled within this object, @c
* false otherwise.
*
+ * @deprecated Replaced in libSBML 5.2.0 by
+ * SBase::isPackageEnabled(@if java String@endif).
+ *
* @see isPkgURIEnabled(@if java String@endif)
- *
- * @deprecated Replaced in libSBML 5.2.0 by
- * isPackageEnabled(@if java String@endif)
*/
bool isPkgEnabled(const std::string& pkgName) const;
@@ -3210,10 +3210,10 @@
* Gets the namespace URI to which this element belongs to.
*
* For example, all elements that belong to SBML Level 3 Version 1 Core
- * must would have the URI "http://www.sbml.org/sbml/level3/version1/core";
+ * must would have the URI @c "http://www.sbml.org/sbml/level3/version1/core";
* all elements that belong to Layout Extension Version 1 for SBML Level 3
* Version 1 Core must would have the URI
- * "http://www.sbml.org/sbml/level3/version1/layout/version1/"
+ * @c "http://www.sbml.org/sbml/level3/version1/layout/version1/".
*
* This function first returns the URI for this element by looking into the
* SBMLNamespaces object of the document with the its package name. If not
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|