[Jspro-cvs] jsPro chemica.js,1.6,1.7
Brought to you by:
wigleys
|
From: <wi...@us...> - 2003-09-11 13:34:38
|
Update of /cvsroot/jspro/jsPro
In directory sc8-pr-cvs1:/tmp/cvs-serv31399
Modified Files:
chemica.js
Log Message:
changed methods to be in alphabetical order
Index: chemica.js
===================================================================
RCS file: /cvsroot/jspro/jsPro/chemica.js,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** chemica.js 12 Aug 2003 06:46:29 -0000 1.6
--- chemica.js 11 Sep 2003 13:34:35 -0000 1.7
***************
*** 41,44 ****
--- 41,45 ----
* Returns the Atomic Number of this chemical element.
*
+ * @summary get Atomic Number
* @author Stuart Wigley
* @author Randolph Fielding
***************
*** 56,72 ****
/**
! * Returns the Chemical Symbol of this chemical element.
*
* @author Stuart Wigley
* @author Randolph Fielding
* @version 1.1, 06/30/03
! * @interface <code>Chemica.getSymbol()</code>
* @requires <code>Chemica()</code>
! * @return the Chemical Symbol of this chemical element
* @see <code>Chemica()</code>
*/
! Chemica.prototype.getSymbol = function() {
! return this.SYMBOL;
}
--- 57,74 ----
/**
! * Returns the Atomic Weight of this chemical element.
*
+ * @summary get Atomic Weight
* @author Stuart Wigley
* @author Randolph Fielding
* @version 1.1, 06/30/03
! * @interface <code>Chemica.getAtomicWt()</code>
* @requires <code>Chemica()</code>
! * @return the Atomic Weight of this chemical element
* @see <code>Chemica()</code>
*/
! Chemica.prototype.getAtomicWt = function() {
! return this.ATOMIC_WEIGHT;
}
***************
*** 75,78 ****
--- 77,81 ----
* Returns the Chemical Name of this chemical element.
*
+ * @summary get Name
* @author Stuart Wigley
* @author Randolph Fielding
***************
*** 90,105 ****
/**
! * Returns the Atomic Weight of this chemical element.
*
* @author Stuart Wigley
* @author Randolph Fielding
* @version 1.1, 06/30/03
! * @interface <code>Chemica.getAtomicWt()</code>
* @requires <code>Chemica()</code>
! * @return the Atomic Weight of this chemical element
* @see <code>Chemica()</code>
*/
! Chemica.prototype.getAtomicWt = function() {
! return this.ATOMIC_WEIGHT;
}
--- 93,109 ----
/**
! * Returns the Chemical Symbol of this chemical element.
*
+ * @summary get Symbol
* @author Stuart Wigley
* @author Randolph Fielding
* @version 1.1, 06/30/03
! * @interface <code>Chemica.getSymbol()</code>
* @requires <code>Chemica()</code>
! * @return the Chemical Symbol of this chemical element
* @see <code>Chemica()</code>
*/
! Chemica.prototype.getSymbol = function() {
! return this.SYMBOL;
}
|