Source for file Element.php
Documentation is available at Element.php
// +----------------------------------------------------------------------+
// +----------------------------------------------------------------------+
// | Copyright (c) 1997-2003 The PHP Group |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the PHP license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available at through the world-wide-web at |
// | http://www.php.net/license/2_02.txt. |
// | If you did not receive a copy of the PHP license and are unable to |
// | obtain it through the world-wide-web, please send a note to |
// | license@php.net so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// | Authors: Jesus M. Castagnetto <jmcastagnetto@php.net> |
// +----------------------------------------------------------------------+
* Utility class that defines a chemical element object
* @author Jesus M. Castagnetto <jmcastagnetto@php.net>
* @package Science_Chemistry
* Element's symbol, one or two characters, case sensitive
* Element's atomic number
* Element's atomic weight in a.m.u (atomic mass units)
* Element's melting point, with comments
* Element's boiling point, with comments
* Constructor for the class
* @param string $sym element symbol
* @param string $name element name
* @param integer $num atomic number
* @param float $wgt atomic weight
* @param string $mp melting point (with comments)
* @param string $bp boiling point (with comments)
* @param string $fam family
* @return object Science_Chemistry_Element
* Checks if an object is a Science_Chemistry_Element instance
* @param object Science_Chemistry_Element $obj
} // end of Science_Chemistry_Element
// vim: expandtab: ts=4: sw=4
Documentation generated on Mon, 11 Mar 2019 15:48:16 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|