data_structures
[ class tree: data_structures ] [ index: data_structures ] [ all elements ]

Element index for package data_structures

[ a ] [ b ] [ c ] [ d ] [ g ] [ i ] [ m ] [ n ] [ p ] [ r ] [ s ] [ t ] [ u ] [ v ] [ _ ]

_

$____dbt
in file DatabaseEntity.class.php, variable DatabaseEntity::$____dbt
    Stores the reference to an object of a database table.
$____entity_arr
in file DatabaseEntity.class.php, variable DatabaseEntity::$____entity_arr
    Stores the references to other entities.
$____key_arr
in file DatabaseEntity.class.php, variable DatabaseEntity::$____key_arr
    Stores the key fieldnames.
$____key_object_arr
in file DatabaseEntity.class.php, variable DatabaseEntity::$____key_object_arr
    Stores the references to the objects of the key entities.
$____key_table_arr
in file DatabaseEntity.class.php, variable DatabaseEntity::$____key_table_arr
    Stores the references to the objects of the key database tables.
$____parent_obj
in file DatabaseEntity.class.php, variable DatabaseEntity::$____parent_obj
    Stores the reference to an object of a database entity.
$____relation_arr
in file DatabaseEntity.class.php, variable DatabaseEntity::$____relation_arr
    Stores the references to other entities. But with a relation name as key in the first array dimension.
$____str_where
in file DatabaseEntity.class.php, variable DatabaseEntity::$____str_where
    Stores the where-clause to generate the data of this entity.
top

a

ABSTObject
in file ABSTObject.class.php, class ABSTObject
    Class to inspect objects that are an extension of this class.
add
in file Vector.class.php, method Vector::add()
    Push one element onto the end of the intern array.
addChild
in file TreeRoot.class.php, method TreeRoot::addChild()
    Adds a childnode of type TreeNode to this object.
addEntity
in file DatabaseEntity.class.php, method DatabaseEntity::addEntity()
    Adds a weak entity.
addKeyTable
in file DatabaseEntity.class.php, method DatabaseEntity::addKeyTable()
    Adds a keytable to this object.
addMultipleEntities
in file DatabaseEntity.class.php, method DatabaseEntity::addMultipleEntities()
    Describes an "n to m"-Relation to this object.
addScaledRowToAnother
in file Matrix.class.php, method Matrix::addScaledRowToAnother()
    Scales a row virtually and adds it to another given row in this matrix.
ABSTObject.class.php
procedural page ABSTObject.class.php
top

b

buildTree
in file TreeRoot.class.php, method TreeRoot::buildTree()
    Builds a tree from a given two dimensional array.
top

c

$children
in file TreeRoot.class.php, variable TreeRoot::$children
contains
in file Vector.class.php, method Vector::contains()
    Returns true if $this->mixed (the internal array that is managed by the class Vector) contains $record else it will return false.
convertIntoReducedRowEchelonForm
in file Matrix.class.php, method Matrix::convertIntoReducedRowEchelonForm()
    Converts this matrix into a reduced row echelon form using the Gaussian elimination.
createEntitiesFromMultiTuple
in file DatabaseEntity.class.php, method DatabaseEntity::createEntitiesFromMultiTuple()
    Returns an array of this object. The objects are generated from a hurd of tuples collected from a result of a database query.
top

d

$dbl_m_arr
in file Matrix.class.php, variable Matrix::$dbl_m_arr
    The stored matrix data.
DatabaseEntity
in file DatabaseEntity.class.php, method DatabaseEntity::DatabaseEntity()
    Constructor Put in a reference to an object which is a subtype of the type ABSTDatabaseTable or a reference to an object which is a subtype of the type ABSTView.
DatabaseEntity
in file DatabaseEntity.class.php, class DatabaseEntity
    Class to generate objects from database tables.
DatabaseEntity.class.php
procedural page DatabaseEntity.class.php
delete
in file DatabaseEntity.class.php, method DatabaseEntity::delete()
    Trys to delete a dataset in the database table with values from the primary key.
deleteRecordAt
in file Vector.class.php, method Vector::deleteRecordAt()
    Removes the record at $int-index. All entrys behind the deleted record moving up by one position.
deleteRecordValue
in file Vector.class.php, method Vector::deleteRecordValue()
    Searches the first record of $value. If it is found it will be delete. All entrys behind the deleted record moving up by one position.
top

g

getCurrent
in file Vector.class.php, method Vector::getCurrent()
    Returns the value of the current pointer position.
getFirstIndexOf
in file Vector.class.php, method Vector::getFirstIndexOf()
    Returns the position of the first record that matches the value of $mixedVal.
getIdentityMatrix
in file Matrix.class.php, method Matrix::getIdentityMatrix()
    Returns an object of this class which all elements on the diagonal have the value 1 (one) and the other elements have the value 0 (zero).
getRandomRecord
in file Vector.class.php, method Vector::getRandomRecord()
    Returns a random record of this vector.
top

i

$int_cols
in file Matrix.class.php, variable Matrix::$int_cols
    The number of cols in this matrix.
$int_rows
in file Matrix.class.php, variable Matrix::$int_rows
    The number of rows in this matrix.
initiateObjectFromTuple
in file DatabaseEntity.class.php, method DatabaseEntity::initiateObjectFromTuple()
    Initiates this object by using the data of a tuple from a database result.
inputArray
in file Matrix.class.php, method Matrix::inputArray()
    Uses a arra to generate this matrix.
top

m

$mixed
in file Vector.class.php, variable Vector::$mixed
Matrix.class.php
procedural page Matrix.class.php
Matrix
in file Matrix.class.php, method Matrix::Matrix()
    Constructor
Matrix
in file Matrix.class.php, class Matrix
multiply
in file Matrix.class.php, method Matrix::multiply()
    Multiplies two matrices and returns an object of the product matrix.
top

n

next
in file Vector.class.php, method Vector::next()
    Returns the previous entry of this one who is associated with the pointer and arises the pointer by one.
top

p

$parent
in file TreeNode.class.php, variable TreeNode::$parent
prev
in file Vector.class.php, method Vector::prev()
    Returns the previous entry of this one who is associated with the pointer and abates the pointer by one.
previous
in file Vector.class.php, method Vector::previous()
    Returns the previous entry of this one who is associated with the pointer and abates the pointer by one.
printComplexData
in file ABSTObject.class.php, method ABSTObject::printComplexData()
    Prints out the more complex data by the given array.
printPrimitiveData
in file ABSTObject.class.php, method ABSTObject::printPrimitiveData()
    Prints out the primitive data by the given arrays.
printStructure
in file DatabaseEntity.class.php, method DatabaseEntity::printStructure()
    Prints out the Structure of this Object without the management data.
printStructure
in file ABSTObject.class.php, method ABSTObject::printStructure()
    Prints out the Structure of this Object.
putDatabaseFieldsIntoGetVars
in file DatabaseEntity.class.php, method DatabaseEntity::putDatabaseFieldsIntoGetVars()
    Puts the fields of this Object, that correspond with the fields of database table, into the $_GET-Array.
putDatabaseFieldsIntoPostVars
in file DatabaseEntity.class.php, method DatabaseEntity::putDatabaseFieldsIntoPostVars()
    Puts the fields of this Object, that correspond with the fields of database table, into the $_POST-Array.
putRequestValuesIntoObjectFields
in file DatabaseEntity.class.php, method DatabaseEntity::putRequestValuesIntoObjectFields()
    Puts the values of the passed kind of request variables into the fields of this object. This is useful to update a dataset with entered form data before writing it back to the database table were it come from. Use the method "replace" to to so.
top

r

replace
in file DatabaseEntity.class.php, method DatabaseEntity::replace()
    Replaces this object in the database table.
resetPointer
in file Vector.class.php, method Vector::resetPointer()
    Sets the pointer to the value zero.
top

s

same
in file ABSTObject.class.php, method ABSTObject::same()
    Checks whether the passed object reference points to this object.
sameReferences
in file ABSTObject.class.php, method ABSTObject::sameReferences()
    Compares two references whether they points to the same object
scale
in file Matrix.class.php, method Matrix::scale()
    Scales this matrix by the given value.
scaleRow
in file Matrix.class.php, method Matrix::scaleRow()
    Scales a row in this matrix. The row count begins at 1 (one)! This is an elemantary matrix row operation.
select
in file Vector.class.php, method Vector::select()
    Sets the pointer to the given value.
setParent
in file TreeNode.class.php, method TreeNode::setParent()
    Adds a childnode of type TreeNode to this object.
summate
in file Matrix.class.php, method Matrix::summate()
    Summates two matrices and returns an object of the sum matrix.
swapRows
in file Matrix.class.php, method Matrix::swapRows()
    Swaps two rows in this matrix. The row count begins at 1 (one)! This is an elemantary matrix row operation.
top

t

TreeNode.class.php
procedural page TreeNode.class.php
TreeRoot.class.php
procedural page TreeRoot.class.php
TreeNode
in file TreeNode.class.php, method TreeNode::TreeNode()
    Constructor
TreeNode
in file TreeNode.class.php, class TreeNode
TreeRoot
in file TreeRoot.class.php, method TreeRoot::TreeRoot()
    Constructor
TreeRoot
in file TreeRoot.class.php, class TreeRoot
top

u

uniqueInsert
in file Vector.class.php, method Vector::uniqueInsert()
    Fills $record in $this->mixed only if $this->mixed does not already contains it.
uniqueRecords
in file Vector.class.php, method Vector::uniqueRecords()
    Removes doubly occuring records in $this->mixed.
top

v

Vector.class.php
procedural page Vector.class.php
Vector
in file Vector.class.php, method Vector::Vector()
    Constructor
Vector
in file Vector.class.php, class Vector
top

Documentation generated on Thu, 05 Jun 2008 19:09:35 +0200 by phpDocumentor 1.4.1