From db603547a2a35d84c164454b9ae5addd5eb4858c Mon Sep 17 00:00:00 2001
From: "Roman S. Borschel" <roman.borschel@googlemail.com>
Date: Tue, 13 Apr 2010 00:49:19 +0200
Subject: [PATCH 01/15] Added failing test for DDC-388. Naming refactorings and
 comment cleanups.

---
 lib/Doctrine/ORM/Configuration.php            |  2 -
 lib/Doctrine/ORM/Mapping/ClassMetadata.php    | 10 +--
 lib/Doctrine/ORM/NativeQuery.php              |  4 --
 lib/Doctrine/ORM/OptimisticLockException.php  |  7 +--
 .../AbstractCollectionPersister.php           | 34 +++++-----
 .../AbstractEntityInheritancePersister.php    |  2 -
 lib/Doctrine/ORM/Query.php                    | 26 ++++----
 lib/Doctrine/ORM/Query/SqlWalker.php          |  3 +-
 lib/Doctrine/ORM/QueryBuilder.php             | 63 +++++++++----------
 .../Mapping/BasicInheritanceMappingTest.php   | 14 +++++
 10 files changed, 78 insertions(+), 87 deletions(-)

diff --git a/lib/Doctrine/ORM/Configuration.php b/lib/Doctrine/ORM/Configuration.php
index 6d5964c8c..4e7a37e5c 100644
--- a/lib/Doctrine/ORM/Configuration.php
+++ b/lib/Doctrine/ORM/Configuration.php
@@ -1,7 +1,5 @@
 <?php
 /*
- *  $Id$
- *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadata.php b/lib/Doctrine/ORM/Mapping/ClassMetadata.php
index aa16d865d..7ae8857fa 100644
--- a/lib/Doctrine/ORM/Mapping/ClassMetadata.php
+++ b/lib/Doctrine/ORM/Mapping/ClassMetadata.php
@@ -339,11 +339,11 @@ class ClassMetadata extends ClassMetadataInfo
         $this->reflClass = new ReflectionClass($this->name);
         
         foreach ($this->fieldMappings as $field => $mapping) {
-	        if (isset($mapping['inherited'])) {
-	            $reflField = new ReflectionProperty($mapping['inherited'], $field);
-	        } else {
-	            $reflField = $this->reflClass->getProperty($field);
-	        }
+            if (isset($mapping['inherited'])) {
+                $reflField = new ReflectionProperty($mapping['inherited'], $field);
+            } else {
+                $reflField = $this->reflClass->getProperty($field);
+            }
             $reflField->setAccessible(true);
             $this->reflFields[$field] = $reflField;
         }
diff --git a/lib/Doctrine/ORM/NativeQuery.php b/lib/Doctrine/ORM/NativeQuery.php
index c3e0b43bb..2c0a5ab28 100644
--- a/lib/Doctrine/ORM/NativeQuery.php
+++ b/lib/Doctrine/ORM/NativeQuery.php
@@ -1,7 +1,5 @@
 <?php 
 /*
- *  $Id$
- *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -21,8 +19,6 @@
 
 namespace Doctrine\ORM;
 
-use Doctrine\DBAL\Types\Type;
-
 /**
  * Represents a native SQL query.
  *
diff --git a/lib/Doctrine/ORM/OptimisticLockException.php b/lib/Doctrine/ORM/OptimisticLockException.php
index d937daed4..796a7588c 100644
--- a/lib/Doctrine/ORM/OptimisticLockException.php
+++ b/lib/Doctrine/ORM/OptimisticLockException.php
@@ -24,11 +24,8 @@ namespace Doctrine\ORM;
 /**
  * OptimisticLockException
  *
- * @author      Roman Borschel <roman@code-factory.org>
- * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
- * @link        www.doctrine-project.org
- * @since       2.0
- * @version     $Revision$
+ * @author Roman Borschel <roman@code-factory.org>
+ * @since 2.0
  */
 class OptimisticLockException extends ORMException
 {
diff --git a/lib/Doctrine/ORM/Persisters/AbstractCollectionPersister.php b/lib/Doctrine/ORM/Persisters/AbstractCollectionPersister.php
index cf8c7ff8d..b3195f13d 100644
--- a/lib/Doctrine/ORM/Persisters/AbstractCollectionPersister.php
+++ b/lib/Doctrine/ORM/Persisters/AbstractCollectionPersister.php
@@ -1,7 +1,5 @@
 <?php
 /*
- *  $Id$
- *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -33,19 +31,17 @@ use Doctrine\ORM\EntityManager,
 abstract class AbstractCollectionPersister
 {
     /**
-     *
      * @var EntityManager
      */
     protected $_em;
 
     /**
-     * @var \Doctrine\DBAL\Connection
+     * @var Doctrine\DBAL\Connection
      */
     protected $_conn;
 
     /**
-     *
-     * @var \Doctrine\ORM\UnitOfWork
+     * @var Doctrine\ORM\UnitOfWork
      */
     protected $_uow;
 
@@ -71,8 +67,8 @@ abstract class AbstractCollectionPersister
         if ( ! $coll->getMapping()->isOwningSide) {
             return; // ignore inverse side
         }
-        $sql = $this->_getDeleteSql($coll);
-        $this->_conn->executeUpdate($sql, $this->_getDeleteSqlParameters($coll));
+        $sql = $this->_getDeleteSQL($coll);
+        $this->_conn->executeUpdate($sql, $this->_getDeleteSQLParameters($coll));
     }
 
     /**
@@ -80,7 +76,7 @@ abstract class AbstractCollectionPersister
      *
      * @param PersistentCollection $coll
      */
-    abstract protected function _getDeleteSql(PersistentCollection $coll);
+    abstract protected function _getDeleteSQL(PersistentCollection $coll);
 
     /**
      * Gets the SQL parameters for the corresponding SQL statement to delete
@@ -88,7 +84,7 @@ abstract class AbstractCollectionPersister
      *
      * @param PersistentCollection $coll
      */
-    abstract protected function _getDeleteSqlParameters(PersistentCollection $coll);
+    abstract protected function _getDeleteSQLParameters(PersistentCollection $coll);
 
     /**
      * Updates the given collection, synchronizing it's state with the database
@@ -109,9 +105,9 @@ abstract class AbstractCollectionPersister
     public function deleteRows(PersistentCollection $coll)
     {        
         $deleteDiff = $coll->getDeleteDiff();
-        $sql = $this->_getDeleteRowSql($coll);
+        $sql = $this->_getDeleteRowSQL($coll);
         foreach ($deleteDiff as $element) {
-            $this->_conn->executeUpdate($sql, $this->_getDeleteRowSqlParameters($coll, $element));
+            $this->_conn->executeUpdate($sql, $this->_getDeleteRowSQLParameters($coll, $element));
         }
     }
     
@@ -121,9 +117,9 @@ abstract class AbstractCollectionPersister
     public function insertRows(PersistentCollection $coll)
     {
         $insertDiff = $coll->getInsertDiff();
-        $sql = $this->_getInsertRowSql($coll);
+        $sql = $this->_getInsertRowSQL($coll);
         foreach ($insertDiff as $element) {
-            $this->_conn->executeUpdate($sql, $this->_getInsertRowSqlParameters($coll, $element));
+            $this->_conn->executeUpdate($sql, $this->_getInsertRowSQLParameters($coll, $element));
         }
     }
 
@@ -132,7 +128,7 @@ abstract class AbstractCollectionPersister
      * 
      * @param PersistentCollection $coll
      */
-    abstract protected function _getDeleteRowSql(PersistentCollection $coll);
+    abstract protected function _getDeleteRowSQL(PersistentCollection $coll);
 
     /**
      * Gets the SQL parameters for the corresponding SQL statement to delete the given
@@ -141,21 +137,21 @@ abstract class AbstractCollectionPersister
      * @param PersistentCollection $coll
      * @param mixed $element
      */
-    abstract protected function _getDeleteRowSqlParameters(PersistentCollection $coll, $element);
+    abstract protected function _getDeleteRowSQLParameters(PersistentCollection $coll, $element);
 
     /**
      * Gets the SQL statement used for updating a row in the collection.
      *
      * @param PersistentCollection $coll
      */
-    abstract protected function _getUpdateRowSql(PersistentCollection $coll);
+    abstract protected function _getUpdateRowSQL(PersistentCollection $coll);
 
     /**
      * Gets the SQL statement used for inserting a row in the collection.
      *
      * @param PersistentCollection $coll
      */
-    abstract protected function _getInsertRowSql(PersistentCollection $coll);
+    abstract protected function _getInsertRowSQL(PersistentCollection $coll);
 
     /**
      * Gets the SQL parameters for the corresponding SQL statement to insert the given
@@ -164,5 +160,5 @@ abstract class AbstractCollectionPersister
      * @param PersistentCollection $coll
      * @param mixed $element
      */
-    abstract protected function _getInsertRowSqlParameters(PersistentCollection $coll, $element);
+    abstract protected function _getInsertRowSQLParameters(PersistentCollection $coll, $element);
 }
\ No newline at end of file
diff --git a/lib/Doctrine/ORM/Persisters/AbstractEntityInheritancePersister.php b/lib/Doctrine/ORM/Persisters/AbstractEntityInheritancePersister.php
index f5469ceb5..cf37b771e 100644
--- a/lib/Doctrine/ORM/Persisters/AbstractEntityInheritancePersister.php
+++ b/lib/Doctrine/ORM/Persisters/AbstractEntityInheritancePersister.php
@@ -1,7 +1,5 @@
 <?php
 /*
- *  $Id$
- *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
diff --git a/lib/Doctrine/ORM/Query.php b/lib/Doctrine/ORM/Query.php
index 7bbb663f4..b49f9489f 100644
--- a/lib/Doctrine/ORM/Query.php
+++ b/lib/Doctrine/ORM/Query.php
@@ -1,7 +1,5 @@
 <?php
 /*
- *  $Id$
- *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -27,13 +25,10 @@ use Doctrine\ORM\Query\Parser,
 /**
  * A Query object represents a DQL query.
  *
- * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
- * @link        www.doctrine-project.org
- * @since       1.0
- * @version     $Revision: 3938 $
- * @author      Guilherme Blanco <guilhermeblanco@hotmail.com>
- * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
- * @author      Roman Borschel <roman@code-factory.org>
+ * @since   1.0
+ * @author  Guilherme Blanco <guilhermeblanco@hotmail.com>
+ * @author  Konsta Vesterinen <kvesteri@cc.hut.fi>
+ * @author  Roman Borschel <roman@code-factory.org>
  */
 final class Query extends AbstractQuery
 {
@@ -62,6 +57,7 @@ final class Query extends AbstractQuery
      * partial objects.
      * 
      * @var string
+     * @todo Rename: HINT_OPTIMIZE
      */
     const HINT_FORCE_PARTIAL_LOAD = 'doctrine.forcePartialLoad';
     /**
@@ -149,10 +145,10 @@ final class Query extends AbstractQuery
      *
      * @param Doctrine\ORM\EntityManager $entityManager
      */
-    public function __construct(EntityManager $entityManager)
+    /*public function __construct(EntityManager $entityManager)
     {
         parent::__construct($entityManager);
-    }
+    }*/
 
     /**
      * Gets the SQL query/queries that correspond to this DQL query.
@@ -162,7 +158,7 @@ final class Query extends AbstractQuery
      */
     public function getSQL()
     {
-        return $this->_parse()->getSqlExecutor()->getSqlStatements();
+        return $this->_parse()->getSQLExecutor()->getSQLStatements();
     }
 
     /**
@@ -366,7 +362,7 @@ final class Query extends AbstractQuery
      * @param string $dqlQuery DQL Query
      * @return Doctrine\ORM\AbstractQuery
      */
-    public function setDql($dqlQuery)
+    public function setDQL($dqlQuery)
     {
         if ($dqlQuery !== null) {
             $this->_dql = $dqlQuery;
@@ -380,7 +376,7 @@ final class Query extends AbstractQuery
      *
      * @return string DQL query
      */
-    public function getDql()
+    public function getDQL()
     {
         return $this->_dql;
     }
@@ -408,7 +404,7 @@ final class Query extends AbstractQuery
      */
     public function contains($dql)
     {
-        return stripos($this->getDql(), $dql) === false ? false : true;
+        return stripos($this->getDQL(), $dql) === false ? false : true;
     }
     
     /**
diff --git a/lib/Doctrine/ORM/Query/SqlWalker.php b/lib/Doctrine/ORM/Query/SqlWalker.php
index d16d9ff60..49d13d38d 100644
--- a/lib/Doctrine/ORM/Query/SqlWalker.php
+++ b/lib/Doctrine/ORM/Query/SqlWalker.php
@@ -432,7 +432,7 @@ class SqlWalker implements TreeWalker
             $class = $this->_em->getClassMetadata($class->fieldMappings[$fieldName]['inherited']);
         }
 
-        return $this->getSqlTableAlias($class->table['name'], $identificationVariable);
+        return $this->getSQLTableAlias($class->table['name'], $identificationVariable);
     }
 
     /**
@@ -789,6 +789,7 @@ class SqlWalker implements TreeWalker
             $sql .= ' AND ' . $discrSql;
         }
 
+        //FIXME: these should either be nested or all forced to be left joins (DDC-XXX)
         if ($targetClass->isInheritanceTypeJoined()) {
             $sql .= $this->_generateClassTableInheritanceJoins($targetClass, $joinedDqlAlias);
         }
diff --git a/lib/Doctrine/ORM/QueryBuilder.php b/lib/Doctrine/ORM/QueryBuilder.php
index 8cdc0b354..fcfe873d8 100644
--- a/lib/Doctrine/ORM/QueryBuilder.php
+++ b/lib/Doctrine/ORM/QueryBuilder.php
@@ -168,7 +168,7 @@ class QueryBuilder
      *
      * @return string The DQL string
      */
-    public function getDql()
+    public function getDQL()
     {
         if ($this->_dql !== null && $this->_state === self::STATE_CLEAN) {
             return $this->_dql;
@@ -178,16 +178,16 @@ class QueryBuilder
 
         switch ($this->_type) {
             case self::DELETE:
-                $dql = $this->_getDqlForDelete();
+                $dql = $this->_getDQLForDelete();
                 break;
 
             case self::UPDATE:
-                $dql = $this->_getDqlForUpdate();
+                $dql = $this->_getDQLForUpdate();
                 break;
 
             case self::SELECT:
             default:
-                $dql = $this->_getDqlForSelect();
+                $dql = $this->_getDQLForSelect();
                 break;
         }
 
@@ -211,7 +211,7 @@ class QueryBuilder
      */
     public function getQuery()
     {
-        return $this->_em->createQuery($this->getDql())
+        return $this->_em->createQuery($this->getDQL())
                 ->setParameters($this->_params)
                 ->setFirstResult($this->_firstResult)
                 ->setMaxResults($this->_maxResults);
@@ -613,7 +613,7 @@ class QueryBuilder
      */
     public function andWhere($where)
     {
-        $where = $this->getDqlPart('where');
+        $where = $this->getDQLPart('where');
         $args = func_get_args();
         
         if ($where instanceof Expr\Andx) {
@@ -744,7 +744,7 @@ class QueryBuilder
             array_unshift($args, $having);
             $having = new Expr\Orx($args);
         }
-        
+
         return $this->add('having', $having);
     }
 
@@ -779,7 +779,7 @@ class QueryBuilder
      * @param string $queryPartName
      * @return mixed $queryPart
      */
-    public function getDqlPart($queryPartName)
+    public function getDQLPart($queryPartName)
     {
         return $this->_dqlParts[$queryPartName];
     }
@@ -789,43 +789,43 @@ class QueryBuilder
      *
      * @return array $dqlParts
      */
-    public function getDqlParts()
+    public function getDQLParts()
     {
         return $this->_dqlParts;
     }
 
-    private function _getDqlForDelete()
+    private function _getDQLForDelete()
     {
          return 'DELETE'
-              . $this->_getReducedDqlQueryPart('from', array('pre' => ' ', 'separator' => ', '))
-              . $this->_getReducedDqlQueryPart('where', array('pre' => ' WHERE '))
-              . $this->_getReducedDqlQueryPart('orderBy', array('pre' => ' ORDER BY ', 'separator' => ', '));
+              . $this->_getReducedDQLQueryPart('from', array('pre' => ' ', 'separator' => ', '))
+              . $this->_getReducedDQLQueryPart('where', array('pre' => ' WHERE '))
+              . $this->_getReducedDQLQueryPart('orderBy', array('pre' => ' ORDER BY ', 'separator' => ', '));
     }
 
-    private function _getDqlForUpdate()
+    private function _getDQLForUpdate()
     {
          return 'UPDATE'
-              . $this->_getReducedDqlQueryPart('from', array('pre' => ' ', 'separator' => ', '))
-              . $this->_getReducedDqlQueryPart('set', array('pre' => ' SET ', 'separator' => ', '))
-              . $this->_getReducedDqlQueryPart('where', array('pre' => ' WHERE '))
-              . $this->_getReducedDqlQueryPart('orderBy', array('pre' => ' ORDER BY ', 'separator' => ', '));
+              . $this->_getReducedDQLQueryPart('from', array('pre' => ' ', 'separator' => ', '))
+              . $this->_getReducedDQLQueryPart('set', array('pre' => ' SET ', 'separator' => ', '))
+              . $this->_getReducedDQLQueryPart('where', array('pre' => ' WHERE '))
+              . $this->_getReducedDQLQueryPart('orderBy', array('pre' => ' ORDER BY ', 'separator' => ', '));
     }
 
-    private function _getDqlForSelect()
+    private function _getDQLForSelect()
     {
          return 'SELECT' 
-              . $this->_getReducedDqlQueryPart('select', array('pre' => ' ', 'separator' => ', '))
-              . $this->_getReducedDqlQueryPart('from', array('pre' => ' FROM ', 'separator' => ', '))
-              . $this->_getReducedDqlQueryPart('join', array('pre' => ' ', 'separator' => ' '))
-              . $this->_getReducedDqlQueryPart('where', array('pre' => ' WHERE '))
-              . $this->_getReducedDqlQueryPart('groupBy', array('pre' => ' GROUP BY ', 'separator' => ', '))
-              . $this->_getReducedDqlQueryPart('having', array('pre' => ' HAVING '))
-              . $this->_getReducedDqlQueryPart('orderBy', array('pre' => ' ORDER BY ', 'separator' => ', '));
+              . $this->_getReducedDQLQueryPart('select', array('pre' => ' ', 'separator' => ', '))
+              . $this->_getReducedDQLQueryPart('from', array('pre' => ' FROM ', 'separator' => ', '))
+              . $this->_getReducedDQLQueryPart('join', array('pre' => ' ', 'separator' => ' '))
+              . $this->_getReducedDQLQueryPart('where', array('pre' => ' WHERE '))
+              . $this->_getReducedDQLQueryPart('groupBy', array('pre' => ' GROUP BY ', 'separator' => ', '))
+              . $this->_getReducedDQLQueryPart('having', array('pre' => ' HAVING '))
+              . $this->_getReducedDQLQueryPart('orderBy', array('pre' => ' ORDER BY ', 'separator' => ', '));
     }
 
-    private function _getReducedDqlQueryPart($queryPartName, $options = array())
+    private function _getReducedDQLQueryPart($queryPartName, $options = array())
     {
-        $queryPart = $this->getDqlPart($queryPartName);
+        $queryPart = $this->getDQLPart($queryPartName);
         
         if (empty($queryPart)) {
             return (isset($options['empty']) ? $options['empty'] : '');
@@ -838,11 +838,6 @@ class QueryBuilder
 
     public function __toString()
     {
-        return $this->getDql();
+        return $this->getDQL();
     }
-
-    /*public function __clone()
-    {
-        $this->_q = clone $this->_q;
-    }*/
 }
\ No newline at end of file
diff --git a/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php b/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php
index c123a556d..e7c3bbfb8 100644
--- a/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php
+++ b/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php
@@ -51,6 +51,20 @@ class BasicInheritanceMappingTest extends \Doctrine\Tests\OrmTestCase
         $this->assertTrue(empty($class->inheritedAssociationFields));
         $this->assertTrue(isset($class->associationMappings['mappedRelated1']));
     }
+
+    /**
+     * @group DDC-388
+     */
+    public function testSerializationWithPrivateFieldsFromMappedSuperclass()
+    {
+
+        $class = $this->_factory->getMetadataFor(__NAMESPACE__ . '\\EntitySubClass2');
+
+        $class2 = unserialize(serialize($class));
+
+        $this->assertTrue(isset($class2->reflFields['mapped1']));
+        $this->assertTrue(isset($class2->reflFields['mapped2']));
+    }
 }
 
 class TransientBaseClass {

From 5cfe9e1d94d567a8cfed542cadfe5a0bf6852494 Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Tue, 13 Apr 2010 18:20:41 -0400
Subject: [PATCH 02/15] Introducing DisconnectedClassMetadataFactory that will
 replace the need for ClassMetadataReader

---
 .../ORM/Mapping/ClassMetadataFactory.php      | 29 +++++----
 .../Command/GenerateEntitiesCommand.php       |  6 +-
 .../DisconnectedClassMetadataFactory.php      | 59 +++++++++++++++++++
 3 files changed, 80 insertions(+), 14 deletions(-)
 create mode 100644 lib/Doctrine/ORM/Tools/DisconnectedClassMetadataFactory.php

diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php b/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
index 99df4ccfd..d7de28c05 100644
--- a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
+++ b/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
@@ -191,6 +191,20 @@ class ClassMetadataFactory
         $this->_loadedMetadata[$className] = $class;
     }
     
+    protected function _getParentClasses($name)
+    {
+        // Collect parent classes, ignoring transient (not-mapped) classes.
+        //TODO: Evaluate whether we can use class_parents() here.
+        $parentClass = $name;
+        $parentClasses = array();
+        while ($parentClass = get_parent_class($parentClass)) {
+            if ( ! $this->_driver->isTransient($parentClass)) {
+                $parentClasses[] = $parentClass;
+            }
+        }
+        return array_reverse($parentClasses);
+    }
+    
     /**
      * Loads the metadata of the class in question and all it's ancestors whose metadata
      * is still not loaded.
@@ -205,17 +219,8 @@ class ClassMetadataFactory
         }
         
         $loaded = array();
-
-        // Collect parent classes, ignoring transient (not-mapped) classes.
-        //TODO: Evaluate whether we can use class_parents() here.
-        $parentClass = $name;
-        $parentClasses = array();
-        while ($parentClass = get_parent_class($parentClass)) {
-            if ( ! $this->_driver->isTransient($parentClass)) {
-                $parentClasses[] = $parentClass;
-            }
-        }
-        $parentClasses = array_reverse($parentClasses);
+        
+        $parentClasses = $this->_getParentClasses($name);
         $parentClasses[] = $name;
 
         // Move down the hierarchy of parent classes, starting from the topmost class
@@ -354,7 +359,7 @@ class ClassMetadataFactory
      *
      * @param Doctrine\ORM\Mapping\ClassMetadata $class
      */
-    private function _completeIdGeneratorMapping(ClassMetadata $class)
+    private function _completeIdGeneratorMapping(ClassMetadataInfo $class)
     {
         $idGenType = $class->generatorType;
         if ($idGenType == ClassMetadata::GENERATOR_TYPE_AUTO) {
diff --git a/lib/Doctrine/ORM/Tools/Console/Command/GenerateEntitiesCommand.php b/lib/Doctrine/ORM/Tools/Console/Command/GenerateEntitiesCommand.php
index 119a08c1b..ccb29cf14 100644
--- a/lib/Doctrine/ORM/Tools/Console/Command/GenerateEntitiesCommand.php
+++ b/lib/Doctrine/ORM/Tools/Console/Command/GenerateEntitiesCommand.php
@@ -25,7 +25,8 @@ use Symfony\Components\Console\Input\InputArgument,
     Symfony\Components\Console\Input\InputOption,
     Symfony\Components\Console,
     Doctrine\ORM\Tools\Console\MetadataFilter,
-    Doctrine\ORM\Tools\EntityGenerator;
+    Doctrine\ORM\Tools\EntityGenerator,
+    Doctrine\ORM\Tools\DisconnectedClassMetadataFactory;
 
 /**
  * Command to generate entity classes and method stubs from your mapping information.
@@ -95,7 +96,8 @@ EOT
     {
         $em = $this->getHelper('em')->getEntityManager();
         
-        $metadatas = $em->getMetadataFactory()->getAllMetadata();
+        $cmf = new DisconnectedClassMetadataFactory($em);
+        $metadatas = $cmf->getAllMetadata();
         $metadatas = MetadataFilter::filter($metadatas, $input->getOption('filter'));
         
         // Process destination directory
diff --git a/lib/Doctrine/ORM/Tools/DisconnectedClassMetadataFactory.php b/lib/Doctrine/ORM/Tools/DisconnectedClassMetadataFactory.php
new file mode 100644
index 000000000..1bfb6de3a
--- /dev/null
+++ b/lib/Doctrine/ORM/Tools/DisconnectedClassMetadataFactory.php
@@ -0,0 +1,59 @@
+<?php
+/*
+ *  $Id$
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * This software consists of voluntary contributions made by many individuals
+ * and is licensed under the LGPL. For more information, see
+ * <http://www.doctrine-project.org>.
+ */
+
+namespace Doctrine\ORM\Tools;
+
+use Doctrine\ORM\Mapping\ClassMetadataFactory;
+use Doctrine\ORM\Mapping\ClassMetadataInfo;
+
+/**
+ * The ClassMetadataFactory is used to create ClassMetadataInfo objects
+ * that do not require the entity class actually exist. This allows us to 
+ * load some mapping information and use it to do things like generate code
+ * from the mapping information.
+ *
+ * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
+ * @link    www.doctrine-project.org
+ * @since   2.0
+ * @version $Revision$
+ * @author  Benjamin Eberlei <kontakt@beberlei.de>
+ * @author  Guilherme Blanco <guilhermeblanco@hotmail.com>
+ * @author  Jonathan Wage <jonwage@gmail.com>
+ * @author  Roman Borschel <roman@code-factory.org>
+ */
+class DisconnectedClassMetadataFactory extends ClassMetadataFactory
+{
+    /**
+     * @override
+     */
+    protected function _newClassMetadataInstance($className)
+    {
+        return new ClassMetadataInfo($className);
+    }
+
+    /**
+     * @override
+     */
+    protected function _getParentClasses($name)
+    {
+        return array();
+    }
+}
\ No newline at end of file

From 45969840f0db36da151d8e0796d9cf0a58c2561f Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Tue, 13 Apr 2010 18:22:08 -0400
Subject: [PATCH 03/15] Fixing class description

---
 lib/Doctrine/ORM/Tools/DisconnectedClassMetadataFactory.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/Doctrine/ORM/Tools/DisconnectedClassMetadataFactory.php b/lib/Doctrine/ORM/Tools/DisconnectedClassMetadataFactory.php
index 1bfb6de3a..4957b2c94 100644
--- a/lib/Doctrine/ORM/Tools/DisconnectedClassMetadataFactory.php
+++ b/lib/Doctrine/ORM/Tools/DisconnectedClassMetadataFactory.php
@@ -25,7 +25,7 @@ use Doctrine\ORM\Mapping\ClassMetadataFactory;
 use Doctrine\ORM\Mapping\ClassMetadataInfo;
 
 /**
- * The ClassMetadataFactory is used to create ClassMetadataInfo objects
+ * The DisconnectedClassMetadataFactory is used to create ClassMetadataInfo objects
  * that do not require the entity class actually exist. This allows us to 
  * load some mapping information and use it to do things like generate code
  * from the mapping information.

From 44e656dc0affc28e400a13adcbdedd49587b0b3b Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Tue, 13 Apr 2010 18:24:48 -0400
Subject: [PATCH 04/15] Adding description to _getParentClasses()

---
 lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php b/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
index d7de28c05..ba71288c2 100644
--- a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
+++ b/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
@@ -191,6 +191,12 @@ class ClassMetadataFactory
         $this->_loadedMetadata[$className] = $class;
     }
     
+    /**
+     * Get array of parent classes for the given entity class
+     *
+     * @param string $name
+     * @return array $parentClasses
+     */
     protected function _getParentClasses($name)
     {
         // Collect parent classes, ignoring transient (not-mapped) classes.

From bce7ebfcc30288bb56d6b961ea0e222ffcea082c Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Tue, 13 Apr 2010 18:58:43 -0400
Subject: [PATCH 05/15] Fixing convert-mapping task to use the
 DisconnectedClassMetdataFactory

---
 .../ORM/Tools/Console/Command/ConvertMappingCommand.php    | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/lib/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php b/lib/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php
index 89a6a55d5..c350ca045 100644
--- a/lib/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php
+++ b/lib/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php
@@ -25,7 +25,9 @@ use Symfony\Components\Console\Input\InputArgument,
     Symfony\Components\Console\Input\InputOption,
     Symfony\Components\Console,
     Doctrine\ORM\Tools\Console\MetadataFilter,
-    Doctrine\ORM\Tools\Export\ClassMetadataExporter;
+    Doctrine\ORM\Tools\Export\ClassMetadataExporter,
+    Doctrine\ORM\Tools\EntityGenerator,
+    Doctrine\ORM\Tools\DisconnectedClassMetadataFactory;
 
 /**
  * Command to convert your mapping information between the various formats.
@@ -94,7 +96,8 @@ EOT
             );
         }
 
-        $metadatas = $em->getMetadataFactory()->getAllMetadata();
+        $cmf = new DisconnectedClassMetadataFactory($em);
+        $metadatas = $cmf->getAllMetadata();
         $metadatas = MetadataFilter::filter($metadatas, $input->getOption('filter'));
 
         // Process destination directory

From 4106002344d2878ce77915aa07c742bc29942887 Mon Sep 17 00:00:00 2001
From: "Roman S. Borschel" <roman.borschel@googlemail.com>
Date: Wed, 14 Apr 2010 10:46:35 +0200
Subject: [PATCH 06/15] Small refactorings.

---
 lib/Doctrine/ORM/AbstractQuery.php            |  4 ++--
 .../ORM/Mapping/ClassMetadataFactory.php      | 23 ++++++++-----------
 2 files changed, 12 insertions(+), 15 deletions(-)

diff --git a/lib/Doctrine/ORM/AbstractQuery.php b/lib/Doctrine/ORM/AbstractQuery.php
index b872e9845..5acf82d0b 100644
--- a/lib/Doctrine/ORM/AbstractQuery.php
+++ b/lib/Doctrine/ORM/AbstractQuery.php
@@ -410,12 +410,12 @@ abstract class AbstractQuery
                 throw new NonUniqueResultException;
             }
             return array_shift($result);
-        } else if (is_object($result)) {
+        }/* else if (is_object($result)) {
             if (count($result) > 1) {
                 throw new NonUniqueResultException;
             }
             return $result->first();
-        }
+        }*/
 
         return $result;
     }
diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php b/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
index 99df4ccfd..13ca40840 100644
--- a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
+++ b/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
@@ -203,19 +203,16 @@ class ClassMetadataFactory
         if ( ! $this->_initialized) {
             $this->_initialize();
         }
-        
+
         $loaded = array();
 
         // Collect parent classes, ignoring transient (not-mapped) classes.
-        //TODO: Evaluate whether we can use class_parents() here.
-        $parentClass = $name;
         $parentClasses = array();
-        while ($parentClass = get_parent_class($parentClass)) {
+        foreach (array_reverse(class_parents($name)) as $parentClass) {
             if ( ! $this->_driver->isTransient($parentClass)) {
                 $parentClasses[] = $parentClass;
             }
         }
-        $parentClasses = array_reverse($parentClasses);
         $parentClasses[] = $name;
 
         // Move down the hierarchy of parent classes, starting from the topmost class
@@ -231,7 +228,7 @@ class ClassMetadataFactory
             }
 
             $class = $this->_newClassMetadataInstance($className);
-            
+
             if ($parent) {
                 $class->setInheritanceType($parent->inheritanceType);
                 $class->setDiscriminatorColumn($parent->discriminatorColumn);
@@ -262,8 +259,8 @@ class ClassMetadataFactory
                 } else if ($parent->isIdGeneratorTable()) {
                     $class->getTableGeneratorDefinition($parent->tableGeneratorDefinition);
                 }
-                if ($generatorType = $parent->generatorType) {
-                    $class->setIdGeneratorType($generatorType);
+                if ($parent->generatorType) {
+                    $class->setIdGeneratorType($parent->generatorType);
                 }
                 if ($parent->idGenerator) {
                     $class->setIdGenerator($parent->idGenerator);
@@ -282,18 +279,18 @@ class ClassMetadataFactory
                 $eventArgs = new \Doctrine\ORM\Event\LoadClassMetadataEventArgs($class);
                 $this->_evm->dispatchEvent(Events::loadClassMetadata, $eventArgs);
             }
-            
+
             $this->_loadedMetadata[$className] = $class;
-            
+
             $parent = $class;
-            
+
             if ( ! $class->isMappedSuperclass) {
                 array_unshift($visited, $className);
             }
-            
+
             $loaded[] = $className;
         }
-        
+
         return $loaded;
     }
 

From ceb05e85efa5105ec1ba30e86ce1bc27fe853ba4 Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Wed, 14 Apr 2010 10:31:50 -0400
Subject: [PATCH 07/15] Removing ClassMetadataReader

---
 .../ORM/Tools/ClassMetadataReader.php         | 287 ------------------
 .../ORM/Tools/ConvertDoctrine1Schema.php      |   2 +-
 .../Tools/Export/ClassMetadataExporter.php    |  69 +----
 .../Tools/Export/Driver/AbstractExporter.php  |  14 +-
 .../ORM/Functional/DatabaseDriverTest.php     |  18 +-
 .../ORM/Tools/ConvertDoctrine1SchemaTest.php  |  59 ++--
 .../AbstractClassMetadataExporterTest.php     | 267 ++++++++--------
 7 files changed, 201 insertions(+), 515 deletions(-)
 delete mode 100644 lib/Doctrine/ORM/Tools/ClassMetadataReader.php

diff --git a/lib/Doctrine/ORM/Tools/ClassMetadataReader.php b/lib/Doctrine/ORM/Tools/ClassMetadataReader.php
deleted file mode 100644
index 5d8cd8e8b..000000000
--- a/lib/Doctrine/ORM/Tools/ClassMetadataReader.php
+++ /dev/null
@@ -1,287 +0,0 @@
-<?php
-/*
- *  $Id$
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * This software consists of voluntary contributions made by many individuals
- * and is licensed under the LGPL. For more information, see
- * <http://www.doctrine-project.org>.
- */
-
-namespace Doctrine\ORM\Tools;
-
-use Doctrine\ORM\Mapping\ClassMetadataInfo,
-    Doctrine\ORM\Mapping\ClassMetadata,
-    Doctrine\ORM\Mapping\MappingException,
-    Doctrine\ORM\Mapping\Driver\Driver,
-    Doctrine\ORM\Mapping\Driver\AnnotationDriver,
-    Doctrine\ORM\EntityManager,
-    Doctrine\ORM\Tools\Export\ExportException;
-
-/**
- * Class to read metadata mapping information from multiple sources into an array
- * of ClassMetadataInfo instances.
- *
- * The difference between this class and the ClassMetadataFactory is that this
- * is just a tool for reading in the mapping information from files without 
- * having it bound to the actual ORM and the mapping information referenced by 
- * the EntityManager. This allows us to read any source of mapping information
- * and return a single array of aggregated ClassMetadataInfo instances.
- *
- * These arrays are used for exporting the mapping information to the supported
- * mapping drivers, generating entities, generating repositories, etc.
- *
- * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
- * @link    www.doctrine-project.org
- * @since   2.0
- * @version $Revision$
- * @author  Benjamin Eberlei <kontakt@beberlei.de>
- * @author  Guilherme Blanco <guilhermeblanco@hotmail.com>
- * @author  Jonathan Wage <jonwage@gmail.com>
- * @author  Roman Borschel <roman@code-factory.org>
- */
-class ClassMetadataReader
-{
-    private static $_mappingDrivers = array(
-        'annotation' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
-        'yaml' => 'Doctrine\ORM\Mapping\Driver\YamlDriver',
-        'yml' => 'Doctrine\ORM\Mapping\Driver\YamlDriver',
-        'xml'  => 'Doctrine\ORM\Mapping\Driver\XmlDriver',
-        'php' => 'Doctrine\ORM\Mapping\Driver\PhpDriver',
-        'database' => 'Doctrine\ORM\Mapping\Driver\DatabaseDriver'
-    );
-
-    private $_mappingSources = array();
-    private $_em;
-
-    /**
-     * Register a new mapping driver class under a specified name
-     *
-     * @param string $name
-     * @param string $class
-     */
-    public static function registerMappingDriver($name, $class)
-    {
-        self::$_mappingDrivers[$name] = $class;
-    }
-
-    /**
-     * Optionally set the EntityManager instance to get the AnnotationDriver
-     * from instead of creating a new instance of the AnnotationDriver
-     *
-     * @param EntityManager $em
-     * @return void
-     */
-    public function setEntityManager(EntityManager $em)
-    {
-        $this->_em = $em;
-    }
-
-    /**
-     * Get an array of ClassMetadataInfo instances for all the configured mapping
-     * directories. Reads the mapping directories and populates ClassMetadataInfo
-     * instances.
-     *
-     * If you specify $autoload = true then this method will return ClassMetadata
-     * instances instead of ClassMetadataInfo instances. Keep in mind that if you
-     * specify it to autoload and it doesn't find the class your autoloader may 
-     * throw an error.
-     *
-     * @param bool $autoload Whether or to try and autoload the classes
-     * @return array $classes
-     */
-    public function getMetadatas($autoload = false)
-    {
-        $classes = array();
-
-        foreach ($this->_mappingSources as $d) {
-            list($source, $driver) = $d;
-
-            $allClasses = $driver->getAllClassNames();
-
-            foreach ($allClasses as $className) {
-                if (class_exists($className, $autoload)) {
-                    $metadata = new ClassMetadata($className);
-                } else {
-                    $metadata = new ClassMetadataInfo($className);
-                }
-
-                $driver->loadMetadataForClass($className, $metadata);
-
-                if ( ! $metadata->isMappedSuperclass) {
-                    $classes[$metadata->name] = $metadata;
-                }
-            }
-        }
-
-        return $classes;
-    }
-
-    /**
-     * Add a new mapping directory to the array of directories to convert and export
-     * to another format
-     *
-     * @param string $source   The source for the mapping
-     * @param string $type  The type of mapping files (yml, xml, etc.)
-     * @return void
-     */
-    public function addMappingSource($source, $type = null)
-    {
-        if ($type === null) {
-            $type = $this->_determineSourceType($source);
-        }
-
-        if ( ! isset(self::$_mappingDrivers[$type])) {
-            throw ExportException::invalidMappingDriverType($type);
-        }
-
-        $source = $this->_getSourceByType($type, $source);
-        $driver = $this->_getMappingDriver($type, $source);
-        $this->_mappingSources[] = array($source, $driver);
-    }
-
-    /**
-     * Get an instance of a mapping driver
-     *
-     * @param string $type   The type of mapping driver (yaml, xml, annotation, etc.)
-     * @param string $source The source for the driver
-     * @return AbstractDriver $driver
-     */
-    private function _getMappingDriver($type, $source = null)
-    {
-        if ($source instanceof \Doctrine\ORM\Mapping\Driver\Driver) {
-            return $source;
-        }
-
-        if ( ! isset(self::$_mappingDrivers[$type])) {
-            return false;
-        }
-
-        $class = self::$_mappingDrivers[$type];
-
-        if (is_subclass_of($class, 'Doctrine\ORM\Mapping\Driver\AbstractFileDriver')) {
-            if (is_null($source)) {
-                throw MappingException::fileMappingDriversRequireConfiguredDirectoryPath();
-            }
-
-            $driver = new $class($source);
-        } else if ($class == 'Doctrine\ORM\Mapping\Driver\AnnotationDriver') {
-            $reader = new \Doctrine\Common\Annotations\AnnotationReader(new \Doctrine\Common\Cache\ArrayCache);
-            $reader->setDefaultAnnotationNamespace('Doctrine\ORM\Mapping\\');
-
-            $driver = new \Doctrine\ORM\Mapping\Driver\AnnotationDriver($reader, $source);
-        } else {
-            $driver = new $class($source);
-        }
-
-        return $driver;
-    }
-
-    private function _determineSourceType($source)
-    {
-        if ($source instanceof \Doctrine\ORM\Mapping\Driver\Driver) {
-            $type = array_search(get_class($source), self::$_mappingDrivers);
-            return $type;
-        // If the --from=<VALUE> is a directory lets determine if it is
-        // annotations, yaml, xml, etc.
-        } else if (is_dir($source)) {
-            $source = realpath($source);
-
-            // Find the files in the directory
-            $files = glob($source . '/*.*');
-            
-            if ( ! $files) {
-                throw new \InvalidArgumentException(
-                    sprintf('No mapping files found in "%s"', $source)
-                );
-            }
-
-            // Get the contents of the first file
-            $contents = file_get_contents($files[0]);
-
-            // Check if it has a class definition in it for annotations
-            if (preg_match("/class (.*)/", $contents)) {
-                return 'annotation';
-            // Otherwise lets determine the type based on the extension of the 
-            // first file in the directory (yml, xml, etc)
-            } else {
-                $info = pathinfo($files[0]);
-
-                return $info['extension'];
-            }
-        // Nothing special for database
-        } else if ($source == 'database') {
-            return 'database';
-        }
-    }
-
-    private function _getSourceByType($type, $source)
-    {
-        // If --from==database then the source is an instance of SchemaManager
-        // for the current EntityManager
-        if ($type == 'database') {
-            if ($source instanceof \Doctrine\ORM\Mapping\Driver\DatabaseDriver) {
-                return $source;
-            } else if ($this->_em) {
-                return $this->_em->getConnection()->getSchemaManager();
-            }
-        // If source is annotation then lets try and find the existing annotation
-        // driver for the source instead of re-creating a new instance
-        } else if ($type == 'annotation') {
-            if ($this->_em) {
-                $metadataDriverImpl = $this->_em->getConfiguration()->getMetadataDriverImpl();
-                // Find the annotation driver in the chain of drivers
-                if ($metadataDriverImpl instanceof DriverChain) {
-                    foreach ($metadataDriverImpl->getDrivers() as $namespace => $driver) {
-                        if ($this->_isAnnotationDriverForPath($driver, $source)) {
-                            return $driver;
-                        }
-                    }
-                } else if ($this->_isAnnotationDriverForPath($metadataDriverImpl, $source)) {
-                    return $metadataDriverImpl;
-                } else if ($metadataDriverImpl instanceof AnnotationDriver) {
-                    $metadataDriverImpl->addPaths(array($source));
-                    return $metadataDriverImpl;
-                } else {
-                    return $source;
-                }
-            } else {
-                return $source;
-            }
-        } else {
-            return $source;
-        }
-    }
-
-    /**
-     * Check to see if the given metadata driver is the annotation driver for the
-     * given directory path
-     *
-     * @param Driver $driver
-     * @param string $path 
-     * @return boolean
-     */
-    private function _isAnnotationDriverForPath(Driver $driver, $path)
-    {
-        if ( ! $driver instanceof AnnotationDriver) {
-            return false;
-        }
-
-        if (in_array(realpath($path), $driver->getPaths())) {
-            return true;
-        } else {
-            return false;
-        }
-    }
-}
\ No newline at end of file
diff --git a/lib/Doctrine/ORM/Tools/ConvertDoctrine1Schema.php b/lib/Doctrine/ORM/Tools/ConvertDoctrine1Schema.php
index b559913a4..a1fd97bb1 100644
--- a/lib/Doctrine/ORM/Tools/ConvertDoctrine1Schema.php
+++ b/lib/Doctrine/ORM/Tools/ConvertDoctrine1Schema.php
@@ -62,7 +62,7 @@ class ConvertDoctrine1Schema
      *
      * @return array $metadatas  An array of ClassMetadataInfo instances
      */
-    public function getMetadatas()
+    public function getMetadata()
     {
         $schema = array();
         foreach ($this->_from as $path) {
diff --git a/lib/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php b/lib/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php
index e93f77e35..c86b9113e 100644
--- a/lib/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php
+++ b/lib/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php
@@ -22,29 +22,13 @@
 
 namespace Doctrine\ORM\Tools\Export;
 
-use Doctrine\ORM\Tools\ClassMetadataReader,
-    Doctrine\ORM\Tools\Export\ExportException,
+use Doctrine\ORM\Tools\Export\ExportException,
     Doctrine\ORM\EntityManager;
 
 /**
  * Class used for converting your mapping information between the
  * supported formats: yaml, xml, and php/annotation.
  *
- *     [php]
- *     // Unify all your mapping information which is written in php, xml, yml
- *     // and convert it to a single set of yaml files.
- *
- *     $cme = new Doctrine\ORM\Tools\Export\ClassMetadataExporter();
- *     $cme->addMappingSource(__DIR__ . '/Entities');
- *     $cme->addMappingSource(__DIR__ . '/xml');
- *     $cme->addMappingSource(__DIR__ . '/yaml');
- *
- *     $exporter = $cme->getExporter('yaml');
- *     $exporter->setOutputDir(__DIR__ . '/new_yaml');
- *
- *     $exporter->setMetadatas($cme->getMetadatas());
- *     $exporter->export();
- *
  * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
  * @link    www.doctrine-project.org
  * @since   2.0
@@ -61,11 +45,6 @@ class ClassMetadataExporter
         'annotation' => 'Doctrine\ORM\Tools\Export\Driver\AnnotationExporter'
     );
 
-    public function __construct()
-    {
-        $this->_reader = new ClassMetadataReader();
-    }
-
     /**
      * Register a new exporter driver class under a specified name
      *
@@ -77,18 +56,6 @@ class ClassMetadataExporter
         self::$_exporterDrivers[$name] = $class;
     }
 
-    /**
-     * Optionally set the EntityManager instance to get the AnnotationDriver
-     * from instead of creating a new instance of the AnnotationDriver
-     *
-     * @param EntityManager $em
-     * @return void
-     */
-    public function setEntityManager(EntityManager $em)
-    {
-        $this->_reader->setEntityManager($em);
-    }
-
     /**
      * Get a exporter driver instance
      *
@@ -96,7 +63,7 @@ class ClassMetadataExporter
      * @param string $source    The directory where the exporter will export to
      * @return AbstractExporter $exporter
      */
-    public function getExporter($type, $source = null)
+    public function getExporter($type, $dest)
     {
         if ( ! isset(self::$_exporterDrivers[$type])) {
             throw ExportException::invalidExporterDriverType($type);
@@ -104,36 +71,6 @@ class ClassMetadataExporter
 
         $class = self::$_exporterDrivers[$type];
 
-        return new $class($source);
-    }
-
-    /**
-     * Add a new mapping directory to the array of directories to convert and export
-     * to another format
-     *
-     *     [php]
-     *     $cme = new Doctrine\ORM\Tools\Export\ClassMetadataExporter();
-     *     $cme->addMappingSource(__DIR__ . '/yaml');
-     *     $cme->addMappingSource($schemaManager);
-     *
-     * @param string $source   The source for the mapping files
-     * @param string $type  The type of mapping files (yml, xml, etc.)
-     * @return void
-     */
-    public function addMappingSource($source, $type = null)
-    {
-        $this->_reader->addMappingSource($source, $type);
-    }
-
-    /**
-     * Get an array of ClassMetadataInfo instances for all the configured mapping
-     * directories. Reads the mapping directories and populates ClassMetadataInfo
-     * instances.
-     *
-     * @return array $classes
-     */
-    public function getMetadatas()
-    {
-        return $this->_reader->getMetadatas();
+        return new $class($dest);
     }
 }
\ No newline at end of file
diff --git a/lib/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php b/lib/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php
index 70b70c557..983d0f69d 100644
--- a/lib/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php
+++ b/lib/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php
@@ -36,7 +36,7 @@ use Doctrine\ORM\Mapping\ClassMetadataInfo;
  */
 abstract class AbstractExporter
 {
-    protected $_metadatas = array();
+    protected $_metadata = array();
     protected $_outputDir;
     protected $_extension;
 
@@ -57,12 +57,12 @@ abstract class AbstractExporter
     /**
      * Set the array of ClassMetadataInfo instances to export
      *
-     * @param array $metadatas 
+     * @param array $metadata 
      * @return void
      */
-    public function setMetadatas(array $metadatas)
+    public function setMetadata(array $metadata)
     {
-        $this->_metadatas = $metadatas;
+        $this->_metadata = $metadata;
     }
 
     /**
@@ -79,7 +79,7 @@ abstract class AbstractExporter
      * Set the directory to output the mapping files to
      *
      *     [php]
-     *     $exporter = new YamlExporter($metadatas);
+     *     $exporter = new YamlExporter($metadata);
      *     $exporter->setOutputDir(__DIR__ . '/yaml');
      *     $exporter->export();
      *
@@ -103,7 +103,7 @@ abstract class AbstractExporter
             mkdir($this->_outputDir, 0777, true);
         }
 
-        foreach ($this->_metadatas as $metadata) {
+        foreach ($this->_metadata as $metadata) {
             $output = $this->exportClassMetadata($metadata);
             $path = $this->_generateOutputPath($metadata);
             $dir = dirname($path);
@@ -129,7 +129,7 @@ abstract class AbstractExporter
      * Set the directory to output the mapping files to
      *
      *     [php]
-     *     $exporter = new YamlExporter($metadatas, __DIR__ . '/yaml');
+     *     $exporter = new YamlExporter($metadata, __DIR__ . '/yaml');
      *     $exporter->setExtension('.yml');
      *     $exporter->export();
      *
diff --git a/tests/Doctrine/Tests/ORM/Functional/DatabaseDriverTest.php b/tests/Doctrine/Tests/ORM/Functional/DatabaseDriverTest.php
index 6b963c098..ccd59a7ed 100644
--- a/tests/Doctrine/Tests/ORM/Functional/DatabaseDriverTest.php
+++ b/tests/Doctrine/Tests/ORM/Functional/DatabaseDriverTest.php
@@ -4,7 +4,7 @@ namespace Doctrine\Tests\ORM\Functional;
 
 require_once __DIR__ . '/../../TestInit.php';
 
-use Doctrine\ORM\Tools\ClassMetadataReader;
+use Doctrine\ORM\Mapping\ClassMetadataInfo;
 
 class DatabaseDriverTest extends \Doctrine\Tests\OrmFunctionalTestCase
 {
@@ -80,7 +80,6 @@ class DatabaseDriverTest extends \Doctrine\Tests\OrmFunctionalTestCase
         $this->assertType('Doctrine\ORM\Mapping\OneToOneMapping', $metadata->associationMappings['bar']);
     }
 
-
     /**
      *
      * @param  string $className
@@ -88,15 +87,12 @@ class DatabaseDriverTest extends \Doctrine\Tests\OrmFunctionalTestCase
      */
     protected function extractClassMetadata($className)
     {
-        $cm = new ClassMetadataReader();
-        $cm->addMappingSource(new \Doctrine\ORM\Mapping\Driver\DatabaseDriver($this->_sm));
-        $metadatas = $cm->getMetadatas();
-
-        $output = false;
-        
-        foreach ($metadatas AS $metadata) {
-            if (strtolower($metadata->name) == strtolower($className)) {
-                return $metadata;
+        $driver = new \Doctrine\ORM\Mapping\Driver\DatabaseDriver($this->_sm);
+        foreach ($driver->getAllClassNames() as $dbClassName) {
+            $class = new ClassMetadataInfo($dbClassName);
+            $driver->loadMetadataForClass($dbClassName, $class);
+            if (strtolower($class->name) == strtolower($className)) {
+                return $class;
             }
         }
 
diff --git a/tests/Doctrine/Tests/ORM/Tools/ConvertDoctrine1SchemaTest.php b/tests/Doctrine/Tests/ORM/Tools/ConvertDoctrine1SchemaTest.php
index f76f7baa7..94856b831 100644
--- a/tests/Doctrine/Tests/ORM/Tools/ConvertDoctrine1SchemaTest.php
+++ b/tests/Doctrine/Tests/ORM/Tools/ConvertDoctrine1SchemaTest.php
@@ -21,8 +21,15 @@
 
 namespace Doctrine\Tests\ORM\Tools;
 
-use Doctrine\ORM\Tools\Export\ClassMetadataExporter,
-    Doctrine\ORM\Tools\ConvertDoctrine1Schema;
+use Doctrine\ORM\Tools\Export\ClassMetadataExporter;
+use Doctrine\ORM\Tools\ConvertDoctrine1Schema;
+use Doctrine\Tests\Mocks\MetadataDriverMock;
+use Doctrine\Tests\Mocks\DatabasePlatformMock;
+use Doctrine\Tests\Mocks\EntityManagerMock;
+use Doctrine\Tests\Mocks\ConnectionMock;
+use Doctrine\Tests\Mocks\DriverMock;
+use Doctrine\Common\EventManager;
+use Doctrine\ORM\Tools\DisconnectedClassMetadataFactory;
 
 require_once __DIR__ . '/../../TestInit.php';
 
@@ -38,9 +45,23 @@ require_once __DIR__ . '/../../TestInit.php';
  */
 class ConvertDoctrine1SchemaTest extends \Doctrine\Tests\OrmTestCase
 {
+    protected function _createEntityManager($metadataDriver)
+    {
+        $driverMock = new DriverMock();
+        $config = new \Doctrine\ORM\Configuration();
+        $config->setProxyDir(__DIR__ . '/../../Proxies');
+        $config->setProxyNamespace('Doctrine\Tests\Proxies');
+        $eventManager = new EventManager();
+        $conn = new ConnectionMock(array(), $driverMock, $config, $eventManager);
+        $mockDriver = new MetadataDriverMock();
+        $config->setMetadataDriverImpl($metadataDriver);
+
+        return EntityManagerMock::create($conn, $config, $eventManager);
+    }
+
     public function testTest()
     {
-        if (!class_exists('Symfony\Components\Yaml\Yaml', true)) {
+        if ( ! class_exists('Symfony\Components\Yaml\Yaml', true)) {
             $this->markTestSkipped('Please install Symfony YAML Component into the include path of your PHP installation.');
         }
 
@@ -48,28 +69,32 @@ class ConvertDoctrine1SchemaTest extends \Doctrine\Tests\OrmTestCase
         $converter = new ConvertDoctrine1Schema(__DIR__ . '/doctrine1schema');
 
         $exporter = $cme->getExporter('yml', __DIR__ . '/convert');
-        $exporter->setMetadatas($converter->getMetadatas());
+        $exporter->setMetadata($converter->getMetadata());
         $exporter->export();
 
         $this->assertTrue(file_exists(__DIR__ . '/convert/User.dcm.yml'));
         $this->assertTrue(file_exists(__DIR__ . '/convert/Profile.dcm.yml'));
 
-        $cme->addMappingSource(__DIR__ . '/convert');
-        $metadatas = $cme->getMetadatas();
+        $metadataDriver = new \Doctrine\ORM\Mapping\Driver\YamlDriver(__DIR__ . '/convert');
+        $em = $this->_createEntityManager($metadataDriver);
+        $cmf = new DisconnectedClassMetadataFactory($em);
+        $metadata = $cmf->getAllMetadata();
+        $profileClass = $metadata[0];
+        $userClass = $metadata[1];
 
-        $this->assertEquals(2, count($metadatas));
-        $this->assertEquals('Profile', $metadatas['Profile']->name);
-        $this->assertEquals('User', $metadatas['User']->name);
-        $this->assertEquals(4, count($metadatas['Profile']->fieldMappings));
-        $this->assertEquals(5, count($metadatas['User']->fieldMappings));
-        $this->assertEquals('text', $metadatas['User']->fieldMappings['clob']['type']);
-        $this->assertEquals('test_alias', $metadatas['User']->fieldMappings['theAlias']['columnName']);
-        $this->assertEquals('theAlias', $metadatas['User']->fieldMappings['theAlias']['fieldName']);
+        $this->assertEquals(2, count($metadata));
+        $this->assertEquals('Profile', $profileClass->name);
+        $this->assertEquals('User', $userClass->name);
+        $this->assertEquals(4, count($profileClass->fieldMappings));
+        $this->assertEquals(5, count($userClass->fieldMappings));
+        $this->assertEquals('text', $userClass->fieldMappings['clob']['type']);
+        $this->assertEquals('test_alias', $userClass->fieldMappings['theAlias']['columnName']);
+        $this->assertEquals('theAlias', $userClass->fieldMappings['theAlias']['fieldName']);
 
-        $this->assertEquals('Profile', $metadatas['Profile']->associationMappings['User']->sourceEntityName);
-        $this->assertEquals('User', $metadatas['Profile']->associationMappings['User']->targetEntityName);
+        $this->assertEquals('Profile', $profileClass->associationMappings['User']->sourceEntityName);
+        $this->assertEquals('User', $profileClass->associationMappings['User']->targetEntityName);
 
-        $this->assertEquals('username', $metadatas['User']->table['uniqueConstraints']['username']['columns'][0]);
+        $this->assertEquals('username', $userClass->table['uniqueConstraints']['username']['columns'][0]);
 
         unlink(__DIR__ . '/convert/User.dcm.yml');
         unlink(__DIR__ . '/convert/Profile.dcm.yml');
diff --git a/tests/Doctrine/Tests/ORM/Tools/Export/AbstractClassMetadataExporterTest.php b/tests/Doctrine/Tests/ORM/Tools/Export/AbstractClassMetadataExporterTest.php
index 41741dc4f..3e6d90df5 100644
--- a/tests/Doctrine/Tests/ORM/Tools/Export/AbstractClassMetadataExporterTest.php
+++ b/tests/Doctrine/Tests/ORM/Tools/Export/AbstractClassMetadataExporterTest.php
@@ -21,9 +21,17 @@
 
 namespace Doctrine\Tests\ORM\Tools\Export;
 
-use Doctrine\ORM\Tools\Export\ClassMetadataExporter,
-    Doctrine\ORM\Mapping\ClassMetadataInfo,
-    Doctrine\ORM\Tools\EntityGenerator;
+use Doctrine\ORM\Tools\Export\ClassMetadataExporter;
+use Doctrine\ORM\Mapping\ClassMetadataInfo;
+use Doctrine\ORM\Tools\EntityGenerator;
+use Doctrine\Tests\Mocks\MetadataDriverMock;
+use Doctrine\Tests\Mocks\DatabasePlatformMock;
+use Doctrine\Tests\Mocks\EntityManagerMock;
+use Doctrine\Tests\Mocks\ConnectionMock;
+use Doctrine\Tests\Mocks\DriverMock;
+use Doctrine\Common\EventManager;
+use Doctrine\ORM\Tools\DisconnectedClassMetadataFactory;
+use Doctrine\ORM\Mapping\ClassMetadataFactory;
 
 require_once __DIR__ . '/../../../TestInit.php';
 
@@ -43,59 +51,64 @@ abstract class AbstractClassMetadataExporterTest extends \Doctrine\Tests\OrmTest
 
     abstract protected function _getType();
 
-    protected function _getTestEntityName()
+    protected function _createEntityManager($metadataDriver)
     {
-        if ($this->_getType() == 'annotation') {
-            return 'Doctrine\Tests\ORM\Tools\Export\User2';
+        $driverMock = new DriverMock();
+        $config = new \Doctrine\ORM\Configuration();
+        $config->setProxyDir(__DIR__ . '/../../Proxies');
+        $config->setProxyNamespace('Doctrine\Tests\Proxies');
+        $eventManager = new EventManager();
+        $conn = new ConnectionMock(array(), $driverMock, $config, $eventManager);
+        $mockDriver = new MetadataDriverMock();
+        $config->setMetadataDriverImpl($metadataDriver);
+
+        return EntityManagerMock::create($conn, $config, $eventManager);
+    }
+
+    protected function _createMetadataDriver($type, $path)
+    {
+        $class = 'Doctrine\ORM\Mapping\Driver\\' . ucfirst($type) . 'Driver';
+        if ($type === 'annotation') {
+            $driver = $class::create($path);
         } else {
-            return 'Doctrine\Tests\ORM\Tools\Export\User';
+            $driver = new $class($path);
+        }
+        return $driver;
+    }
+
+    protected function _createClassMetadataFactory($em, $type)
+    {
+        if ($type === 'annotation') {
+            return new ClassMetadataFactory($em);
+        } else {
+            return new DisconnectedClassMetadataFactory($em);
         }
     }
 
-    protected function _loadClassMetadataExporter()
+    public function testExportDirectoryAndFilesAreCreated()
     {
         $type = $this->_getType();
+        $metadataDriver = $this->_createMetadataDriver($type, __DIR__ . '/' . $type);
+        $em = $this->_createEntityManager($metadataDriver);
+        $cmf = $this->_createClassMetadataFactory($em, $type);
+        $metadata = $cmf->getAllMetadata();
 
+        $this->assertEquals('Doctrine\Tests\ORM\Tools\Export\User', $metadata[0]->name);
+
+        $type = $this->_getType();
         $cme = new ClassMetadataExporter();
-        $cme->addMappingSource(__DIR__ . '/' . $type, $type);
-
-        return $cme;
-    }
-
-    public function testGetMetadatasForMappingSources()
-    {
-        $type = $this->_getType();
-        $cme = $this->_loadClassMetadataExporter();
-        $metadataInstances = $cme->getMetadatas();
-
-        $this->assertEquals('Doctrine\Tests\ORM\Tools\Export\User', $metadataInstances['Doctrine\Tests\ORM\Tools\Export\User']->name);
-
-        return $cme;
-    }
-
-    /**
-     * @depends testGetMetadatasForMappingSources
-     * @param ClassMetadataExporter $cme
-     */
-    public function testExportDirectoryAndFilesAreCreated($cme)
-    {
-        $type = $this->_getType();
         $exporter = $cme->getExporter($type, __DIR__ . '/export/' . $type);
         if ($type === 'annotation') {
             $entityGenerator = new EntityGenerator();
             $exporter->setEntityGenerator($entityGenerator);
         }
         $this->_extension = $exporter->getExtension();
-        $metadatas = $cme->getMetadatas();
-        if ($type == 'annotation') {
-            $metadatas['Doctrine\Tests\ORM\Tools\Export\User']->name = $this->_getTestEntityName();
-        }
 
-        $exporter->setMetadatas($metadatas);
+        $exporter->setMetadata($metadata);
         $exporter->export();
 
         if ($type == 'annotation') {
-            $this->assertTrue(file_exists(__DIR__ . '/export/' . $type . '/'.str_replace('\\', '/', $this->_getTestEntityName()).$this->_extension));
+            $this->assertTrue(file_exists(__DIR__ . '/export/' . $type . '/'.str_replace('\\', '/', 'Doctrine\Tests\ORM\Tools\Export\User').$this->_extension));
         } else {
             $this->assertTrue(file_exists(__DIR__ . '/export/' . $type . '/Doctrine.Tests.ORM.Tools.Export.User'.$this->_extension));
         }
@@ -107,163 +120,165 @@ abstract class AbstractClassMetadataExporterTest extends \Doctrine\Tests\OrmTest
     public function testExportedMetadataCanBeReadBackIn()
     {
         $type = $this->_getType();
-        $cme = new ClassMetadataExporter();
-        $cme->addMappingSource(__DIR__ . '/export/' . $type, $type);
+        
+        $metadataDriver = $this->_createMetadataDriver($type, __DIR__ . '/' . $type);
+        $em = $this->_createEntityManager($metadataDriver);
+        $cmf = $this->_createClassMetadataFactory($em, $type);
+        $metadata = $cmf->getAllMetadata();
 
-        $metadataInstances = $cme->getMetadatas();
-        $metadata = current($metadataInstances);
+        $class = current($metadata);
     
-        $this->assertEquals($this->_getTestEntityName(), $metadata->name);
+        $this->assertEquals('Doctrine\Tests\ORM\Tools\Export\User', $class->name);
 
-        return $metadata;
+        return $class;
     }
 
     /**
      * @depends testExportedMetadataCanBeReadBackIn
-     * @param ClassMetadataInfo $metadata
+     * @param ClassMetadataInfo $class
      */
-    public function testTableIsExported($metadata)
+    public function testTableIsExported($class)
     {
-        $this->assertEquals('cms_users', $metadata->table['name']);
+        $this->assertEquals('cms_users', $class->table['name']);
 
-        return $metadata;
+        return $class;
     }
 
     /**
      * @depends testTableIsExported
-     * @param ClassMetadataInfo $metadata
+     * @param ClassMetadataInfo $class
      */
-    public function testTypeIsExported($metadata)
+    public function testTypeIsExported($class)
     {
-        $this->assertFalse($metadata->isMappedSuperclass);
+        $this->assertFalse($class->isMappedSuperclass);
 
-        return $metadata;
+        return $class;
     }
 
     /**
      * @depends testTypeIsExported
-     * @param ClassMetadataInfo $metadata
+     * @param ClassMetadataInfo $class
      */
-    public function testIdentifierIsExported($metadata)
+    public function testIdentifierIsExported($class)
     {
-        $this->assertEquals(ClassMetadataInfo::GENERATOR_TYPE_AUTO, $metadata->generatorType);
-        $this->assertEquals(array('id'), $metadata->identifier);
-        $this->assertTrue(isset($metadata->fieldMappings['id']['id']) && $metadata->fieldMappings['id']['id'] === true);
+        $this->assertEquals(ClassMetadataInfo::GENERATOR_TYPE_IDENTITY, $class->generatorType);
+        $this->assertEquals(array('id'), $class->identifier);
+        $this->assertTrue(isset($class->fieldMappings['id']['id']) && $class->fieldMappings['id']['id'] === true);
 
-        return $metadata;
+        return $class;
     }
 
     /**
      * @depends testIdentifierIsExported
-     * @param ClassMetadataInfo $metadata
+     * @param ClassMetadataInfo $class
      */
-    public function testFieldsAreExpored($metadata)
+    public function testFieldsAreExpored($class)
     {
-        $this->assertTrue(isset($metadata->fieldMappings['id']['id']) && $metadata->fieldMappings['id']['id'] === true);
-        $this->assertEquals('id', $metadata->fieldMappings['id']['fieldName']);
-        $this->assertEquals('integer', $metadata->fieldMappings['id']['type']);
-        $this->assertEquals('id', $metadata->fieldMappings['id']['columnName']);
+        $this->assertTrue(isset($class->fieldMappings['id']['id']) && $class->fieldMappings['id']['id'] === true);
+        $this->assertEquals('id', $class->fieldMappings['id']['fieldName']);
+        $this->assertEquals('integer', $class->fieldMappings['id']['type']);
+        $this->assertEquals('id', $class->fieldMappings['id']['columnName']);
 
-        $this->assertEquals('name', $metadata->fieldMappings['name']['fieldName']);
-        $this->assertEquals('string', $metadata->fieldMappings['name']['type']);
-        $this->assertEquals(50, $metadata->fieldMappings['name']['length']);
-        $this->assertEquals('name', $metadata->fieldMappings['name']['columnName']);
+        $this->assertEquals('name', $class->fieldMappings['name']['fieldName']);
+        $this->assertEquals('string', $class->fieldMappings['name']['type']);
+        $this->assertEquals(50, $class->fieldMappings['name']['length']);
+        $this->assertEquals('name', $class->fieldMappings['name']['columnName']);
 
-        $this->assertEquals('email', $metadata->fieldMappings['email']['fieldName']);
-        $this->assertEquals('string', $metadata->fieldMappings['email']['type']);
-        $this->assertEquals('user_email', $metadata->fieldMappings['email']['columnName']);
-        $this->assertEquals('CHAR(32) NOT NULL', $metadata->fieldMappings['email']['columnDefinition']);
+        $this->assertEquals('email', $class->fieldMappings['email']['fieldName']);
+        $this->assertEquals('string', $class->fieldMappings['email']['type']);
+        $this->assertEquals('user_email', $class->fieldMappings['email']['columnName']);
+        $this->assertEquals('CHAR(32) NOT NULL', $class->fieldMappings['email']['columnDefinition']);
 
-        return $metadata;
+        return $class;
     }
 
     /**
      * @depends testFieldsAreExpored
-     * @param ClassMetadataInfo $metadata
+     * @param ClassMetadataInfo $class
      */
-    public function testOneToOneAssociationsAreExported($metadata)
+    public function testOneToOneAssociationsAreExported($class)
     {
-        $this->assertTrue(isset($metadata->associationMappings['address']));
-        $this->assertTrue($metadata->associationMappings['address'] instanceof \Doctrine\ORM\Mapping\OneToOneMapping);
-        $this->assertEquals('Doctrine\Tests\ORM\Tools\Export\Address', $metadata->associationMappings['address']->targetEntityName);
-        $this->assertEquals('address_id', $metadata->associationMappings['address']->joinColumns[0]['name']);
-        $this->assertEquals('id', $metadata->associationMappings['address']->joinColumns[0]['referencedColumnName']);
-        $this->assertEquals('CASCADE', $metadata->associationMappings['address']->joinColumns[0]['onDelete']);
-        $this->assertEquals('CASCADE', $metadata->associationMappings['address']->joinColumns[0]['onUpdate']);
+        $this->assertTrue(isset($class->associationMappings['address']));
+        $this->assertTrue($class->associationMappings['address'] instanceof \Doctrine\ORM\Mapping\OneToOneMapping);
+        $this->assertEquals('Doctrine\Tests\ORM\Tools\Export\Address', $class->associationMappings['address']->targetEntityName);
+        $this->assertEquals('address_id', $class->associationMappings['address']->joinColumns[0]['name']);
+        $this->assertEquals('id', $class->associationMappings['address']->joinColumns[0]['referencedColumnName']);
+        $this->assertEquals('CASCADE', $class->associationMappings['address']->joinColumns[0]['onDelete']);
+        $this->assertEquals('CASCADE', $class->associationMappings['address']->joinColumns[0]['onUpdate']);
 
-        $this->assertTrue($metadata->associationMappings['address']->isCascadeRemove);
-        $this->assertFalse($metadata->associationMappings['address']->isCascadePersist);
-        $this->assertFalse($metadata->associationMappings['address']->isCascadeRefresh);
-        $this->assertFalse($metadata->associationMappings['address']->isCascadeMerge);
-        $this->assertFalse($metadata->associationMappings['address']->isCascadeDetach);
+        $this->assertTrue($class->associationMappings['address']->isCascadeRemove);
+        $this->assertFalse($class->associationMappings['address']->isCascadePersist);
+        $this->assertFalse($class->associationMappings['address']->isCascadeRefresh);
+        $this->assertFalse($class->associationMappings['address']->isCascadeMerge);
+        $this->assertFalse($class->associationMappings['address']->isCascadeDetach);
 
-        return $metadata;
+        return $class;
     }
 
     /**
      * @depends testOneToOneAssociationsAreExported
-     * @param ClassMetadataInfo $metadata
+     * @param ClassMetadataInfo $class
      */
-    public function testOneToManyAssociationsAreExported($metadata)
+    public function testOneToManyAssociationsAreExported($class)
     {
-        $this->assertTrue(isset($metadata->associationMappings['phonenumbers']));
-        $this->assertTrue($metadata->associationMappings['phonenumbers'] instanceof \Doctrine\ORM\Mapping\OneToManyMapping);
-        $this->assertEquals('Doctrine\Tests\ORM\Tools\Export\Phonenumber', $metadata->associationMappings['phonenumbers']->targetEntityName);
-        $this->assertEquals('user', $metadata->associationMappings['phonenumbers']->mappedBy);
-        $this->assertEquals(array('number' => 'ASC'), $metadata->associationMappings['phonenumbers']->orderBy);
+        $this->assertTrue(isset($class->associationMappings['phonenumbers']));
+        $this->assertTrue($class->associationMappings['phonenumbers'] instanceof \Doctrine\ORM\Mapping\OneToManyMapping);
+        $this->assertEquals('Doctrine\Tests\ORM\Tools\Export\Phonenumber', $class->associationMappings['phonenumbers']->targetEntityName);
+        $this->assertEquals('user', $class->associationMappings['phonenumbers']->mappedBy);
+        $this->assertEquals(array('number' => 'ASC'), $class->associationMappings['phonenumbers']->orderBy);
 
-        $this->assertFalse($metadata->associationMappings['phonenumbers']->isCascadeRemove);
-        $this->assertTrue($metadata->associationMappings['phonenumbers']->isCascadePersist);
-        $this->assertFalse($metadata->associationMappings['phonenumbers']->isCascadeRefresh);
-        $this->assertFalse($metadata->associationMappings['phonenumbers']->isCascadeMerge);
-        $this->assertFalse($metadata->associationMappings['phonenumbers']->isCascadeDetach);
+        $this->assertFalse($class->associationMappings['phonenumbers']->isCascadeRemove);
+        $this->assertTrue($class->associationMappings['phonenumbers']->isCascadePersist);
+        $this->assertFalse($class->associationMappings['phonenumbers']->isCascadeRefresh);
+        $this->assertFalse($class->associationMappings['phonenumbers']->isCascadeMerge);
+        $this->assertFalse($class->associationMappings['phonenumbers']->isCascadeDetach);
         
-        return $metadata;
+        return $class;
     }
 
     /**
      * @depends testOneToManyAssociationsAreExported
      * @param ClassMetadataInfo $metadata
      */
-    public function testManyToManyAssociationsAreExported($metadata)
+    public function testManyToManyAssociationsAreExported($class)
     {
-        $this->assertTrue(isset($metadata->associationMappings['groups']));
-        $this->assertTrue($metadata->associationMappings['groups'] instanceof \Doctrine\ORM\Mapping\ManyToManyMapping);
-        $this->assertEquals('Doctrine\Tests\ORM\Tools\Export\Group', $metadata->associationMappings['groups']->targetEntityName);
-        $this->assertEquals('cms_users_groups', $metadata->associationMappings['groups']->joinTable['name']);
+        $this->assertTrue(isset($class->associationMappings['groups']));
+        $this->assertTrue($class->associationMappings['groups'] instanceof \Doctrine\ORM\Mapping\ManyToManyMapping);
+        $this->assertEquals('Doctrine\Tests\ORM\Tools\Export\Group', $class->associationMappings['groups']->targetEntityName);
+        $this->assertEquals('cms_users_groups', $class->associationMappings['groups']->joinTable['name']);
 
-        $this->assertEquals('user_id', $metadata->associationMappings['groups']->joinTable['joinColumns'][0]['name']);
-        $this->assertEquals('id', $metadata->associationMappings['groups']->joinTable['joinColumns'][0]['referencedColumnName']);
+        $this->assertEquals('user_id', $class->associationMappings['groups']->joinTable['joinColumns'][0]['name']);
+        $this->assertEquals('id', $class->associationMappings['groups']->joinTable['joinColumns'][0]['referencedColumnName']);
 
-        $this->assertEquals('group_id', $metadata->associationMappings['groups']->joinTable['inverseJoinColumns'][0]['name']);
-        $this->assertEquals('id', $metadata->associationMappings['groups']->joinTable['inverseJoinColumns'][0]['referencedColumnName']);
-        $this->assertEquals('INT NULL', $metadata->associationMappings['groups']->joinTable['inverseJoinColumns'][0]['columnDefinition']);
+        $this->assertEquals('group_id', $class->associationMappings['groups']->joinTable['inverseJoinColumns'][0]['name']);
+        $this->assertEquals('id', $class->associationMappings['groups']->joinTable['inverseJoinColumns'][0]['referencedColumnName']);
+        $this->assertEquals('INT NULL', $class->associationMappings['groups']->joinTable['inverseJoinColumns'][0]['columnDefinition']);
 
-        $this->assertTrue($metadata->associationMappings['groups']->isCascadeRemove);
-        $this->assertTrue($metadata->associationMappings['groups']->isCascadePersist);
-        $this->assertTrue($metadata->associationMappings['groups']->isCascadeRefresh);
-        $this->assertTrue($metadata->associationMappings['groups']->isCascadeMerge);
-        $this->assertTrue($metadata->associationMappings['groups']->isCascadeDetach);
+        $this->assertTrue($class->associationMappings['groups']->isCascadeRemove);
+        $this->assertTrue($class->associationMappings['groups']->isCascadePersist);
+        $this->assertTrue($class->associationMappings['groups']->isCascadeRefresh);
+        $this->assertTrue($class->associationMappings['groups']->isCascadeMerge);
+        $this->assertTrue($class->associationMappings['groups']->isCascadeDetach);
 
-        return $metadata;
+        return $class;
     }
 
     /**
      * @depends testManyToManyAssociationsAreExported
-     * @param ClassMetadataInfo $metadata
+     * @param ClassMetadataInfo $class
      */
-    public function testLifecycleCallbacksAreExported($metadata)
+    public function testLifecycleCallbacksAreExported($class)
     {
-        $this->assertTrue(isset($metadata->lifecycleCallbacks['prePersist']));
-        $this->assertEquals(2, count($metadata->lifecycleCallbacks['prePersist']));
-        $this->assertEquals('doStuffOnPrePersist', $metadata->lifecycleCallbacks['prePersist'][0]);
-        $this->assertEquals('doOtherStuffOnPrePersistToo', $metadata->lifecycleCallbacks['prePersist'][1]);
+        $this->assertTrue(isset($class->lifecycleCallbacks['prePersist']));
+        $this->assertEquals(2, count($class->lifecycleCallbacks['prePersist']));
+        $this->assertEquals('doStuffOnPrePersist', $class->lifecycleCallbacks['prePersist'][0]);
+        $this->assertEquals('doOtherStuffOnPrePersistToo', $class->lifecycleCallbacks['prePersist'][1]);
 
-        $this->assertTrue(isset($metadata->lifecycleCallbacks['postPersist']));
-        $this->assertEquals(1, count($metadata->lifecycleCallbacks['postPersist']));
-        $this->assertEquals('doStuffOnPostPersist', $metadata->lifecycleCallbacks['postPersist'][0]);
+        $this->assertTrue(isset($class->lifecycleCallbacks['postPersist']));
+        $this->assertEquals(1, count($class->lifecycleCallbacks['postPersist']));
+        $this->assertEquals('doStuffOnPostPersist', $class->lifecycleCallbacks['postPersist'][0]);
 
-        return $metadata;
+        return $class;
     }
 
     public function __destruct()

From d4232d906e433b1fe4dd8aa85aa7a4aca3a2cf4c Mon Sep 17 00:00:00 2001
From: "Roman S. Borschel" <roman.borschel@googlemail.com>
Date: Wed, 14 Apr 2010 17:07:08 +0200
Subject: [PATCH 08/15] [DDC-388] Fixed.

---
 lib/Doctrine/ORM/AbstractQuery.php            |   7 +-
 .../ORM/Mapping/AssociationMapping.php        |  29 ++--
 lib/Doctrine/ORM/Mapping/ClassMetadata.php    |  44 ++----
 .../ORM/Mapping/ClassMetadataFactory.php      |  26 ++--
 .../ORM/Mapping/ClassMetadataInfo.php         | 116 +++-------------
 .../Persisters/JoinedSubclassPersister.php    |  22 ++-
 .../ORM/Persisters/SingleTablePersister.php   |   4 +-
 .../Persisters/StandardEntityPersister.php    |   1 +
 .../Query/Exec/MultiTableUpdateExecutor.php   |   9 +-
 lib/Doctrine/ORM/Query/SqlWalker.php          |  10 +-
 lib/Doctrine/ORM/Tools/SchemaTool.php         |   2 +-
 phpdoc.ini                                    | 126 ++++++++++++++++++
 .../Mapping/BasicInheritanceMappingTest.php   |   2 +-
 .../Tests/ORM/Mapping/ClassMetadataTest.php   |   4 +-
 14 files changed, 211 insertions(+), 191 deletions(-)
 create mode 100644 phpdoc.ini

diff --git a/lib/Doctrine/ORM/AbstractQuery.php b/lib/Doctrine/ORM/AbstractQuery.php
index 5acf82d0b..9ad032bec 100644
--- a/lib/Doctrine/ORM/AbstractQuery.php
+++ b/lib/Doctrine/ORM/AbstractQuery.php
@@ -410,12 +410,7 @@ abstract class AbstractQuery
                 throw new NonUniqueResultException;
             }
             return array_shift($result);
-        }/* else if (is_object($result)) {
-            if (count($result) > 1) {
-                throw new NonUniqueResultException;
-            }
-            return $result->first();
-        }*/
+        }
 
         return $result;
     }
diff --git a/lib/Doctrine/ORM/Mapping/AssociationMapping.php b/lib/Doctrine/ORM/Mapping/AssociationMapping.php
index 0e5daaff7..18915ba3c 100644
--- a/lib/Doctrine/ORM/Mapping/AssociationMapping.php
+++ b/lib/Doctrine/ORM/Mapping/AssociationMapping.php
@@ -1,7 +1,5 @@
 <?php
 /*
- *  $Id$
- *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -152,7 +150,23 @@ abstract class AssociationMapping
      *
      * @var array
      */
-    public $joinTable = array();
+    public $joinTable;
+
+    /**
+     * READ-ONLY: The name of the entity class from which the association was
+     * inherited in an inheritance hierarchy.
+     *
+     * @var string
+     */
+    public $inherited;
+
+    /**
+     * READ-ONLY: The name of the entity or mapped superclass that declares
+     * the association field in an inheritance hierarchy.
+     *
+     * @var string
+     */
+    public $declared;
 
     /**
      * Initializes a new instance of a class derived from AssociationMapping.
@@ -161,9 +175,7 @@ abstract class AssociationMapping
      */
     public function __construct(array $mapping)
     {
-        if ($mapping) {
-            $this->_validateAndCompleteMapping($mapping);
-        }
+        $this->_validateAndCompleteMapping($mapping);
     }
 
     /**
@@ -317,8 +329,9 @@ abstract class AssociationMapping
     abstract public function load($sourceEntity, $target, $em, array $joinColumnValues = array());
     
     /**
-     * 
-     * @param $platform
+     * Gets the (possibly quoted) name of the join table.
+     *
+     * @param AbstractPlatform $platform
      * @return string
      */
     public function getQuotedJoinTableName($platform)
diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadata.php b/lib/Doctrine/ORM/Mapping/ClassMetadata.php
index 6ac796adc..c358cc007 100644
--- a/lib/Doctrine/ORM/Mapping/ClassMetadata.php
+++ b/lib/Doctrine/ORM/Mapping/ClassMetadata.php
@@ -1,7 +1,5 @@
 <?php
 /*
- *  $Id$
- *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -72,11 +70,10 @@ class ClassMetadata extends ClassMetadataInfo
      */
     public function __construct($entityName)
     {
-        $this->name = $entityName;
-        $this->reflClass = new \ReflectionClass($entityName);
+        parent::__construct($entityName);
+        $this->reflClass = new ReflectionClass($entityName);
         $this->namespace = $this->reflClass->getNamespaceName();
         $this->table['name'] = $this->reflClass->getShortName();
-        $this->rootEntityName = $entityName;
     }
 
     /**
@@ -99,18 +96,6 @@ class ClassMetadata extends ClassMetadataInfo
         return $this->reflFields;
     }
 
-    /**
-     * INTERNAL:
-     * Adds a reflection property. Usually only used by the ClassMetadataFactory
-     * while processing inheritance mappings.
-     *
-     * @param array $props
-     */
-    public function addReflectionProperty($propName, \ReflectionProperty $property)
-    {
-        $this->reflFields[$propName] = $property;
-    }
-
     /**
      * Gets a ReflectionProperty for a specific field of the mapped class.
      *
@@ -189,7 +174,7 @@ class ClassMetadata extends ClassMetadataInfo
     public function setIdentifierValues($entity, $id)
     {
         if ($this->isIdentifierComposite) {
-            foreach ((array)$id as $idField => $idValue) {
+            foreach ($id as $idField => $idValue) {
                 $this->reflFields[$idField]->setValue($entity, $idValue);
             }
         } else {
@@ -220,18 +205,6 @@ class ClassMetadata extends ClassMetadataInfo
         return $this->reflFields[$field]->getValue($entity);
     }
 
-    /**
-     * Sets the field mapped to the specified column to the specified value on the given entity.
-     *
-     * @param object $entity
-     * @param string $field
-     * @param mixed $value
-     */
-    public function setColumnValue($entity, $column, $value)
-    {
-        $this->reflFields[$this->fieldNames[$column]]->setValue($entity, $value);
-    }
-
     /**
      * Stores the association mapping.
      *
@@ -314,7 +287,6 @@ class ClassMetadata extends ClassMetadataInfo
             'identifier',
             'idGenerator', //TODO: Does not really need to be serialized. Could be moved to runtime.
             'inheritanceType',
-            'inheritedAssociationFields',
             'isIdentifierComposite',
             'isMappedSuperclass',
             'isVersioned',
@@ -337,10 +309,10 @@ class ClassMetadata extends ClassMetadataInfo
     {
         // Restore ReflectionClass and properties
         $this->reflClass = new ReflectionClass($this->name);
-        
+
         foreach ($this->fieldMappings as $field => $mapping) {
-            if (isset($mapping['inherited'])) {
-                $reflField = new ReflectionProperty($mapping['inherited'], $field);
+            if (isset($mapping['declared'])) {
+                $reflField = new ReflectionProperty($mapping['declared'], $field);
             } else {
                 $reflField = $this->reflClass->getProperty($field);
             }
@@ -349,8 +321,8 @@ class ClassMetadata extends ClassMetadataInfo
         }
 
         foreach ($this->associationMappings as $field => $mapping) {
-            if (isset($this->inheritedAssociationFields[$field])) {
-                $reflField = new ReflectionProperty($this->inheritedAssociationFields[$field], $field);
+            if ($mapping->declared) {
+                $reflField = new ReflectionProperty($mapping->declared, $field);
             } else {
                 $reflField = $this->reflClass->getProperty($field);
             }
diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php b/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
index 13ca40840..69836e88a 100644
--- a/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
+++ b/lib/Doctrine/ORM/Mapping/ClassMetadataFactory.php
@@ -317,31 +317,33 @@ class ClassMetadataFactory
             if ( ! isset($mapping['inherited']) && ! $parentClass->isMappedSuperclass) {
                 $mapping['inherited'] = $parentClass->name;
             }
-            $subClass->addFieldMapping($mapping);
+            if ( ! isset($mapping['declared'])) {
+                $mapping['declared'] = $parentClass->name;
+            }
+            $subClass->addInheritedFieldMapping($mapping);
         }
         foreach ($parentClass->reflFields as $name => $field) {
             $subClass->reflFields[$name] = $field;
         }
     }
-    
+
     /**
-     * Adds inherited associations to the subclass mapping.
+     * Adds inherited association mappings to the subclass mapping.
      *
      * @param Doctrine\ORM\Mapping\ClassMetadata $subClass
      * @param Doctrine\ORM\Mapping\ClassMetadata $parentClass
      */
     private function _addInheritedRelations(ClassMetadata $subClass, ClassMetadata $parentClass)
     {
-        foreach ($parentClass->associationMappings as $mapping) {
-            if (isset($parentClass->inheritedAssociationFields[$mapping->sourceFieldName])) {
-                // parent class also inherited that one
-                $subClass->addAssociationMapping($mapping, $parentClass->inheritedAssociationFields[$mapping->sourceFieldName]);
-            } else if ( ! $parentClass->isMappedSuperclass) {
-                // parent class defined that one
-                $subClass->addAssociationMapping($mapping, $parentClass->name);
-            } else {
-                $subClass->addAssociationMapping($mapping);
+        foreach ($parentClass->associationMappings as $field => $mapping) {
+            $subclassMapping = clone $mapping;
+            if ( ! isset($mapping->inherited) && ! $parentClass->isMappedSuperclass) {
+                $subclassMapping->inherited = $parentClass->name;
             }
+            if ( ! isset($mapping->declared)) {
+                $subclassMapping->declared = $parentClass->name;
+            }
+            $subClass->addInheritedAssociationMapping($subclassMapping);
         }
     }
 
diff --git a/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php b/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php
index b3ed57d98..ac481c48f 100644
--- a/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php
+++ b/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php
@@ -1,7 +1,5 @@
 <?php
 /*
- *  $Id$
- *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -158,7 +156,7 @@ class ClassMetadataInfo
     public $parentClasses = array();
 
     /**
-     * READ-ONLY: The names of all subclasses.
+     * READ-ONLY: The names of all subclasses (descendants).
      *
      * @var array
      */
@@ -195,9 +193,9 @@ class ClassMetadataInfo
      * - <b>fieldName</b> (string)
      * The name of the field in the Entity.
      *
-     * - <b>type</b> (object Doctrine\DBAL\Types\* or custom type)
-     * The type of the column. Can be one of Doctrine's portable types
-     * or a custom type.
+     * - <b>type</b> (string)
+     * The type name of the mapped field. Can be one of Doctrine's mapping types
+     * or a custom mapping type.
      *
      * - <b>columnName</b> (string, optional)
      * The column name. Optional. Defaults to the field name.
@@ -207,15 +205,9 @@ class ClassMetadataInfo
      * the type.
      *
      * - <b>id</b> (boolean, optional)
-     * Marks the field as the primary key of the Entity. Multiple fields of an
+     * Marks the field as the primary key of the entity. Multiple fields of an
      * entity can have the id attribute, forming a composite key.
      *
-     * - <b>idGenerator</b> (string, optional)
-     * Either: idGenerator => 'nameOfGenerator', usually only for TABLE/SEQUENCE generators
-     * Or: idGenerator => 'identity' or 'auto' or 'table' or 'sequence'
-     * Note that 'auto', 'table', 'sequence' and 'identity' are reserved names and
-     * therefore cant be used as a generator name!
-     *
      * - <b>nullable</b> (boolean, optional)
      * Whether the column is nullable. Defaults to FALSE.
      *
@@ -306,7 +298,7 @@ class ClassMetadataInfo
     public $lifecycleCallbacks = array();
 
     /**
-     * READ-ONLY: The association mappings. All mappings, inverse and owning side.
+     * READ-ONLY: The association mappings of this class.
      *
      * @var array
      */
@@ -323,6 +315,7 @@ class ClassMetadataInfo
      * READ-ONLY: The ID generator used for generating IDs for this class.
      *
      * @var AbstractIdGenerator
+     * @todo Remove
      */
     public $idGenerator;
 
@@ -358,15 +351,6 @@ class ClassMetadataInfo
      */
     public $changeTrackingPolicy = self::CHANGETRACKING_DEFERRED_IMPLICIT;
 
-    /**
-     * READ-ONLY: A map of field names to class names, where the field names are association
-     * fields that have been inherited from another class and values are the names
-     * of the classes that define the association.
-     *
-     * @var array
-     */
-    public $inheritedAssociationFields = array();
-
     /**
      * READ-ONLY: A flag for whether or not instances of this class are to be versioned
      * with optimistic locking.
@@ -592,16 +576,6 @@ class ClassMetadataInfo
         }
     }
 
-    /**
-     * Maps an embedded value object.
-     *
-     * @todo Implementation.
-     */
-    /*public function mapEmbeddedValue()
-    {
-        //...
-    }*/
-
     /**
      * Gets the identifier (primary key) field names of the class.
      *
@@ -708,7 +682,7 @@ class ClassMetadataInfo
     /**
      * Checks whether the mapped class uses an Id generator.
      *
-     * @return boolean  TRUE if the mapped class uses an Id generator, FALSE otherwise.
+     * @return boolean TRUE if the mapped class uses an Id generator, FALSE otherwise.
      */
     public function usesIdGenerator()
     {
@@ -716,7 +690,6 @@ class ClassMetadataInfo
     }
 
     /**
-     *
      * @return boolean
      */
     public function isInheritanceTypeNone()
@@ -856,16 +829,6 @@ class ClassMetadataInfo
         }
     }
 
-    /**
-     * Checks whether the class has any persistent subclasses.
-     *
-     * @return boolean TRUE if the class has one or more persistent subclasses, FALSE otherwise.
-     */
-    public function hasSubclasses()
-    {
-        return ! $this->subClasses;
-    }
-
     /**
      * Sets the parent class names.
      * Assumes that the class names in the passed array are in the order:
@@ -879,16 +842,6 @@ class ClassMetadataInfo
         }
     }
 
-    /**
-     * Checks whether the class has any persistent parent classes.
-     *
-     * @return boolean TRUE if the class has one or more persistent parent classes, FALSE otherwise.
-     */
-    public function hasParentClasses()
-    {
-        return ! $this->parentClasses;
-    }
-
     /**
      * Sets the inheritance type used by the class and it's subclasses.
      *
@@ -903,7 +856,7 @@ class ClassMetadataInfo
     }
 
     /**
-     * Checks whether a mapped field is inherited from a superclass.
+     * Checks whether a mapped field is inherited from an entity superclass.
      *
      * @return boolean TRUE if the field is inherited, FALSE otherwise.
      */
@@ -920,7 +873,7 @@ class ClassMetadataInfo
      */
     public function isInheritedAssociation($fieldName)
     {
-        return isset($this->inheritedAssociationFields[$fieldName]);
+        return isset($this->associationMappings[$fieldName]->inherited);
     }
 
     /**
@@ -963,21 +916,6 @@ class ClassMetadataInfo
                 $type == self::INHERITANCE_TYPE_TABLE_PER_CLASS;
     }
 
-    /**
-     * Checks whether the given type identifies an id generator type.
-     *
-     * @param string $type
-     * @return boolean
-     */
-    private function _isIdGeneratorType($type)
-    {
-        return $type == self::GENERATOR_TYPE_AUTO ||
-                $type == self::GENERATOR_TYPE_IDENTITY ||
-                $type == self::GENERATOR_TYPE_SEQUENCE ||
-                $type == self::GENERATOR_TYPE_TABLE ||
-                $type == self::GENERATOR_TYPE_NONE;
-    }
-
     /**
      * Makes some automatic additions to the association mapping to make the life
      * easier for the user, and store join columns in the metadata.
@@ -995,7 +933,7 @@ class ClassMetadataInfo
     }
 
     /**
-     * Adds a field mapping.
+     * Adds a mapped field to the class.
      *
      * @param array $mapping The field mapping.
      */
@@ -1015,18 +953,13 @@ class ClassMetadataInfo
      *
      * @param AssociationMapping $mapping
      * @param string $owningClassName The name of the class that defined this mapping.
-     * @todo Rename: addInheritedAssociationMapping
      */
-    public function addAssociationMapping(AssociationMapping $mapping, $owningClassName = null)
+    public function addInheritedAssociationMapping(AssociationMapping $mapping/*, $owningClassName = null*/)
     {
-        $sourceFieldName = $mapping->sourceFieldName;
-        if (isset($this->associationMappings[$sourceFieldName])) {
-            throw MappingException::duplicateAssociationMapping($this->name, $sourceFieldName);
-        }
-        $this->associationMappings[$sourceFieldName] = $mapping;
-        if ($owningClassName !== null) {
-            $this->inheritedAssociationFields[$sourceFieldName] = $owningClassName;
+        if (isset($this->associationMappings[$mapping->sourceFieldName])) {
+            throw MappingException::duplicateAssociationMapping($this->name, $mapping->sourceFieldName);
         }
+        $this->associationMappings[$mapping->sourceFieldName] = $mapping;
     }
 
     /**
@@ -1037,7 +970,7 @@ class ClassMetadataInfo
      * @param array $mapping
      * @todo Rename: addInheritedFieldMapping
      */
-    public function addFieldMapping(array $fieldMapping)
+    public function addInheritedFieldMapping(array $fieldMapping)
     {
         $this->fieldMappings[$fieldMapping['fieldName']] = $fieldMapping;
         $this->columnNames[$fieldMapping['fieldName']] = $fieldMapping['columnName'];
@@ -1119,8 +1052,8 @@ class ClassMetadataInfo
      * Dispatches the lifecycle event of the given entity to the registered
      * lifecycle callbacks and lifecycle listeners.
      *
-     * @param string $event  The lifecycle event.
-     * @param Entity $entity  The Entity on which the event occured.
+     * @param string $event The lifecycle event.
+     * @param Entity $entity The Entity on which the event occured.
      */
     public function invokeLifecycleCallbacks($lifecycleEvent, $entity)
     {
@@ -1225,17 +1158,6 @@ class ClassMetadataInfo
         }
     }
 
-    /**
-     * Checks whether the given column name is the discriminator column.
-     *
-     * @param string $columnName
-     * @return boolean
-     */
-    public function isDiscriminatorColumn($columnName)
-    {
-        return $columnName === $this->discriminatorColumn['name'];
-    }
-
     /**
      * Checks whether the class has a mapped association with the given field name.
      *
@@ -1304,7 +1226,7 @@ class ClassMetadataInfo
 
     /**
      * Sets the version field mapping used for versioning. Sets the default
-     * value to use depending on the column type
+     * value to use depending on the column type.
      *
      * @param array $mapping   The version field mapping array
      */
diff --git a/lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php b/lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php
index c6e08abf4..9a68749b7 100644
--- a/lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php
+++ b/lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php
@@ -78,14 +78,10 @@ class JoinedSubclassPersister extends AbstractEntityInheritancePersister
     public function getOwningTable($fieldName)
     {
         if ( ! isset($this->_owningTableMap[$fieldName])) {
-            if (isset($this->_class->associationMappings[$fieldName])) {
-                if (isset($this->_class->inheritedAssociationFields[$fieldName])) {
-                    $this->_owningTableMap[$fieldName] = $this->_em->getClassMetadata(
-                        $this->_class->inheritedAssociationFields[$fieldName]
-                        )->table['name'];
-                } else {
-                    $this->_owningTableMap[$fieldName] = $this->_class->table['name'];
-                }
+            if (isset($this->_class->associationMappings[$fieldName]->inherited)) {
+                $this->_owningTableMap[$fieldName] = $this->_em->getClassMetadata(
+                    $this->_class->associationMappings[$fieldName]->inherited
+                    )->table['name'];
             } else if (isset($this->_class->fieldMappings[$fieldName]['inherited'])) {
                 $this->_owningTableMap[$fieldName] = $this->_em->getClassMetadata(
                     $this->_class->fieldMappings[$fieldName]['inherited']
@@ -252,9 +248,9 @@ class JoinedSubclassPersister extends AbstractEntityInheritancePersister
             // Add foreign key columns
             foreach ($this->_class->associationMappings as $assoc) {
                 if ($assoc->isOwningSide && $assoc->isOneToOne()) {
-                    $tableAlias = isset($this->_class->inheritedAssociationFields[$assoc->sourceFieldName]) ?
-                    $this->_getSQLTableAlias($this->_em->getClassMetadata($this->_class->inheritedAssociationFields[$assoc->sourceFieldName]))
-                    : $baseTableAlias;
+                    $tableAlias = $assoc->inherited ?
+                            $this->_getSQLTableAlias($this->_em->getClassMetadata($assoc->inherited))
+                            : $baseTableAlias;
                     foreach ($assoc->targetToSourceKeyColumns as $srcColumn) {
                         $columnAlias = $srcColumn . $this->_sqlAliasCounter++;
                         $columnList .= ", $tableAlias.$srcColumn AS $columnAlias";
@@ -308,7 +304,7 @@ class JoinedSubclassPersister extends AbstractEntityInheritancePersister
 
                 // Add join columns (foreign keys)
                 foreach ($subClass->associationMappings as $assoc2) {
-                    if ($assoc2->isOwningSide && $assoc2->isOneToOne() && ! isset($subClass->inheritedAssociationFields[$assoc2->sourceFieldName])) {
+                    if ($assoc2->isOwningSide && $assoc2->isOneToOne() && ! $assoc2->inherited) {
                         foreach ($assoc2->targetToSourceKeyColumns as $srcColumn) {
                             $columnAlias = $srcColumn . $this->_sqlAliasCounter++;
                             $columnList .= ', ' . $tableAlias . ".$srcColumn AS $columnAlias";
@@ -377,7 +373,7 @@ class JoinedSubclassPersister extends AbstractEntityInheritancePersister
 
         foreach ($this->_class->reflFields as $name => $field) {
             if (isset($this->_class->fieldMappings[$name]['inherited']) && ! isset($this->_class->fieldMappings[$name]['id'])
-                    || isset($this->_class->inheritedAssociationFields[$name])
+                    || isset($this->_class->associationMappings[$name]->inherited)
                     || ($this->_class->isVersioned && $this->_class->versionField == $name)) {
                 continue;
             }
diff --git a/lib/Doctrine/ORM/Persisters/SingleTablePersister.php b/lib/Doctrine/ORM/Persisters/SingleTablePersister.php
index 81bf6a1f4..a0adbea67 100644
--- a/lib/Doctrine/ORM/Persisters/SingleTablePersister.php
+++ b/lib/Doctrine/ORM/Persisters/SingleTablePersister.php
@@ -1,7 +1,5 @@
 <?php
 /*
- *  $Id$
- *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -63,7 +61,7 @@ class SingleTablePersister extends AbstractEntityInheritancePersister
 
             // Append subclass foreign keys
             foreach ($subClass->associationMappings as $assoc) {
-                if ($assoc->isOwningSide && $assoc->isOneToOne() && ! isset($subClass->inheritedAssociationFields[$assoc->sourceFieldName])) {
+                if ($assoc->isOwningSide && $assoc->isOneToOne() && ! $assoc->inherited) {
                     foreach ($assoc->targetToSourceKeyColumns as $srcColumn) {
                         $columnAlias = $srcColumn . $this->_sqlAliasCounter++;
                         $columnList .= ', ' . $tableAlias . ".$srcColumn AS $columnAlias";
diff --git a/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php b/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php
index cea3f37bd..f599cc74b 100644
--- a/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php
+++ b/lib/Doctrine/ORM/Persisters/StandardEntityPersister.php
@@ -695,6 +695,7 @@ class StandardEntityPersister
             $tableAlias = isset($this->_class->fieldMappings[$fieldName]['inherited']) ?
                     $this->_getSQLTableAlias($this->_em->getClassMetadata($this->_class->fieldMappings[$fieldName]['inherited']))
                     : $baseTableAlias;
+
             $columnName = $this->_class->getQuotedColumnName($fieldName, $this->_platform);
             if ($orderBySql != '') {
                 $orderBySql .= ', ';
diff --git a/lib/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php b/lib/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php
index add39dc83..ee9b1b7f0 100644
--- a/lib/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php
+++ b/lib/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php
@@ -1,7 +1,5 @@
 <?php
 /*
- *  $Id$
- *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -29,11 +27,8 @@ use Doctrine\DBAL\Connection,
  * Executes the SQL statements for bulk DQL UPDATE statements on classes in
  * Class Table Inheritance (JOINED).
  *
- * @author      Roman Borschel <roman@code-factory.org>
- * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
- * @link        http://www.doctrine-project.org
- * @since       2.0
- * @version     $Revision$
+ * @author Roman Borschel <roman@code-factory.org>
+ * @since 2.0
  */
 class MultiTableUpdateExecutor extends AbstractSqlExecutor
 {
diff --git a/lib/Doctrine/ORM/Query/SqlWalker.php b/lib/Doctrine/ORM/Query/SqlWalker.php
index 15296395b..4bc6c2f6f 100644
--- a/lib/Doctrine/ORM/Query/SqlWalker.php
+++ b/lib/Doctrine/ORM/Query/SqlWalker.php
@@ -466,8 +466,8 @@ class SqlWalker implements TreeWalker
                 $dqlAlias = $pathExpr->identificationVariable;
                 $class = $this->_queryComponents[$dqlAlias]['metadata'];
 
-                if (isset($class->inheritedAssociationFields[$fieldName])) {
-                    $class = $this->_em->getClassMetadata($class->inheritedAssociationFields[$fieldName]);
+                if (isset($class->associationMappings[$fieldName]->inherited)) {
+                    $class = $this->_em->getClassMetadata($class->associationMappings[$fieldName]->inherited);
                 }
 
                 $assoc = $class->associationMappings[$fieldName];
@@ -538,8 +538,8 @@ class SqlWalker implements TreeWalker
                     //FIXME: Include foreign key columns of child classes also!!??
                     foreach ($class->associationMappings as $assoc) {
                         if ($assoc->isOwningSide && $assoc->isOneToOne()) {
-                            if (isset($class->inheritedAssociationFields[$assoc->sourceFieldName])) {
-                                $owningClass = $this->_em->getClassMetadata($class->inheritedAssociationFields[$assoc->sourceFieldName]);
+                            if ($assoc->inherited) {
+                                $owningClass = $this->_em->getClassMetadata($assoc->inherited);
                                 $sqlTableAlias = $this->getSqlTableAlias($owningClass->table['name'], $dqlAlias);
                             } else {
                                 $sqlTableAlias = $this->getSqlTableAlias($class->table['name'], $dqlAlias);
@@ -958,7 +958,7 @@ class SqlWalker implements TreeWalker
                     // Add join columns (foreign keys) of the subclass
                     //TODO: Probably better do this in walkSelectClause to honor the INCLUDE_META_COLUMNS hint
                     foreach ($subClass->associationMappings as $fieldName => $assoc) {
-                        if ($assoc->isOwningSide && $assoc->isOneToOne() && ! isset($subClass->inheritedAssociationFields[$fieldName])) {
+                        if ($assoc->isOwningSide && $assoc->isOneToOne() && ! $assoc->inherited) {
                             foreach ($assoc->targetToSourceKeyColumns as $srcColumn) {
                                 if ($beginning) $beginning = false; else $sql .= ', ';
                                 $columnAlias = $this->getSqlColumnAlias($srcColumn);
diff --git a/lib/Doctrine/ORM/Tools/SchemaTool.php b/lib/Doctrine/ORM/Tools/SchemaTool.php
index 5897e0a72..52942ead7 100644
--- a/lib/Doctrine/ORM/Tools/SchemaTool.php
+++ b/lib/Doctrine/ORM/Tools/SchemaTool.php
@@ -347,7 +347,7 @@ class SchemaTool
     private function _gatherRelationsSql($class, $table, $schema)
     {
         foreach ($class->associationMappings as $fieldName => $mapping) {
-            if (isset($class->inheritedAssociationFields[$fieldName])) {
+            if ($mapping->inherited) {
                 continue;
             }
 
diff --git a/phpdoc.ini b/phpdoc.ini
new file mode 100644
index 000000000..2e2d320ce
--- /dev/null
+++ b/phpdoc.ini
@@ -0,0 +1,126 @@
+; Default configuration file for PHPDoctor
+
+; This config file will cause PHPDoctor to generate API documentation of
+; itself.
+
+
+; PHPDoctor settings
+; -----------------------------------------------------------------------------
+
+; Names of files to parse. This can be a single filename, or a comma separated
+; list of filenames. Wildcards are allowed.
+
+;files = "*.php"
+files = *.php
+
+; Names of files or directories to ignore. This can be a single filename, or a
+; comma separated list of filenames. Wildcards are NOT allowed.
+
+ignore = "CVS, .svn, .git, _compiled, vendor"
+
+; The directory to look for files in, if not used the PHPDoctor will look in
+; the current directory (the directory it is run from).
+
+source_path = "./lib"
+
+; If you do not want PHPDoctor to look in each sub directory for files
+; uncomment this line.
+
+;subdirs = off
+
+; Set how loud PHPDoctor is as it runs. Quiet mode suppresses all output other
+; than warnings and errors. Verbose mode outputs additional messages during
+; execution.
+
+;quiet = on
+;verbose = on
+
+; Select the doclet to use for generating output.
+
+doclet = standard
+;doclet = debug
+
+; The directory to find the doclet in. Doclets are expected to be in a
+; directory named after themselves at the location given.
+
+;doclet_path = ./doclets
+
+; The directory to find taglets in. Taglets allow you to make PHPDoctor handle
+; new tags and to alter the behavour of existing tags and their output.
+
+;taglet_path = ./taglets
+
+; If the code you are parsing does not use package tags or not all elements
+; have package tags, use this setting to place unbound elements into a
+; particular package.
+
+default_package = "Doctrine"
+
+; Specifies the name of a HTML file containing text for the overview
+; documentation to be placed on the overview page. The path is relative to
+; "source_path" unless an absolute path is given.
+
+overview = readme.html
+
+; Package comments will be looked for in a file named package.html in the same
+; directory as the first source file parsed in that package or in the directory
+; given below. If package comments are placed in the directory given below then
+; they should be named "<packageName>.html".
+
+package_comment_dir = ./
+
+; Parse out global variables and/or global constants?
+
+;globals = off
+;constants = off
+
+; Generate documentation for all class members
+
+;private = on
+
+; Generate documentation for public and protected class members
+
+protected = on
+
+; Generate documentation for only public class members
+
+;public = on
+
+; Use the PEAR compatible handling of the docblock first sentence
+
+;pear_compat = on
+
+; Standard doclet settings
+; -----------------------------------------------------------------------------
+
+; The directory to place generated documentation in. If the given path is
+; relative to it will be relative to "source_path".
+
+d = "api"
+
+; Specifies the title to be placed in the HTML <title> tag.
+
+windowtitle = "Doctrine"
+
+; Specifies the title to be placed near the top of the overview summary file.
+
+doctitle = "Doctrine: PHP Object-Relational Mapper"
+
+; Specifies the header text to be placed at the top of each output file. The
+; header will be placed to the right of the upper navigation bar. 
+
+header = "Doctrine"
+
+; Specifies the footer text to be placed at the bottom of each output file. The
+; footer will be placed to the right of the lower navigation bar.
+
+footer = "Doctrine"
+
+; Specifies the text to be placed at the bottom of each output file. The text
+; will be placed at the bottom of the page, below the lower navigation bar.
+
+;bottom = "This document was generated by <a href="http://phpdoctor.sourceforge.net/">PHPDoctor: The PHP Documentation Creator</a>"
+
+; Create a class tree?
+
+;tree = off
diff --git a/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php b/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php
index e7c3bbfb8..fdaf30f41 100644
--- a/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php
+++ b/tests/Doctrine/Tests/ORM/Mapping/BasicInheritanceMappingTest.php
@@ -48,7 +48,6 @@ class BasicInheritanceMappingTest extends \Doctrine\Tests\OrmTestCase
         $this->assertFalse(isset($class->fieldMappings['mapped2']['inherited']));
         $this->assertFalse(isset($class->fieldMappings['transient']));
         
-        $this->assertTrue(empty($class->inheritedAssociationFields));
         $this->assertTrue(isset($class->associationMappings['mappedRelated1']));
     }
 
@@ -64,6 +63,7 @@ class BasicInheritanceMappingTest extends \Doctrine\Tests\OrmTestCase
 
         $this->assertTrue(isset($class2->reflFields['mapped1']));
         $this->assertTrue(isset($class2->reflFields['mapped2']));
+        $this->assertTrue(isset($class2->reflFields['mappedRelated1']));
     }
 }
 
diff --git a/tests/Doctrine/Tests/ORM/Mapping/ClassMetadataTest.php b/tests/Doctrine/Tests/ORM/Mapping/ClassMetadataTest.php
index dcc6b8210..b31f5077c 100644
--- a/tests/Doctrine/Tests/ORM/Mapping/ClassMetadataTest.php
+++ b/tests/Doctrine/Tests/ORM/Mapping/ClassMetadataTest.php
@@ -162,9 +162,9 @@ class ClassMetadataTest extends \Doctrine\Tests\OrmTestCase
         $a1 = new \Doctrine\ORM\Mapping\OneToOneMapping(array('fieldName' => 'foo', 'sourceEntity' => 'stdClass', 'targetEntity' => 'stdClass', 'mappedBy' => 'foo'));
         $a2 = new \Doctrine\ORM\Mapping\OneToOneMapping(array('fieldName' => 'foo', 'sourceEntity' => 'stdClass', 'targetEntity' => 'stdClass', 'mappedBy' => 'foo'));
 
-        $cm->addAssociationMapping($a1);
+        $cm->addInheritedAssociationMapping($a1);
         $this->setExpectedException('Doctrine\ORM\Mapping\MappingException');
-        $cm->addAssociationMapping($a2);
+        $cm->addInheritedAssociationMapping($a2);
     }
 
     public function testDuplicateColumnName_ThrowsMappingException()

From 10acab655d4a104fdecb22389d2499b4adc78a00 Mon Sep 17 00:00:00 2001
From: "Roman S. Borschel" <roman.borschel@googlemail.com>
Date: Wed, 14 Apr 2010 17:13:14 +0200
Subject: [PATCH 09/15] Adding new API docs.

---
 lib/api/allitems-frame.html                   |  338 ++
 lib/api/deprecated-list.html                  |   64 +
 .../common/annotations/annotation.html        |  131 +
 .../annotations/annotationexception.html      |  126 +
 .../common/annotations/annotationreader.html  |  260 +
 .../doctrine/common/annotations/lexer.html    |  317 ++
 .../common/annotations/package-frame.html     |   30 +
 .../common/annotations/package-functions.html |   69 +
 .../common/annotations/package-globals.html   |   69 +
 .../common/annotations/package-summary.html   |   68 +
 .../common/annotations/package-tree.html      |   58 +
 .../doctrine/common/annotations/parser.html   |  296 +
 .../doctrine/common/cache/abstractcache.html  |  239 +
 lib/api/doctrine/common/cache/apccache.html   |  126 +
 lib/api/doctrine/common/cache/arraycache.html |  124 +
 lib/api/doctrine/common/cache/cache.html      |  174 +
 .../doctrine/common/cache/memcachecache.html  |  148 +
 .../doctrine/common/cache/package-frame.html  |   35 +
 .../common/cache/package-functions.html       |   69 +
 .../common/cache/package-globals.html         |   69 +
 .../common/cache/package-summary.html         |   73 +
 .../doctrine/common/cache/package-tree.html   |   62 +
 .../doctrine/common/cache/xcachecache.html    |  124 +
 lib/api/doctrine/common/classloader.html      |  235 +
 .../common/collections/arraycollection.html   |  567 ++
 .../common/collections/collection.html        |  485 ++
 .../common/collections/package-frame.html     |   31 +
 .../common/collections/package-functions.html |   69 +
 .../common/collections/package-globals.html   |   69 +
 .../common/collections/package-summary.html   |   71 +
 .../common/collections/package-tree.html      |   56 +
 lib/api/doctrine/common/commonexception.html  |   87 +
 lib/api/doctrine/common/eventargs.html        |  122 +
 lib/api/doctrine/common/eventmanager.html     |  198 +
 lib/api/doctrine/common/eventsubscriber.html  |  112 +
 lib/api/doctrine/common/lexer.html            |  313 ++
 .../common/notifypropertychanged.html         |  112 +
 lib/api/doctrine/common/package-frame.html    |   42 +
 .../doctrine/common/package-functions.html    |   69 +
 lib/api/doctrine/common/package-globals.html  |   69 +
 lib/api/doctrine/common/package-summary.html  |   86 +
 lib/api/doctrine/common/package-tree.html     |   60 +
 .../common/propertychangedlistener.html       |  119 +
 lib/api/doctrine/common/util/debug.html       |  147 +
 lib/api/doctrine/common/util/inflector.html   |  152 +
 .../doctrine/common/util/package-frame.html   |   27 +
 .../common/util/package-functions.html        |   69 +
 .../doctrine/common/util/package-globals.html |   69 +
 .../doctrine/common/util/package-summary.html |   66 +
 .../doctrine/common/util/package-tree.html    |   57 +
 lib/api/doctrine/common/version.html          |  135 +
 lib/api/doctrine/dbal/configuration.html      |  160 +
 lib/api/doctrine/dbal/connection.html         |  996 ++++
 .../doctrine/dbal/connectionexception.html    |  129 +
 lib/api/doctrine/dbal/dbalexception.html      |  242 +
 lib/api/doctrine/dbal/driver.html             |  175 +
 lib/api/doctrine/dbal/driver/connection.html  |  210 +
 lib/api/doctrine/dbal/driver/oci8/driver.html |  156 +
 .../dbal/driver/oci8/oci8connection.html      |  230 +
 .../dbal/driver/oci8/oci8exception.html       |   98 +
 .../dbal/driver/oci8/oci8statement.html       |  253 +
 .../dbal/driver/oci8/package-frame.html       |   33 +
 .../dbal/driver/oci8/package-functions.html   |   69 +
 .../dbal/driver/oci8/package-globals.html     |   69 +
 .../dbal/driver/oci8/package-summary.html     |   71 +
 .../dbal/driver/oci8/package-tree.html        |   58 +
 .../doctrine/dbal/driver/package-frame.html   |   33 +
 .../dbal/driver/package-functions.html        |   69 +
 .../doctrine/dbal/driver/package-globals.html |   69 +
 .../doctrine/dbal/driver/package-summary.html |   75 +
 .../doctrine/dbal/driver/package-tree.html    |   56 +
 .../doctrine/dbal/driver/pdoconnection.html   |  109 +
 .../dbal/driver/pdomssql/connection.html      |  142 +
 .../doctrine/dbal/driver/pdomssql/driver.html |  154 +
 .../dbal/driver/pdomssql/package-frame.html   |   27 +
 .../driver/pdomssql/package-functions.html    |   69 +
 .../dbal/driver/pdomssql/package-globals.html |   69 +
 .../dbal/driver/pdomssql/package-summary.html |   65 +
 .../dbal/driver/pdomssql/package-tree.html    |   56 +
 .../doctrine/dbal/driver/pdomysql/driver.html |  154 +
 .../dbal/driver/pdomysql/package-frame.html   |   26 +
 .../driver/pdomysql/package-functions.html    |   69 +
 .../dbal/driver/pdomysql/package-globals.html |   69 +
 .../dbal/driver/pdomysql/package-summary.html |   64 +
 .../dbal/driver/pdomysql/package-tree.html    |   56 +
 .../dbal/driver/pdooracle/driver.html         |  148 +
 .../dbal/driver/pdooracle/package-frame.html  |   26 +
 .../driver/pdooracle/package-functions.html   |   69 +
 .../driver/pdooracle/package-globals.html     |   69 +
 .../driver/pdooracle/package-summary.html     |   64 +
 .../dbal/driver/pdooracle/package-tree.html   |   56 +
 .../doctrine/dbal/driver/pdopgsql/driver.html |  154 +
 .../dbal/driver/pdopgsql/package-frame.html   |   26 +
 .../driver/pdopgsql/package-functions.html    |   69 +
 .../dbal/driver/pdopgsql/package-globals.html |   69 +
 .../dbal/driver/pdopgsql/package-summary.html |   64 +
 .../dbal/driver/pdopgsql/package-tree.html    |   56 +
 .../dbal/driver/pdosqlite/driver.html         |  171 +
 .../dbal/driver/pdosqlite/package-frame.html  |   26 +
 .../driver/pdosqlite/package-functions.html   |   69 +
 .../driver/pdosqlite/package-globals.html     |   69 +
 .../driver/pdosqlite/package-summary.html     |   64 +
 .../dbal/driver/pdosqlite/package-tree.html   |   56 +
 .../doctrine/dbal/driver/pdostatement.html    |  106 +
 lib/api/doctrine/dbal/driver/statement.html   |  331 ++
 lib/api/doctrine/dbal/drivermanager.html      |  142 +
 .../dbal/event/connectioneventargs.html       |  168 +
 .../event/listeners/mysqlsessioninit.html     |  142 +
 .../event/listeners/oraclesessioninit.html    |  162 +
 .../dbal/event/listeners/package-frame.html   |   27 +
 .../event/listeners/package-functions.html    |   69 +
 .../dbal/event/listeners/package-globals.html |   69 +
 .../dbal/event/listeners/package-summary.html |   66 +
 .../dbal/event/listeners/package-tree.html    |   57 +
 .../doctrine/dbal/event/package-frame.html    |   26 +
 .../dbal/event/package-functions.html         |   69 +
 .../doctrine/dbal/event/package-globals.html  |   69 +
 .../doctrine/dbal/event/package-summary.html  |   64 +
 lib/api/doctrine/dbal/event/package-tree.html |   59 +
 lib/api/doctrine/dbal/events.html             |  167 +
 lib/api/doctrine/dbal/logging/debugstack.html |  141 +
 .../doctrine/dbal/logging/echosqllogger.html  |  112 +
 .../doctrine/dbal/logging/package-frame.html  |   32 +
 .../dbal/logging/package-functions.html       |   69 +
 .../dbal/logging/package-globals.html         |   69 +
 .../dbal/logging/package-summary.html         |   70 +
 .../doctrine/dbal/logging/package-tree.html   |   57 +
 lib/api/doctrine/dbal/logging/sqllogger.html  |  117 +
 lib/api/doctrine/dbal/package-frame.html      |   41 +
 lib/api/doctrine/dbal/package-functions.html  |   69 +
 lib/api/doctrine/dbal/package-globals.html    |   69 +
 lib/api/doctrine/dbal/package-summary.html    |   84 +
 lib/api/doctrine/dbal/package-tree.html       |   60 +
 .../dbal/platforms/abstractplatform.html      | 1972 +++++++
 .../dbal/platforms/mssqlplatform.html         |  548 ++
 .../dbal/platforms/mysqlplatform.html         |  661 +++
 .../dbal/platforms/oracleplatform.html        |  743 +++
 .../dbal/platforms/package-frame.html         |   31 +
 .../dbal/platforms/package-functions.html     |   69 +
 .../dbal/platforms/package-globals.html       |   69 +
 .../dbal/platforms/package-summary.html       |   72 +
 .../doctrine/dbal/platforms/package-tree.html |   63 +
 .../dbal/platforms/postgresqlplatform.html    |  731 +++
 .../dbal/platforms/sqliteplatform.html        |  563 ++
 .../doctrine/dbal/schema/abstractasset.html   |  127 +
 .../dbal/schema/abstractschemamanager.html    |  689 +++
 lib/api/doctrine/dbal/schema/column.html      |  561 ++
 lib/api/doctrine/dbal/schema/columndiff.html  |  166 +
 lib/api/doctrine/dbal/schema/comparator.html  |  204 +
 lib/api/doctrine/dbal/schema/constraint.html  |  121 +
 .../dbal/schema/foreignkeyconstraint.html     |  327 ++
 lib/api/doctrine/dbal/schema/index.html       |  219 +
 .../dbal/schema/mssqlschemamanager.html       |  301 +
 .../dbal/schema/mysqlschemamanager.html       |  104 +
 .../dbal/schema/oracleschemamanager.html      |  152 +
 .../doctrine/dbal/schema/package-frame.html   |   50 +
 .../dbal/schema/package-functions.html        |   69 +
 .../doctrine/dbal/schema/package-globals.html |   69 +
 .../doctrine/dbal/schema/package-summary.html |   91 +
 .../doctrine/dbal/schema/package-tree.html    |   78 +
 .../dbal/schema/postgresqlschemamanager.html  |  141 +
 lib/api/doctrine/dbal/schema/schema.html      |  373 ++
 .../doctrine/dbal/schema/schemaconfig.html    |  174 +
 lib/api/doctrine/dbal/schema/schemadiff.html  |  231 +
 .../doctrine/dbal/schema/schemaexception.html |  355 ++
 lib/api/doctrine/dbal/schema/sequence.html    |  189 +
 .../dbal/schema/sqliteschemamanager.html      |  142 +
 lib/api/doctrine/dbal/schema/table.html       |  621 +++
 lib/api/doctrine/dbal/schema/tablediff.html   |  260 +
 lib/api/doctrine/dbal/schema/view.html        |  136 +
 .../visitor/createschemasqlcollector.html     |  195 +
 .../visitor/dropschemasqlcollector.html       |  209 +
 .../dbal/schema/visitor/fixschema.html        |  171 +
 .../dbal/schema/visitor/package-frame.html    |   33 +
 .../schema/visitor/package-functions.html     |   69 +
 .../dbal/schema/visitor/package-globals.html  |   69 +
 .../dbal/schema/visitor/package-summary.html  |   71 +
 .../dbal/schema/visitor/package-tree.html     |   58 +
 .../doctrine/dbal/schema/visitor/visitor.html |  169 +
 lib/api/doctrine/dbal/statement.html          |  302 +
 .../tools/console/command/importcommand.html  |  136 +
 .../tools/console/command/package-frame.html  |   27 +
 .../console/command/package-functions.html    |   69 +
 .../console/command/package-globals.html      |   69 +
 .../console/command/package-summary.html      |   67 +
 .../tools/console/command/package-tree.html   |   53 +
 .../tools/console/command/runsqlcommand.html  |  136 +
 .../console/helper/connectionhelper.html      |  168 +
 .../tools/console/helper/package-frame.html   |   26 +
 .../console/helper/package-functions.html     |   69 +
 .../tools/console/helper/package-globals.html |   69 +
 .../tools/console/helper/package-summary.html |   64 +
 .../tools/console/helper/package-tree.html    |   53 +
 lib/api/doctrine/dbal/types/arraytype.html    |  177 +
 lib/api/doctrine/dbal/types/biginttype.html   |  154 +
 lib/api/doctrine/dbal/types/booleantype.html  |  196 +
 lib/api/doctrine/dbal/types/datetimetype.html |  177 +
 lib/api/doctrine/dbal/types/datetype.html     |  177 +
 lib/api/doctrine/dbal/types/decimaltype.html  |  156 +
 lib/api/doctrine/dbal/types/integertype.html  |  175 +
 lib/api/doctrine/dbal/types/objecttype.html   |  177 +
 .../doctrine/dbal/types/package-frame.html    |   38 +
 .../dbal/types/package-functions.html         |   69 +
 .../doctrine/dbal/types/package-globals.html  |   69 +
 .../doctrine/dbal/types/package-summary.html  |   77 +
 lib/api/doctrine/dbal/types/package-tree.html |   70 +
 lib/api/doctrine/dbal/types/smallinttype.html |  175 +
 lib/api/doctrine/dbal/types/stringtype.html   |  151 +
 lib/api/doctrine/dbal/types/texttype.html     |  135 +
 lib/api/doctrine/dbal/types/timetype.html     |  173 +
 lib/api/doctrine/dbal/types/type.html         |  457 ++
 lib/api/doctrine/orm/abstractquery.html       |  732 +++
 lib/api/doctrine/orm/configuration.html       |  554 ++
 lib/api/doctrine/orm/entitymanager.html       |  608 +++
 .../doctrine/orm/entitynotfoundexception.html |  110 +
 lib/api/doctrine/orm/entityrepository.html    |  251 +
 .../orm/event/lifecycleeventargs.html         |  142 +
 .../orm/event/loadclassmetadataeventargs.html |  132 +
 .../doctrine/orm/event/onflusheventargs.html  |  129 +
 lib/api/doctrine/orm/event/package-frame.html |   29 +
 .../doctrine/orm/event/package-functions.html |   69 +
 .../doctrine/orm/event/package-globals.html   |   69 +
 .../doctrine/orm/event/package-summary.html   |   68 +
 lib/api/doctrine/orm/event/package-tree.html  |   59 +
 .../orm/event/preupdateeventargs.html         |  176 +
 lib/api/doctrine/orm/events.html              |  245 +
 .../doctrine/orm/id/abstractidgenerator.html  |  113 +
 .../doctrine/orm/id/assignedgenerator.html    |  122 +
 .../doctrine/orm/id/identitygenerator.html    |  120 +
 lib/api/doctrine/orm/id/package-frame.html    |   31 +
 .../doctrine/orm/id/package-functions.html    |   69 +
 lib/api/doctrine/orm/id/package-globals.html  |   69 +
 lib/api/doctrine/orm/id/package-summary.html  |   69 +
 lib/api/doctrine/orm/id/package-tree.html     |   65 +
 .../doctrine/orm/id/sequencegenerator.html    |  185 +
 .../orm/id/sequenceidentitygenerator.html     |  141 +
 lib/api/doctrine/orm/id/tablegenerator.html   |  135 +
 .../orm/internal/commitordercalculator.html   |  199 +
 .../internal/hydration/abstracthydrator.html  |  246 +
 .../orm/internal/hydration/arrayhydrator.html |  104 +
 .../hydration/hydrationexception.html         |  110 +
 .../internal/hydration/iterableresult.html    |  168 +
 .../internal/hydration/objecthydrator.html    |  105 +
 .../orm/internal/hydration/package-frame.html |   32 +
 .../internal/hydration/package-functions.html |   69 +
 .../internal/hydration/package-globals.html   |   69 +
 .../internal/hydration/package-summary.html   |   73 +
 .../orm/internal/hydration/package-tree.html  |   63 +
 .../internal/hydration/scalarhydrator.html    |  105 +
 .../hydration/singlescalarhydrator.html       |  103 +
 .../doctrine/orm/internal/package-frame.html  |   26 +
 .../orm/internal/package-functions.html       |   69 +
 .../orm/internal/package-globals.html         |   69 +
 .../orm/internal/package-summary.html         |   65 +
 .../doctrine/orm/internal/package-tree.html   |   56 +
 .../orm/mapping/associationmapping.html       |  471 ++
 .../orm/mapping/changetrackingpolicy.html     |  101 +
 .../doctrine/orm/mapping/classmetadata.html   |  309 ++
 .../orm/mapping/classmetadatafactory.html     |  221 +
 .../orm/mapping/classmetadatainfo.html        | 1635 ++++++
 lib/api/doctrine/orm/mapping/column.html      |  214 +
 .../orm/mapping/discriminatorcolumn.html      |  154 +
 .../orm/mapping/discriminatormap.html         |  101 +
 .../mapping/driver/abstractfiledriver.html    |  262 +
 .../orm/mapping/driver/annotationdriver.html  |  277 +
 .../orm/mapping/driver/databasedriver.html    |  161 +
 .../doctrine/orm/mapping/driver/driver.html   |  142 +
 .../orm/mapping/driver/driverchain.html       |  179 +
 .../orm/mapping/driver/package-frame.html     |   37 +
 .../orm/mapping/driver/package-functions.html |   69 +
 .../orm/mapping/driver/package-globals.html   |   69 +
 .../orm/mapping/driver/package-summary.html   |   78 +
 .../orm/mapping/driver/package-tree.html      |   64 +
 .../orm/mapping/driver/phpdriver.html         |  157 +
 .../orm/mapping/driver/xmldriver.html         |  142 +
 .../orm/mapping/driver/yamldriver.html        |  142 +
 .../orm/mapping/elementcollection.html        |  118 +
 lib/api/doctrine/orm/mapping/entity.html      |  118 +
 .../doctrine/orm/mapping/generatedvalue.html  |  118 +
 .../orm/mapping/haslifecyclecallbacks.html    |  101 +
 lib/api/doctrine/orm/mapping/id.html          |  101 +
 lib/api/doctrine/orm/mapping/index.html       |  130 +
 .../doctrine/orm/mapping/inheritancetype.html |  101 +
 lib/api/doctrine/orm/mapping/joincolumn.html  |  202 +
 lib/api/doctrine/orm/mapping/joincolumns.html |  101 +
 lib/api/doctrine/orm/mapping/jointable.html   |  154 +
 lib/api/doctrine/orm/mapping/manytomany.html  |  166 +
 .../orm/mapping/manytomanymapping.html        |  196 +
 lib/api/doctrine/orm/mapping/manytoone.html   |  154 +
 .../orm/mapping/mappedsuperclass.html         |  101 +
 .../orm/mapping/mappingexception.html         |  419 ++
 lib/api/doctrine/orm/mapping/onetomany.html   |  166 +
 .../orm/mapping/onetomanymapping.html         |  190 +
 lib/api/doctrine/orm/mapping/onetoone.html    |  178 +
 .../doctrine/orm/mapping/onetoonemapping.html |  216 +
 lib/api/doctrine/orm/mapping/orderby.html     |  101 +
 .../doctrine/orm/mapping/package-frame.html   |   64 +
 .../orm/mapping/package-functions.html        |   69 +
 .../doctrine/orm/mapping/package-globals.html |   69 +
 .../doctrine/orm/mapping/package-summary.html |  114 +
 .../doctrine/orm/mapping/package-tree.html    |  100 +
 lib/api/doctrine/orm/mapping/postload.html    |  101 +
 lib/api/doctrine/orm/mapping/postpersist.html |  101 +
 lib/api/doctrine/orm/mapping/postremove.html  |  101 +
 lib/api/doctrine/orm/mapping/postupdate.html  |  101 +
 lib/api/doctrine/orm/mapping/prepersist.html  |  101 +
 lib/api/doctrine/orm/mapping/preremove.html   |  101 +
 lib/api/doctrine/orm/mapping/preupdate.html   |  101 +
 .../orm/mapping/sequencegenerator.html        |  142 +
 lib/api/doctrine/orm/mapping/table.html       |  154 +
 .../orm/mapping/uniqueconstraint.html         |  130 +
 lib/api/doctrine/orm/mapping/version.html     |  101 +
 lib/api/doctrine/orm/nativequery.html         |  141 +
 .../orm/nonuniqueresultexception.html         |   94 +
 lib/api/doctrine/orm/noresultexception.html   |  110 +
 .../doctrine/orm/optimisticlockexception.html |  111 +
 lib/api/doctrine/orm/ormexception.html        |  310 ++
 lib/api/doctrine/orm/package-frame.html       |   44 +
 lib/api/doctrine/orm/package-functions.html   |   69 +
 lib/api/doctrine/orm/package-globals.html     |   69 +
 lib/api/doctrine/orm/package-summary.html     |   90 +
 lib/api/doctrine/orm/package-tree.html        |   66 +
 .../doctrine/orm/persistentcollection.html    |  714 +++
 .../abstractcollectionpersister.html          |  198 +
 .../abstractentityinheritancepersister.html   |  103 +
 .../elementcollectionpersister.html           |   99 +
 .../persisters/joinedsubclasspersister.html   |  167 +
 .../orm/persisters/manytomanypersister.html   |   97 +
 .../orm/persisters/onetomanypersister.html    |  101 +
 .../orm/persisters/package-frame.html         |   34 +
 .../orm/persisters/package-functions.html     |   69 +
 .../orm/persisters/package-globals.html       |   69 +
 .../orm/persisters/package-summary.html       |   78 +
 .../doctrine/orm/persisters/package-tree.html |   70 +
 .../orm/persisters/singletablepersister.html  |   97 +
 .../persisters/standardentitypersister.html   |  443 ++
 .../persisters/unionsubclasspersister.html    |  103 +
 lib/api/doctrine/orm/proxy/package-frame.html |   32 +
 .../doctrine/orm/proxy/package-functions.html |   69 +
 .../doctrine/orm/proxy/package-globals.html   |   69 +
 .../doctrine/orm/proxy/package-summary.html   |   70 +
 lib/api/doctrine/orm/proxy/package-tree.html  |   56 +
 lib/api/doctrine/orm/proxy/proxy.html         |   86 +
 .../doctrine/orm/proxy/proxyexception.html    |  124 +
 lib/api/doctrine/orm/proxy/proxyfactory.html  |  148 +
 lib/api/doctrine/orm/query.html               |  582 ++
 .../orm/query/ast/aggregateexpression.html    |  176 +
 .../orm/query/ast/arithmeticexpression.html   |  172 +
 .../orm/query/ast/arithmeticfactor.html       |  188 +
 .../orm/query/ast/arithmeticterm.html         |  152 +
 .../doctrine/orm/query/ast/astexception.html  |  105 +
 .../orm/query/ast/betweenexpression.html      |  188 +
 .../query/ast/collectionmemberexpression.html |  176 +
 .../orm/query/ast/comparisonexpression.html   |  181 +
 .../orm/query/ast/conditionalexpression.html  |  152 +
 .../orm/query/ast/conditionalfactor.html      |  164 +
 .../orm/query/ast/conditionalprimary.html     |  172 +
 .../orm/query/ast/conditionalterm.html        |  152 +
 .../doctrine/orm/query/ast/deleteclause.html  |  164 +
 .../orm/query/ast/deletestatement.html        |  164 +
 .../emptycollectioncomparisonexpression.html  |  164 +
 .../orm/query/ast/existsexpression.html       |  164 +
 .../doctrine/orm/query/ast/fromclause.html    |  152 +
 .../orm/query/ast/functions/absfunction.html  |  162 +
 .../query/ast/functions/concatfunction.html   |  174 +
 .../ast/functions/currentdatefunction.html    |  145 +
 .../ast/functions/currenttimefunction.html    |  145 +
 .../functions/currenttimestampfunction.html   |  143 +
 .../orm/query/ast/functions/functionnode.html |  176 +
 .../query/ast/functions/lengthfunction.html   |  162 +
 .../query/ast/functions/locatefunction.html   |  186 +
 .../query/ast/functions/lowerfunction.html    |  162 +
 .../orm/query/ast/functions/modfunction.html  |  174 +
 .../query/ast/functions/package-frame.html    |   40 +
 .../ast/functions/package-functions.html      |   69 +
 .../query/ast/functions/package-globals.html  |   69 +
 .../query/ast/functions/package-summary.html  |   78 +
 .../orm/query/ast/functions/package-tree.html |   75 +
 .../orm/query/ast/functions/sizefunction.html |  165 +
 .../orm/query/ast/functions/sqrtfunction.html |  162 +
 .../ast/functions/substringfunction.html      |  186 +
 .../orm/query/ast/functions/trimfunction.html |  210 +
 .../query/ast/functions/upperfunction.html    |  162 +
 .../doctrine/orm/query/ast/groupbyclause.html |  152 +
 .../doctrine/orm/query/ast/havingclause.html  |  152 +
 .../identificationvariabledeclaration.html    |  176 +
 lib/api/doctrine/orm/query/ast/indexby.html   |  152 +
 .../doctrine/orm/query/ast/inexpression.html  |  188 +
 .../orm/query/ast/inputparameter.html         |  164 +
 lib/api/doctrine/orm/query/ast/join.html      |  225 +
 .../ast/joinassociationpathexpression.html    |  164 +
 .../query/ast/joinvariabledeclaration.html    |  164 +
 .../orm/query/ast/likeexpression.html         |  188 +
 lib/api/doctrine/orm/query/ast/literal.html   |  200 +
 lib/api/doctrine/orm/query/ast/node.html      |  124 +
 .../query/ast/nullcomparisonexpression.html   |  164 +
 .../doctrine/orm/query/ast/orderbyclause.html |  152 +
 .../doctrine/orm/query/ast/orderbyitem.html   |  188 +
 .../doctrine/orm/query/ast/package-frame.html |   73 +
 .../orm/query/ast/package-functions.html      |   69 +
 .../orm/query/ast/package-globals.html        |   69 +
 .../orm/query/ast/package-summary.html        |  128 +
 .../doctrine/orm/query/ast/package-tree.html  |  104 +
 .../query/ast/partialobjectexpression.html    |  146 +
 .../orm/query/ast/pathexpression.html         |  231 +
 .../orm/query/ast/quantifiedexpression.html   |  202 +
 .../query/ast/rangevariabledeclaration.html   |  164 +
 .../doctrine/orm/query/ast/selectclause.html  |  164 +
 .../orm/query/ast/selectexpression.html       |  165 +
 .../orm/query/ast/selectstatement.html        |  212 +
 .../query/ast/simplearithmeticexpression.html |  152 +
 .../orm/query/ast/simpleselectclause.html     |  164 +
 .../orm/query/ast/simpleselectexpression.html |  165 +
 lib/api/doctrine/orm/query/ast/subselect.html |  212 +
 .../orm/query/ast/subselectfromclause.html    |  152 +
 .../doctrine/orm/query/ast/updateclause.html  |  176 +
 .../doctrine/orm/query/ast/updateitem.html    |  178 +
 .../orm/query/ast/updatestatement.html        |  164 +
 .../doctrine/orm/query/ast/whereclause.html   |  152 +
 .../orm/query/exec/abstractsqlexecutor.html   |  147 +
 .../query/exec/multitabledeleteexecutor.html  |  152 +
 .../query/exec/multitableupdateexecutor.html  |  150 +
 .../orm/query/exec/package-frame.html         |   30 +
 .../orm/query/exec/package-functions.html     |   69 +
 .../orm/query/exec/package-globals.html       |   69 +
 .../orm/query/exec/package-summary.html       |   71 +
 .../doctrine/orm/query/exec/package-tree.html |   62 +
 .../orm/query/exec/singleselectexecutor.html  |  143 +
 .../exec/singletabledeleteupdateexecutor.html |  144 +
 lib/api/doctrine/orm/query/expr.html          |  767 +++
 lib/api/doctrine/orm/query/expr/andx.html     |  134 +
 lib/api/doctrine/orm/query/expr/base.html     |  204 +
 .../doctrine/orm/query/expr/comparison.html   |  187 +
 lib/api/doctrine/orm/query/expr/from.html     |  139 +
 lib/api/doctrine/orm/query/expr/func.html     |  110 +
 lib/api/doctrine/orm/query/expr/groupby.html  |  134 +
 lib/api/doctrine/orm/query/expr/join.html     |  163 +
 lib/api/doctrine/orm/query/expr/literal.html  |  134 +
 lib/api/doctrine/orm/query/expr/math.html     |  110 +
 lib/api/doctrine/orm/query/expr/orderby.html  |  192 +
 lib/api/doctrine/orm/query/expr/orx.html      |  134 +
 .../orm/query/expr/package-frame.html         |   37 +
 .../orm/query/expr/package-functions.html     |   69 +
 .../orm/query/expr/package-globals.html       |   69 +
 .../orm/query/expr/package-summary.html       |   75 +
 .../doctrine/orm/query/expr/package-tree.html |   69 +
 lib/api/doctrine/orm/query/expr/select.html   |  134 +
 lib/api/doctrine/orm/query/lexer.html         | 1009 ++++
 lib/api/doctrine/orm/query/package-frame.html |   40 +
 .../doctrine/orm/query/package-functions.html |   69 +
 .../doctrine/orm/query/package-globals.html   |   69 +
 .../doctrine/orm/query/package-summary.html   |   83 +
 lib/api/doctrine/orm/query/package-tree.html  |   63 +
 lib/api/doctrine/orm/query/parser.html        | 1315 +++++
 lib/api/doctrine/orm/query/parserresult.html  |  218 +
 lib/api/doctrine/orm/query/printer.html       |  194 +
 .../doctrine/orm/query/queryexception.html    |  271 +
 .../doctrine/orm/query/resultsetmapping.html  |  607 ++
 lib/api/doctrine/orm/query/sqlwalker.html     |  919 ++++
 lib/api/doctrine/orm/query/treewalker.html    |  797 +++
 .../doctrine/orm/query/treewalkeradapter.html |  797 +++
 .../doctrine/orm/query/treewalkerchain.html   |  817 +++
 lib/api/doctrine/orm/querybuilder.html        |  988 ++++
 .../orm/tools/classmetadatareader.html        |  175 +
 .../command/clearcache/metadatacommand.html   |  135 +
 .../command/clearcache/package-frame.html     |   28 +
 .../command/clearcache/package-functions.html |   69 +
 .../command/clearcache/package-globals.html   |   69 +
 .../command/clearcache/package-summary.html   |   66 +
 .../command/clearcache/package-tree.html      |   53 +
 .../command/clearcache/querycommand.html      |  135 +
 .../command/clearcache/resultcommand.html     |  135 +
 .../convertdoctrine1schemacommand.html        |  135 +
 .../command/convertmappingcommand.html        |  135 +
 .../ensureproductionsettingscommand.html      |  135 +
 .../command/generateentitiescommand.html      |  135 +
 .../command/generateproxiescommand.html       |  135 +
 .../command/generaterepositoriescommand.html  |  135 +
 .../tools/console/command/package-frame.html  |   32 +
 .../console/command/package-functions.html    |   69 +
 .../console/command/package-globals.html      |   69 +
 .../console/command/package-summary.html      |   70 +
 .../tools/console/command/package-tree.html   |   53 +
 .../tools/console/command/rundqlcommand.html  |  135 +
 .../command/schematool/abstractcommand.html   |  114 +
 .../command/schematool/createcommand.html     |  136 +
 .../command/schematool/dropcommand.html       |  136 +
 .../command/schematool/package-frame.html     |   29 +
 .../command/schematool/package-functions.html |   69 +
 .../command/schematool/package-globals.html   |   69 +
 .../command/schematool/package-summary.html   |   67 +
 .../command/schematool/package-tree.html      |   53 +
 .../command/schematool/updatecommand.html     |  136 +
 .../console/helper/entitymanagerhelper.html   |  168 +
 .../tools/console/helper/package-frame.html   |   26 +
 .../console/helper/package-functions.html     |   69 +
 .../tools/console/helper/package-globals.html |   69 +
 .../tools/console/helper/package-summary.html |   64 +
 .../tools/console/helper/package-tree.html    |   53 +
 .../orm/tools/console/metadatafilter.html     |  155 +
 .../orm/tools/console/package-frame.html      |   26 +
 .../orm/tools/console/package-functions.html  |   69 +
 .../orm/tools/console/package-globals.html    |   69 +
 .../orm/tools/console/package-summary.html    |   64 +
 .../orm/tools/console/package-tree.html       |   53 +
 .../orm/tools/convertdoctrine1schema.html     |  139 +
 .../doctrine/orm/tools/entitygenerator.html   |  246 +
 .../tools/event/generateschemaeventargs.html  |  140 +
 .../event/generateschematableeventargs.html   |  152 +
 .../orm/tools/event/package-frame.html        |   27 +
 .../orm/tools/event/package-functions.html    |   69 +
 .../orm/tools/event/package-globals.html      |   69 +
 .../orm/tools/event/package-summary.html      |   65 +
 .../orm/tools/event/package-tree.html         |   53 +
 .../tools/export/classmetadataexporter.html   |  209 +
 .../tools/export/driver/abstractexporter.html |  248 +
 .../export/driver/annotationexporter.html     |  155 +
 .../tools/export/driver/package-frame.html    |   30 +
 .../export/driver/package-functions.html      |   69 +
 .../tools/export/driver/package-globals.html  |   69 +
 .../tools/export/driver/package-summary.html  |   69 +
 .../orm/tools/export/driver/package-tree.html |   62 +
 .../orm/tools/export/driver/phpexporter.html  |  143 +
 .../orm/tools/export/driver/xmlexporter.html  |  143 +
 .../orm/tools/export/driver/yamlexporter.html |  143 +
 .../orm/tools/export/exportexception.html     |  117 +
 .../orm/tools/export/package-frame.html       |   27 +
 .../orm/tools/export/package-functions.html   |   69 +
 .../orm/tools/export/package-globals.html     |   69 +
 .../orm/tools/export/package-summary.html     |   67 +
 .../orm/tools/export/package-tree.html        |   56 +
 lib/api/doctrine/orm/tools/package-frame.html |   31 +
 .../doctrine/orm/tools/package-functions.html |   69 +
 .../doctrine/orm/tools/package-globals.html   |   69 +
 .../doctrine/orm/tools/package-summary.html   |   78 +
 lib/api/doctrine/orm/tools/package-tree.html  |   60 +
 lib/api/doctrine/orm/tools/schematool.html    |  221 +
 lib/api/doctrine/orm/tools/toolevents.html    |  115 +
 .../doctrine/orm/tools/toolsexception.html    |  105 +
 lib/api/doctrine/orm/unitofwork.html          | 1012 ++++
 lib/api/index-all.html                        | 4857 +++++++++++++++++
 lib/api/index.html                            |   35 +
 lib/api/overview-frame.html                   |   75 +
 lib/api/overview-summary.html                 |  106 +
 lib/api/overview-tree.html                    |  340 ++
 lib/api/stylesheet.css                        |  216 +
 546 files changed, 90120 insertions(+)
 create mode 100644 lib/api/allitems-frame.html
 create mode 100644 lib/api/deprecated-list.html
 create mode 100644 lib/api/doctrine/common/annotations/annotation.html
 create mode 100644 lib/api/doctrine/common/annotations/annotationexception.html
 create mode 100644 lib/api/doctrine/common/annotations/annotationreader.html
 create mode 100644 lib/api/doctrine/common/annotations/lexer.html
 create mode 100644 lib/api/doctrine/common/annotations/package-frame.html
 create mode 100644 lib/api/doctrine/common/annotations/package-functions.html
 create mode 100644 lib/api/doctrine/common/annotations/package-globals.html
 create mode 100644 lib/api/doctrine/common/annotations/package-summary.html
 create mode 100644 lib/api/doctrine/common/annotations/package-tree.html
 create mode 100644 lib/api/doctrine/common/annotations/parser.html
 create mode 100644 lib/api/doctrine/common/cache/abstractcache.html
 create mode 100644 lib/api/doctrine/common/cache/apccache.html
 create mode 100644 lib/api/doctrine/common/cache/arraycache.html
 create mode 100644 lib/api/doctrine/common/cache/cache.html
 create mode 100644 lib/api/doctrine/common/cache/memcachecache.html
 create mode 100644 lib/api/doctrine/common/cache/package-frame.html
 create mode 100644 lib/api/doctrine/common/cache/package-functions.html
 create mode 100644 lib/api/doctrine/common/cache/package-globals.html
 create mode 100644 lib/api/doctrine/common/cache/package-summary.html
 create mode 100644 lib/api/doctrine/common/cache/package-tree.html
 create mode 100644 lib/api/doctrine/common/cache/xcachecache.html
 create mode 100644 lib/api/doctrine/common/classloader.html
 create mode 100644 lib/api/doctrine/common/collections/arraycollection.html
 create mode 100644 lib/api/doctrine/common/collections/collection.html
 create mode 100644 lib/api/doctrine/common/collections/package-frame.html
 create mode 100644 lib/api/doctrine/common/collections/package-functions.html
 create mode 100644 lib/api/doctrine/common/collections/package-globals.html
 create mode 100644 lib/api/doctrine/common/collections/package-summary.html
 create mode 100644 lib/api/doctrine/common/collections/package-tree.html
 create mode 100644 lib/api/doctrine/common/commonexception.html
 create mode 100644 lib/api/doctrine/common/eventargs.html
 create mode 100644 lib/api/doctrine/common/eventmanager.html
 create mode 100644 lib/api/doctrine/common/eventsubscriber.html
 create mode 100644 lib/api/doctrine/common/lexer.html
 create mode 100644 lib/api/doctrine/common/notifypropertychanged.html
 create mode 100644 lib/api/doctrine/common/package-frame.html
 create mode 100644 lib/api/doctrine/common/package-functions.html
 create mode 100644 lib/api/doctrine/common/package-globals.html
 create mode 100644 lib/api/doctrine/common/package-summary.html
 create mode 100644 lib/api/doctrine/common/package-tree.html
 create mode 100644 lib/api/doctrine/common/propertychangedlistener.html
 create mode 100644 lib/api/doctrine/common/util/debug.html
 create mode 100644 lib/api/doctrine/common/util/inflector.html
 create mode 100644 lib/api/doctrine/common/util/package-frame.html
 create mode 100644 lib/api/doctrine/common/util/package-functions.html
 create mode 100644 lib/api/doctrine/common/util/package-globals.html
 create mode 100644 lib/api/doctrine/common/util/package-summary.html
 create mode 100644 lib/api/doctrine/common/util/package-tree.html
 create mode 100644 lib/api/doctrine/common/version.html
 create mode 100644 lib/api/doctrine/dbal/configuration.html
 create mode 100644 lib/api/doctrine/dbal/connection.html
 create mode 100644 lib/api/doctrine/dbal/connectionexception.html
 create mode 100644 lib/api/doctrine/dbal/dbalexception.html
 create mode 100644 lib/api/doctrine/dbal/driver.html
 create mode 100644 lib/api/doctrine/dbal/driver/connection.html
 create mode 100644 lib/api/doctrine/dbal/driver/oci8/driver.html
 create mode 100644 lib/api/doctrine/dbal/driver/oci8/oci8connection.html
 create mode 100644 lib/api/doctrine/dbal/driver/oci8/oci8exception.html
 create mode 100644 lib/api/doctrine/dbal/driver/oci8/oci8statement.html
 create mode 100644 lib/api/doctrine/dbal/driver/oci8/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/driver/oci8/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/driver/oci8/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/driver/oci8/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/driver/oci8/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/driver/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/driver/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/driver/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/driver/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/driver/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdoconnection.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomssql/connection.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomssql/driver.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomssql/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomssql/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomssql/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomssql/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomssql/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomysql/driver.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomysql/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomysql/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomysql/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomysql/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdomysql/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdooracle/driver.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdooracle/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdooracle/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdooracle/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdooracle/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdooracle/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdopgsql/driver.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdopgsql/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdopgsql/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdopgsql/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdopgsql/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdopgsql/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdosqlite/driver.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdosqlite/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdosqlite/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdosqlite/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdosqlite/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdosqlite/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/driver/pdostatement.html
 create mode 100644 lib/api/doctrine/dbal/driver/statement.html
 create mode 100644 lib/api/doctrine/dbal/drivermanager.html
 create mode 100644 lib/api/doctrine/dbal/event/connectioneventargs.html
 create mode 100644 lib/api/doctrine/dbal/event/listeners/mysqlsessioninit.html
 create mode 100644 lib/api/doctrine/dbal/event/listeners/oraclesessioninit.html
 create mode 100644 lib/api/doctrine/dbal/event/listeners/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/event/listeners/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/event/listeners/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/event/listeners/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/event/listeners/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/event/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/event/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/event/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/event/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/event/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/events.html
 create mode 100644 lib/api/doctrine/dbal/logging/debugstack.html
 create mode 100644 lib/api/doctrine/dbal/logging/echosqllogger.html
 create mode 100644 lib/api/doctrine/dbal/logging/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/logging/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/logging/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/logging/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/logging/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/logging/sqllogger.html
 create mode 100644 lib/api/doctrine/dbal/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/platforms/abstractplatform.html
 create mode 100644 lib/api/doctrine/dbal/platforms/mssqlplatform.html
 create mode 100644 lib/api/doctrine/dbal/platforms/mysqlplatform.html
 create mode 100644 lib/api/doctrine/dbal/platforms/oracleplatform.html
 create mode 100644 lib/api/doctrine/dbal/platforms/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/platforms/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/platforms/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/platforms/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/platforms/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/platforms/postgresqlplatform.html
 create mode 100644 lib/api/doctrine/dbal/platforms/sqliteplatform.html
 create mode 100644 lib/api/doctrine/dbal/schema/abstractasset.html
 create mode 100644 lib/api/doctrine/dbal/schema/abstractschemamanager.html
 create mode 100644 lib/api/doctrine/dbal/schema/column.html
 create mode 100644 lib/api/doctrine/dbal/schema/columndiff.html
 create mode 100644 lib/api/doctrine/dbal/schema/comparator.html
 create mode 100644 lib/api/doctrine/dbal/schema/constraint.html
 create mode 100644 lib/api/doctrine/dbal/schema/foreignkeyconstraint.html
 create mode 100644 lib/api/doctrine/dbal/schema/index.html
 create mode 100644 lib/api/doctrine/dbal/schema/mssqlschemamanager.html
 create mode 100644 lib/api/doctrine/dbal/schema/mysqlschemamanager.html
 create mode 100644 lib/api/doctrine/dbal/schema/oracleschemamanager.html
 create mode 100644 lib/api/doctrine/dbal/schema/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/schema/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/schema/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/schema/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/schema/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/schema/postgresqlschemamanager.html
 create mode 100644 lib/api/doctrine/dbal/schema/schema.html
 create mode 100644 lib/api/doctrine/dbal/schema/schemaconfig.html
 create mode 100644 lib/api/doctrine/dbal/schema/schemadiff.html
 create mode 100644 lib/api/doctrine/dbal/schema/schemaexception.html
 create mode 100644 lib/api/doctrine/dbal/schema/sequence.html
 create mode 100644 lib/api/doctrine/dbal/schema/sqliteschemamanager.html
 create mode 100644 lib/api/doctrine/dbal/schema/table.html
 create mode 100644 lib/api/doctrine/dbal/schema/tablediff.html
 create mode 100644 lib/api/doctrine/dbal/schema/view.html
 create mode 100644 lib/api/doctrine/dbal/schema/visitor/createschemasqlcollector.html
 create mode 100644 lib/api/doctrine/dbal/schema/visitor/dropschemasqlcollector.html
 create mode 100644 lib/api/doctrine/dbal/schema/visitor/fixschema.html
 create mode 100644 lib/api/doctrine/dbal/schema/visitor/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/schema/visitor/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/schema/visitor/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/schema/visitor/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/schema/visitor/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/schema/visitor/visitor.html
 create mode 100644 lib/api/doctrine/dbal/statement.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/command/importcommand.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/command/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/command/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/command/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/command/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/command/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/command/runsqlcommand.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/helper/connectionhelper.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/helper/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/helper/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/helper/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/helper/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/tools/console/helper/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/types/arraytype.html
 create mode 100644 lib/api/doctrine/dbal/types/biginttype.html
 create mode 100644 lib/api/doctrine/dbal/types/booleantype.html
 create mode 100644 lib/api/doctrine/dbal/types/datetimetype.html
 create mode 100644 lib/api/doctrine/dbal/types/datetype.html
 create mode 100644 lib/api/doctrine/dbal/types/decimaltype.html
 create mode 100644 lib/api/doctrine/dbal/types/integertype.html
 create mode 100644 lib/api/doctrine/dbal/types/objecttype.html
 create mode 100644 lib/api/doctrine/dbal/types/package-frame.html
 create mode 100644 lib/api/doctrine/dbal/types/package-functions.html
 create mode 100644 lib/api/doctrine/dbal/types/package-globals.html
 create mode 100644 lib/api/doctrine/dbal/types/package-summary.html
 create mode 100644 lib/api/doctrine/dbal/types/package-tree.html
 create mode 100644 lib/api/doctrine/dbal/types/smallinttype.html
 create mode 100644 lib/api/doctrine/dbal/types/stringtype.html
 create mode 100644 lib/api/doctrine/dbal/types/texttype.html
 create mode 100644 lib/api/doctrine/dbal/types/timetype.html
 create mode 100644 lib/api/doctrine/dbal/types/type.html
 create mode 100644 lib/api/doctrine/orm/abstractquery.html
 create mode 100644 lib/api/doctrine/orm/configuration.html
 create mode 100644 lib/api/doctrine/orm/entitymanager.html
 create mode 100644 lib/api/doctrine/orm/entitynotfoundexception.html
 create mode 100644 lib/api/doctrine/orm/entityrepository.html
 create mode 100644 lib/api/doctrine/orm/event/lifecycleeventargs.html
 create mode 100644 lib/api/doctrine/orm/event/loadclassmetadataeventargs.html
 create mode 100644 lib/api/doctrine/orm/event/onflusheventargs.html
 create mode 100644 lib/api/doctrine/orm/event/package-frame.html
 create mode 100644 lib/api/doctrine/orm/event/package-functions.html
 create mode 100644 lib/api/doctrine/orm/event/package-globals.html
 create mode 100644 lib/api/doctrine/orm/event/package-summary.html
 create mode 100644 lib/api/doctrine/orm/event/package-tree.html
 create mode 100644 lib/api/doctrine/orm/event/preupdateeventargs.html
 create mode 100644 lib/api/doctrine/orm/events.html
 create mode 100644 lib/api/doctrine/orm/id/abstractidgenerator.html
 create mode 100644 lib/api/doctrine/orm/id/assignedgenerator.html
 create mode 100644 lib/api/doctrine/orm/id/identitygenerator.html
 create mode 100644 lib/api/doctrine/orm/id/package-frame.html
 create mode 100644 lib/api/doctrine/orm/id/package-functions.html
 create mode 100644 lib/api/doctrine/orm/id/package-globals.html
 create mode 100644 lib/api/doctrine/orm/id/package-summary.html
 create mode 100644 lib/api/doctrine/orm/id/package-tree.html
 create mode 100644 lib/api/doctrine/orm/id/sequencegenerator.html
 create mode 100644 lib/api/doctrine/orm/id/sequenceidentitygenerator.html
 create mode 100644 lib/api/doctrine/orm/id/tablegenerator.html
 create mode 100644 lib/api/doctrine/orm/internal/commitordercalculator.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/abstracthydrator.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/arrayhydrator.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/hydrationexception.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/iterableresult.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/objecthydrator.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/package-frame.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/package-functions.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/package-globals.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/package-summary.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/package-tree.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/scalarhydrator.html
 create mode 100644 lib/api/doctrine/orm/internal/hydration/singlescalarhydrator.html
 create mode 100644 lib/api/doctrine/orm/internal/package-frame.html
 create mode 100644 lib/api/doctrine/orm/internal/package-functions.html
 create mode 100644 lib/api/doctrine/orm/internal/package-globals.html
 create mode 100644 lib/api/doctrine/orm/internal/package-summary.html
 create mode 100644 lib/api/doctrine/orm/internal/package-tree.html
 create mode 100644 lib/api/doctrine/orm/mapping/associationmapping.html
 create mode 100644 lib/api/doctrine/orm/mapping/changetrackingpolicy.html
 create mode 100644 lib/api/doctrine/orm/mapping/classmetadata.html
 create mode 100644 lib/api/doctrine/orm/mapping/classmetadatafactory.html
 create mode 100644 lib/api/doctrine/orm/mapping/classmetadatainfo.html
 create mode 100644 lib/api/doctrine/orm/mapping/column.html
 create mode 100644 lib/api/doctrine/orm/mapping/discriminatorcolumn.html
 create mode 100644 lib/api/doctrine/orm/mapping/discriminatormap.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/abstractfiledriver.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/annotationdriver.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/databasedriver.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/driver.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/driverchain.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/package-frame.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/package-functions.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/package-globals.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/package-summary.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/package-tree.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/phpdriver.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/xmldriver.html
 create mode 100644 lib/api/doctrine/orm/mapping/driver/yamldriver.html
 create mode 100644 lib/api/doctrine/orm/mapping/elementcollection.html
 create mode 100644 lib/api/doctrine/orm/mapping/entity.html
 create mode 100644 lib/api/doctrine/orm/mapping/generatedvalue.html
 create mode 100644 lib/api/doctrine/orm/mapping/haslifecyclecallbacks.html
 create mode 100644 lib/api/doctrine/orm/mapping/id.html
 create mode 100644 lib/api/doctrine/orm/mapping/index.html
 create mode 100644 lib/api/doctrine/orm/mapping/inheritancetype.html
 create mode 100644 lib/api/doctrine/orm/mapping/joincolumn.html
 create mode 100644 lib/api/doctrine/orm/mapping/joincolumns.html
 create mode 100644 lib/api/doctrine/orm/mapping/jointable.html
 create mode 100644 lib/api/doctrine/orm/mapping/manytomany.html
 create mode 100644 lib/api/doctrine/orm/mapping/manytomanymapping.html
 create mode 100644 lib/api/doctrine/orm/mapping/manytoone.html
 create mode 100644 lib/api/doctrine/orm/mapping/mappedsuperclass.html
 create mode 100644 lib/api/doctrine/orm/mapping/mappingexception.html
 create mode 100644 lib/api/doctrine/orm/mapping/onetomany.html
 create mode 100644 lib/api/doctrine/orm/mapping/onetomanymapping.html
 create mode 100644 lib/api/doctrine/orm/mapping/onetoone.html
 create mode 100644 lib/api/doctrine/orm/mapping/onetoonemapping.html
 create mode 100644 lib/api/doctrine/orm/mapping/orderby.html
 create mode 100644 lib/api/doctrine/orm/mapping/package-frame.html
 create mode 100644 lib/api/doctrine/orm/mapping/package-functions.html
 create mode 100644 lib/api/doctrine/orm/mapping/package-globals.html
 create mode 100644 lib/api/doctrine/orm/mapping/package-summary.html
 create mode 100644 lib/api/doctrine/orm/mapping/package-tree.html
 create mode 100644 lib/api/doctrine/orm/mapping/postload.html
 create mode 100644 lib/api/doctrine/orm/mapping/postpersist.html
 create mode 100644 lib/api/doctrine/orm/mapping/postremove.html
 create mode 100644 lib/api/doctrine/orm/mapping/postupdate.html
 create mode 100644 lib/api/doctrine/orm/mapping/prepersist.html
 create mode 100644 lib/api/doctrine/orm/mapping/preremove.html
 create mode 100644 lib/api/doctrine/orm/mapping/preupdate.html
 create mode 100644 lib/api/doctrine/orm/mapping/sequencegenerator.html
 create mode 100644 lib/api/doctrine/orm/mapping/table.html
 create mode 100644 lib/api/doctrine/orm/mapping/uniqueconstraint.html
 create mode 100644 lib/api/doctrine/orm/mapping/version.html
 create mode 100644 lib/api/doctrine/orm/nativequery.html
 create mode 100644 lib/api/doctrine/orm/nonuniqueresultexception.html
 create mode 100644 lib/api/doctrine/orm/noresultexception.html
 create mode 100644 lib/api/doctrine/orm/optimisticlockexception.html
 create mode 100644 lib/api/doctrine/orm/ormexception.html
 create mode 100644 lib/api/doctrine/orm/package-frame.html
 create mode 100644 lib/api/doctrine/orm/package-functions.html
 create mode 100644 lib/api/doctrine/orm/package-globals.html
 create mode 100644 lib/api/doctrine/orm/package-summary.html
 create mode 100644 lib/api/doctrine/orm/package-tree.html
 create mode 100644 lib/api/doctrine/orm/persistentcollection.html
 create mode 100644 lib/api/doctrine/orm/persisters/abstractcollectionpersister.html
 create mode 100644 lib/api/doctrine/orm/persisters/abstractentityinheritancepersister.html
 create mode 100644 lib/api/doctrine/orm/persisters/elementcollectionpersister.html
 create mode 100644 lib/api/doctrine/orm/persisters/joinedsubclasspersister.html
 create mode 100644 lib/api/doctrine/orm/persisters/manytomanypersister.html
 create mode 100644 lib/api/doctrine/orm/persisters/onetomanypersister.html
 create mode 100644 lib/api/doctrine/orm/persisters/package-frame.html
 create mode 100644 lib/api/doctrine/orm/persisters/package-functions.html
 create mode 100644 lib/api/doctrine/orm/persisters/package-globals.html
 create mode 100644 lib/api/doctrine/orm/persisters/package-summary.html
 create mode 100644 lib/api/doctrine/orm/persisters/package-tree.html
 create mode 100644 lib/api/doctrine/orm/persisters/singletablepersister.html
 create mode 100644 lib/api/doctrine/orm/persisters/standardentitypersister.html
 create mode 100644 lib/api/doctrine/orm/persisters/unionsubclasspersister.html
 create mode 100644 lib/api/doctrine/orm/proxy/package-frame.html
 create mode 100644 lib/api/doctrine/orm/proxy/package-functions.html
 create mode 100644 lib/api/doctrine/orm/proxy/package-globals.html
 create mode 100644 lib/api/doctrine/orm/proxy/package-summary.html
 create mode 100644 lib/api/doctrine/orm/proxy/package-tree.html
 create mode 100644 lib/api/doctrine/orm/proxy/proxy.html
 create mode 100644 lib/api/doctrine/orm/proxy/proxyexception.html
 create mode 100644 lib/api/doctrine/orm/proxy/proxyfactory.html
 create mode 100644 lib/api/doctrine/orm/query.html
 create mode 100644 lib/api/doctrine/orm/query/ast/aggregateexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/arithmeticexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/arithmeticfactor.html
 create mode 100644 lib/api/doctrine/orm/query/ast/arithmeticterm.html
 create mode 100644 lib/api/doctrine/orm/query/ast/astexception.html
 create mode 100644 lib/api/doctrine/orm/query/ast/betweenexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/collectionmemberexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/comparisonexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/conditionalexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/conditionalfactor.html
 create mode 100644 lib/api/doctrine/orm/query/ast/conditionalprimary.html
 create mode 100644 lib/api/doctrine/orm/query/ast/conditionalterm.html
 create mode 100644 lib/api/doctrine/orm/query/ast/deleteclause.html
 create mode 100644 lib/api/doctrine/orm/query/ast/deletestatement.html
 create mode 100644 lib/api/doctrine/orm/query/ast/emptycollectioncomparisonexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/existsexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/fromclause.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/absfunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/concatfunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/currentdatefunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/currenttimefunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/currenttimestampfunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/functionnode.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/lengthfunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/locatefunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/lowerfunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/modfunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/package-frame.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/package-functions.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/package-globals.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/package-summary.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/package-tree.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/sizefunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/sqrtfunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/substringfunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/trimfunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/functions/upperfunction.html
 create mode 100644 lib/api/doctrine/orm/query/ast/groupbyclause.html
 create mode 100644 lib/api/doctrine/orm/query/ast/havingclause.html
 create mode 100644 lib/api/doctrine/orm/query/ast/identificationvariabledeclaration.html
 create mode 100644 lib/api/doctrine/orm/query/ast/indexby.html
 create mode 100644 lib/api/doctrine/orm/query/ast/inexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/inputparameter.html
 create mode 100644 lib/api/doctrine/orm/query/ast/join.html
 create mode 100644 lib/api/doctrine/orm/query/ast/joinassociationpathexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/joinvariabledeclaration.html
 create mode 100644 lib/api/doctrine/orm/query/ast/likeexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/literal.html
 create mode 100644 lib/api/doctrine/orm/query/ast/node.html
 create mode 100644 lib/api/doctrine/orm/query/ast/nullcomparisonexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/orderbyclause.html
 create mode 100644 lib/api/doctrine/orm/query/ast/orderbyitem.html
 create mode 100644 lib/api/doctrine/orm/query/ast/package-frame.html
 create mode 100644 lib/api/doctrine/orm/query/ast/package-functions.html
 create mode 100644 lib/api/doctrine/orm/query/ast/package-globals.html
 create mode 100644 lib/api/doctrine/orm/query/ast/package-summary.html
 create mode 100644 lib/api/doctrine/orm/query/ast/package-tree.html
 create mode 100644 lib/api/doctrine/orm/query/ast/partialobjectexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/pathexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/quantifiedexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/rangevariabledeclaration.html
 create mode 100644 lib/api/doctrine/orm/query/ast/selectclause.html
 create mode 100644 lib/api/doctrine/orm/query/ast/selectexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/selectstatement.html
 create mode 100644 lib/api/doctrine/orm/query/ast/simplearithmeticexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/simpleselectclause.html
 create mode 100644 lib/api/doctrine/orm/query/ast/simpleselectexpression.html
 create mode 100644 lib/api/doctrine/orm/query/ast/subselect.html
 create mode 100644 lib/api/doctrine/orm/query/ast/subselectfromclause.html
 create mode 100644 lib/api/doctrine/orm/query/ast/updateclause.html
 create mode 100644 lib/api/doctrine/orm/query/ast/updateitem.html
 create mode 100644 lib/api/doctrine/orm/query/ast/updatestatement.html
 create mode 100644 lib/api/doctrine/orm/query/ast/whereclause.html
 create mode 100644 lib/api/doctrine/orm/query/exec/abstractsqlexecutor.html
 create mode 100644 lib/api/doctrine/orm/query/exec/multitabledeleteexecutor.html
 create mode 100644 lib/api/doctrine/orm/query/exec/multitableupdateexecutor.html
 create mode 100644 lib/api/doctrine/orm/query/exec/package-frame.html
 create mode 100644 lib/api/doctrine/orm/query/exec/package-functions.html
 create mode 100644 lib/api/doctrine/orm/query/exec/package-globals.html
 create mode 100644 lib/api/doctrine/orm/query/exec/package-summary.html
 create mode 100644 lib/api/doctrine/orm/query/exec/package-tree.html
 create mode 100644 lib/api/doctrine/orm/query/exec/singleselectexecutor.html
 create mode 100644 lib/api/doctrine/orm/query/exec/singletabledeleteupdateexecutor.html
 create mode 100644 lib/api/doctrine/orm/query/expr.html
 create mode 100644 lib/api/doctrine/orm/query/expr/andx.html
 create mode 100644 lib/api/doctrine/orm/query/expr/base.html
 create mode 100644 lib/api/doctrine/orm/query/expr/comparison.html
 create mode 100644 lib/api/doctrine/orm/query/expr/from.html
 create mode 100644 lib/api/doctrine/orm/query/expr/func.html
 create mode 100644 lib/api/doctrine/orm/query/expr/groupby.html
 create mode 100644 lib/api/doctrine/orm/query/expr/join.html
 create mode 100644 lib/api/doctrine/orm/query/expr/literal.html
 create mode 100644 lib/api/doctrine/orm/query/expr/math.html
 create mode 100644 lib/api/doctrine/orm/query/expr/orderby.html
 create mode 100644 lib/api/doctrine/orm/query/expr/orx.html
 create mode 100644 lib/api/doctrine/orm/query/expr/package-frame.html
 create mode 100644 lib/api/doctrine/orm/query/expr/package-functions.html
 create mode 100644 lib/api/doctrine/orm/query/expr/package-globals.html
 create mode 100644 lib/api/doctrine/orm/query/expr/package-summary.html
 create mode 100644 lib/api/doctrine/orm/query/expr/package-tree.html
 create mode 100644 lib/api/doctrine/orm/query/expr/select.html
 create mode 100644 lib/api/doctrine/orm/query/lexer.html
 create mode 100644 lib/api/doctrine/orm/query/package-frame.html
 create mode 100644 lib/api/doctrine/orm/query/package-functions.html
 create mode 100644 lib/api/doctrine/orm/query/package-globals.html
 create mode 100644 lib/api/doctrine/orm/query/package-summary.html
 create mode 100644 lib/api/doctrine/orm/query/package-tree.html
 create mode 100644 lib/api/doctrine/orm/query/parser.html
 create mode 100644 lib/api/doctrine/orm/query/parserresult.html
 create mode 100644 lib/api/doctrine/orm/query/printer.html
 create mode 100644 lib/api/doctrine/orm/query/queryexception.html
 create mode 100644 lib/api/doctrine/orm/query/resultsetmapping.html
 create mode 100644 lib/api/doctrine/orm/query/sqlwalker.html
 create mode 100644 lib/api/doctrine/orm/query/treewalker.html
 create mode 100644 lib/api/doctrine/orm/query/treewalkeradapter.html
 create mode 100644 lib/api/doctrine/orm/query/treewalkerchain.html
 create mode 100644 lib/api/doctrine/orm/querybuilder.html
 create mode 100644 lib/api/doctrine/orm/tools/classmetadatareader.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/clearcache/metadatacommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/clearcache/package-frame.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/clearcache/package-functions.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/clearcache/package-globals.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/clearcache/package-summary.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/clearcache/package-tree.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/clearcache/querycommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/clearcache/resultcommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/convertmappingcommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/ensureproductionsettingscommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/generateentitiescommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/generateproxiescommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/generaterepositoriescommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/package-frame.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/package-functions.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/package-globals.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/package-summary.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/package-tree.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/rundqlcommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/schematool/abstractcommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/schematool/createcommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/schematool/dropcommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/schematool/package-frame.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/schematool/package-functions.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/schematool/package-globals.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/schematool/package-summary.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/schematool/package-tree.html
 create mode 100644 lib/api/doctrine/orm/tools/console/command/schematool/updatecommand.html
 create mode 100644 lib/api/doctrine/orm/tools/console/helper/entitymanagerhelper.html
 create mode 100644 lib/api/doctrine/orm/tools/console/helper/package-frame.html
 create mode 100644 lib/api/doctrine/orm/tools/console/helper/package-functions.html
 create mode 100644 lib/api/doctrine/orm/tools/console/helper/package-globals.html
 create mode 100644 lib/api/doctrine/orm/tools/console/helper/package-summary.html
 create mode 100644 lib/api/doctrine/orm/tools/console/helper/package-tree.html
 create mode 100644 lib/api/doctrine/orm/tools/console/metadatafilter.html
 create mode 100644 lib/api/doctrine/orm/tools/console/package-frame.html
 create mode 100644 lib/api/doctrine/orm/tools/console/package-functions.html
 create mode 100644 lib/api/doctrine/orm/tools/console/package-globals.html
 create mode 100644 lib/api/doctrine/orm/tools/console/package-summary.html
 create mode 100644 lib/api/doctrine/orm/tools/console/package-tree.html
 create mode 100644 lib/api/doctrine/orm/tools/convertdoctrine1schema.html
 create mode 100644 lib/api/doctrine/orm/tools/entitygenerator.html
 create mode 100644 lib/api/doctrine/orm/tools/event/generateschemaeventargs.html
 create mode 100644 lib/api/doctrine/orm/tools/event/generateschematableeventargs.html
 create mode 100644 lib/api/doctrine/orm/tools/event/package-frame.html
 create mode 100644 lib/api/doctrine/orm/tools/event/package-functions.html
 create mode 100644 lib/api/doctrine/orm/tools/event/package-globals.html
 create mode 100644 lib/api/doctrine/orm/tools/event/package-summary.html
 create mode 100644 lib/api/doctrine/orm/tools/event/package-tree.html
 create mode 100644 lib/api/doctrine/orm/tools/export/classmetadataexporter.html
 create mode 100644 lib/api/doctrine/orm/tools/export/driver/abstractexporter.html
 create mode 100644 lib/api/doctrine/orm/tools/export/driver/annotationexporter.html
 create mode 100644 lib/api/doctrine/orm/tools/export/driver/package-frame.html
 create mode 100644 lib/api/doctrine/orm/tools/export/driver/package-functions.html
 create mode 100644 lib/api/doctrine/orm/tools/export/driver/package-globals.html
 create mode 100644 lib/api/doctrine/orm/tools/export/driver/package-summary.html
 create mode 100644 lib/api/doctrine/orm/tools/export/driver/package-tree.html
 create mode 100644 lib/api/doctrine/orm/tools/export/driver/phpexporter.html
 create mode 100644 lib/api/doctrine/orm/tools/export/driver/xmlexporter.html
 create mode 100644 lib/api/doctrine/orm/tools/export/driver/yamlexporter.html
 create mode 100644 lib/api/doctrine/orm/tools/export/exportexception.html
 create mode 100644 lib/api/doctrine/orm/tools/export/package-frame.html
 create mode 100644 lib/api/doctrine/orm/tools/export/package-functions.html
 create mode 100644 lib/api/doctrine/orm/tools/export/package-globals.html
 create mode 100644 lib/api/doctrine/orm/tools/export/package-summary.html
 create mode 100644 lib/api/doctrine/orm/tools/export/package-tree.html
 create mode 100644 lib/api/doctrine/orm/tools/package-frame.html
 create mode 100644 lib/api/doctrine/orm/tools/package-functions.html
 create mode 100644 lib/api/doctrine/orm/tools/package-globals.html
 create mode 100644 lib/api/doctrine/orm/tools/package-summary.html
 create mode 100644 lib/api/doctrine/orm/tools/package-tree.html
 create mode 100644 lib/api/doctrine/orm/tools/schematool.html
 create mode 100644 lib/api/doctrine/orm/tools/toolevents.html
 create mode 100644 lib/api/doctrine/orm/tools/toolsexception.html
 create mode 100644 lib/api/doctrine/orm/unitofwork.html
 create mode 100644 lib/api/index-all.html
 create mode 100644 lib/api/index.html
 create mode 100644 lib/api/overview-frame.html
 create mode 100644 lib/api/overview-summary.html
 create mode 100644 lib/api/overview-tree.html
 create mode 100644 lib/api/stylesheet.css

diff --git a/lib/api/allitems-frame.html b/lib/api/allitems-frame.html
new file mode 100644
index 000000000..9cc52fed1
--- /dev/null
+++ b/lib/api/allitems-frame.html
@@ -0,0 +1,338 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="stylesheet.css">
+<link rel="start" href="overview-summary.html">
+
+<title>All Items (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1>All Items</h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="doctrine/common/classloader.html" target="main">ClassLoader</a></li>
+<li><a href="doctrine/common/commonexception.html" target="main">CommonException</a></li>
+<li><a href="doctrine/common/eventargs.html" target="main">EventArgs</a></li>
+<li><a href="doctrine/common/eventmanager.html" target="main">EventManager</a></li>
+<li><em><a href="doctrine/common/eventsubscriber.html" target="main">EventSubscriber</a></em></li>
+<li><a href="doctrine/common/lexer.html" target="main">Lexer</a></li>
+<li><em><a href="doctrine/common/notifypropertychanged.html" target="main">NotifyPropertyChanged</a></em></li>
+<li><em><a href="doctrine/common/propertychangedlistener.html" target="main">PropertyChangedListener</a></em></li>
+<li><a href="doctrine/common/version.html" target="main">Version</a></li>
+<li><a href="doctrine/common/annotations/annotation.html" target="main">Annotation</a></li>
+<li><a href="doctrine/common/annotations/annotationexception.html" target="main">AnnotationException</a></li>
+<li><a href="doctrine/common/annotations/annotationreader.html" target="main">AnnotationReader</a></li>
+<li><a href="doctrine/common/annotations/lexer.html" target="main">Lexer</a></li>
+<li><a href="doctrine/common/annotations/parser.html" target="main">Parser</a></li>
+<li><a href="doctrine/common/cache/abstractcache.html" target="main">AbstractCache</a></li>
+<li><a href="doctrine/common/cache/apccache.html" target="main">ApcCache</a></li>
+<li><a href="doctrine/common/cache/arraycache.html" target="main">ArrayCache</a></li>
+<li><em><a href="doctrine/common/cache/cache.html" target="main">Cache</a></em></li>
+<li><a href="doctrine/common/cache/memcachecache.html" target="main">MemcacheCache</a></li>
+<li><a href="doctrine/common/cache/xcachecache.html" target="main">XcacheCache</a></li>
+<li><a href="doctrine/common/collections/arraycollection.html" target="main">ArrayCollection</a></li>
+<li><em><a href="doctrine/common/collections/collection.html" target="main">Collection</a></em></li>
+<li><a href="doctrine/common/util/debug.html" target="main">Debug</a></li>
+<li><a href="doctrine/common/util/inflector.html" target="main">Inflector</a></li>
+<li><a href="doctrine/dbal/configuration.html" target="main">Configuration</a></li>
+<li><a href="doctrine/dbal/connection.html" target="main">Connection</a></li>
+<li><a href="doctrine/dbal/connectionexception.html" target="main">ConnectionException</a></li>
+<li><a href="doctrine/dbal/dbalexception.html" target="main">DBALException</a></li>
+<li><em><a href="doctrine/dbal/driver.html" target="main">Driver</a></em></li>
+<li><a href="doctrine/dbal/drivermanager.html" target="main">DriverManager</a></li>
+<li><a href="doctrine/dbal/events.html" target="main">Events</a></li>
+<li><a href="doctrine/dbal/statement.html" target="main">Statement</a></li>
+<li><em><a href="doctrine/dbal/driver/connection.html" target="main">Connection</a></em></li>
+<li><a href="doctrine/dbal/driver/pdoconnection.html" target="main">PDOConnection</a></li>
+<li><a href="doctrine/dbal/driver/pdostatement.html" target="main">PDOStatement</a></li>
+<li><em><a href="doctrine/dbal/driver/statement.html" target="main">Statement</a></em></li>
+<li><a href="doctrine/dbal/driver/oci8/driver.html" target="main">Driver</a></li>
+<li><a href="doctrine/dbal/driver/oci8/oci8connection.html" target="main">OCI8Connection</a></li>
+<li><a href="doctrine/dbal/driver/oci8/oci8exception.html" target="main">OCI8Exception</a></li>
+<li><a href="doctrine/dbal/driver/oci8/oci8statement.html" target="main">OCI8Statement</a></li>
+<li><a href="doctrine/dbal/driver/pdomssql/connection.html" target="main">Connection</a></li>
+<li><a href="doctrine/dbal/driver/pdomssql/driver.html" target="main">Driver</a></li>
+<li><a href="doctrine/dbal/driver/pdomysql/driver.html" target="main">Driver</a></li>
+<li><a href="doctrine/dbal/driver/pdooracle/driver.html" target="main">Driver</a></li>
+<li><a href="doctrine/dbal/driver/pdopgsql/driver.html" target="main">Driver</a></li>
+<li><a href="doctrine/dbal/driver/pdosqlite/driver.html" target="main">Driver</a></li>
+<li><a href="doctrine/dbal/event/connectioneventargs.html" target="main">ConnectionEventArgs</a></li>
+<li><a href="doctrine/dbal/event/listeners/mysqlsessioninit.html" target="main">MysqlSessionInit</a></li>
+<li><a href="doctrine/dbal/event/listeners/oraclesessioninit.html" target="main">OracleSessionInit</a></li>
+<li><a href="doctrine/dbal/logging/debugstack.html" target="main">DebugStack</a></li>
+<li><a href="doctrine/dbal/logging/echosqllogger.html" target="main">EchoSQLLogger</a></li>
+<li><em><a href="doctrine/dbal/logging/sqllogger.html" target="main">SQLLogger</a></em></li>
+<li><a href="doctrine/dbal/platforms/abstractplatform.html" target="main">AbstractPlatform</a></li>
+<li><a href="doctrine/dbal/platforms/mssqlplatform.html" target="main">MsSqlPlatform</a></li>
+<li><a href="doctrine/dbal/platforms/mysqlplatform.html" target="main">MySqlPlatform</a></li>
+<li><a href="doctrine/dbal/platforms/oracleplatform.html" target="main">OraclePlatform</a></li>
+<li><a href="doctrine/dbal/platforms/postgresqlplatform.html" target="main">PostgreSqlPlatform</a></li>
+<li><a href="doctrine/dbal/platforms/sqliteplatform.html" target="main">SqlitePlatform</a></li>
+<li><a href="doctrine/dbal/schema/abstractasset.html" target="main">AbstractAsset</a></li>
+<li><a href="doctrine/dbal/schema/abstractschemamanager.html" target="main">AbstractSchemaManager</a></li>
+<li><a href="doctrine/dbal/schema/column.html" target="main">Column</a></li>
+<li><a href="doctrine/dbal/schema/columndiff.html" target="main">ColumnDiff</a></li>
+<li><a href="doctrine/dbal/schema/comparator.html" target="main">Comparator</a></li>
+<li><em><a href="doctrine/dbal/schema/constraint.html" target="main">Constraint</a></em></li>
+<li><a href="doctrine/dbal/schema/foreignkeyconstraint.html" target="main">ForeignKeyConstraint</a></li>
+<li><a href="doctrine/dbal/schema/index.html" target="main">Index</a></li>
+<li><a href="doctrine/dbal/schema/mssqlschemamanager.html" target="main">MsSqlSchemaManager</a></li>
+<li><a href="doctrine/dbal/schema/mysqlschemamanager.html" target="main">MySqlSchemaManager</a></li>
+<li><a href="doctrine/dbal/schema/oracleschemamanager.html" target="main">OracleSchemaManager</a></li>
+<li><a href="doctrine/dbal/schema/postgresqlschemamanager.html" target="main">PostgreSqlSchemaManager</a></li>
+<li><a href="doctrine/dbal/schema/schema.html" target="main">Schema</a></li>
+<li><a href="doctrine/dbal/schema/schemaconfig.html" target="main">SchemaConfig</a></li>
+<li><a href="doctrine/dbal/schema/schemadiff.html" target="main">SchemaDiff</a></li>
+<li><a href="doctrine/dbal/schema/schemaexception.html" target="main">SchemaException</a></li>
+<li><a href="doctrine/dbal/schema/sequence.html" target="main">Sequence</a></li>
+<li><a href="doctrine/dbal/schema/sqliteschemamanager.html" target="main">SqliteSchemaManager</a></li>
+<li><a href="doctrine/dbal/schema/table.html" target="main">Table</a></li>
+<li><a href="doctrine/dbal/schema/tablediff.html" target="main">TableDiff</a></li>
+<li><a href="doctrine/dbal/schema/view.html" target="main">View</a></li>
+<li><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html" target="main">CreateSchemaSqlCollector</a></li>
+<li><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html" target="main">DropSchemaSqlCollector</a></li>
+<li><a href="doctrine/dbal/schema/visitor/fixschema.html" target="main">FixSchema</a></li>
+<li><em><a href="doctrine/dbal/schema/visitor/visitor.html" target="main">Visitor</a></em></li>
+<li><a href="doctrine/dbal/tools/console/command/importcommand.html" target="main">ImportCommand</a></li>
+<li><a href="doctrine/dbal/tools/console/command/runsqlcommand.html" target="main">RunSqlCommand</a></li>
+<li><a href="doctrine/dbal/tools/console/helper/connectionhelper.html" target="main">ConnectionHelper</a></li>
+<li><a href="doctrine/dbal/types/arraytype.html" target="main">ArrayType</a></li>
+<li><a href="doctrine/dbal/types/biginttype.html" target="main">BigIntType</a></li>
+<li><a href="doctrine/dbal/types/booleantype.html" target="main">BooleanType</a></li>
+<li><a href="doctrine/dbal/types/datetimetype.html" target="main">DateTimeType</a></li>
+<li><a href="doctrine/dbal/types/datetype.html" target="main">DateType</a></li>
+<li><a href="doctrine/dbal/types/decimaltype.html" target="main">DecimalType</a></li>
+<li><a href="doctrine/dbal/types/integertype.html" target="main">IntegerType</a></li>
+<li><a href="doctrine/dbal/types/objecttype.html" target="main">ObjectType</a></li>
+<li><a href="doctrine/dbal/types/smallinttype.html" target="main">SmallIntType</a></li>
+<li><a href="doctrine/dbal/types/stringtype.html" target="main">StringType</a></li>
+<li><a href="doctrine/dbal/types/texttype.html" target="main">TextType</a></li>
+<li><a href="doctrine/dbal/types/timetype.html" target="main">TimeType</a></li>
+<li><a href="doctrine/dbal/types/type.html" target="main">Type</a></li>
+<li><a href="doctrine/orm/abstractquery.html" target="main">AbstractQuery</a></li>
+<li><a href="doctrine/orm/configuration.html" target="main">Configuration</a></li>
+<li><a href="doctrine/orm/entitymanager.html" target="main">EntityManager</a></li>
+<li><a href="doctrine/orm/entitynotfoundexception.html" target="main">EntityNotFoundException</a></li>
+<li><a href="doctrine/orm/entityrepository.html" target="main">EntityRepository</a></li>
+<li><a href="doctrine/orm/events.html" target="main">Events</a></li>
+<li><a href="doctrine/orm/nativequery.html" target="main">NativeQuery</a></li>
+<li><a href="doctrine/orm/noresultexception.html" target="main">NoResultException</a></li>
+<li><a href="doctrine/orm/nonuniqueresultexception.html" target="main">NonUniqueResultException</a></li>
+<li><a href="doctrine/orm/ormexception.html" target="main">ORMException</a></li>
+<li><a href="doctrine/orm/optimisticlockexception.html" target="main">OptimisticLockException</a></li>
+<li><a href="doctrine/orm/persistentcollection.html" target="main">PersistentCollection</a></li>
+<li><a href="doctrine/orm/query.html" target="main">Query</a></li>
+<li><a href="doctrine/orm/querybuilder.html" target="main">QueryBuilder</a></li>
+<li><a href="doctrine/orm/unitofwork.html" target="main">UnitOfWork</a></li>
+<li><a href="doctrine/orm/event/lifecycleeventargs.html" target="main">LifecycleEventArgs</a></li>
+<li><a href="doctrine/orm/event/loadclassmetadataeventargs.html" target="main">LoadClassMetadataEventArgs</a></li>
+<li><a href="doctrine/orm/event/onflusheventargs.html" target="main">OnFlushEventArgs</a></li>
+<li><a href="doctrine/orm/event/preupdateeventargs.html" target="main">PreUpdateEventArgs</a></li>
+<li><a href="doctrine/orm/id/abstractidgenerator.html" target="main">AbstractIdGenerator</a></li>
+<li><a href="doctrine/orm/id/assignedgenerator.html" target="main">AssignedGenerator</a></li>
+<li><a href="doctrine/orm/id/identitygenerator.html" target="main">IdentityGenerator</a></li>
+<li><a href="doctrine/orm/id/sequencegenerator.html" target="main">SequenceGenerator</a></li>
+<li><a href="doctrine/orm/id/sequenceidentitygenerator.html" target="main">SequenceIdentityGenerator</a></li>
+<li><a href="doctrine/orm/id/tablegenerator.html" target="main">TableGenerator</a></li>
+<li><a href="doctrine/orm/internal/commitordercalculator.html" target="main">CommitOrderCalculator</a></li>
+<li><a href="doctrine/orm/internal/hydration/abstracthydrator.html" target="main">AbstractHydrator</a></li>
+<li><a href="doctrine/orm/internal/hydration/arrayhydrator.html" target="main">ArrayHydrator</a></li>
+<li><a href="doctrine/orm/internal/hydration/hydrationexception.html" target="main">HydrationException</a></li>
+<li><a href="doctrine/orm/internal/hydration/iterableresult.html" target="main">IterableResult</a></li>
+<li><a href="doctrine/orm/internal/hydration/objecthydrator.html" target="main">ObjectHydrator</a></li>
+<li><a href="doctrine/orm/internal/hydration/scalarhydrator.html" target="main">ScalarHydrator</a></li>
+<li><a href="doctrine/orm/internal/hydration/singlescalarhydrator.html" target="main">SingleScalarHydrator</a></li>
+<li><a href="doctrine/orm/mapping/associationmapping.html" target="main">AssociationMapping</a></li>
+<li><a href="doctrine/orm/mapping/changetrackingpolicy.html" target="main">ChangeTrackingPolicy</a></li>
+<li><a href="doctrine/orm/mapping/classmetadata.html" target="main">ClassMetadata</a></li>
+<li><a href="doctrine/orm/mapping/classmetadatafactory.html" target="main">ClassMetadataFactory</a></li>
+<li><a href="doctrine/orm/mapping/classmetadatainfo.html" target="main">ClassMetadataInfo</a></li>
+<li><a href="doctrine/orm/mapping/column.html" target="main">Column</a></li>
+<li><a href="doctrine/orm/mapping/discriminatorcolumn.html" target="main">DiscriminatorColumn</a></li>
+<li><a href="doctrine/orm/mapping/discriminatormap.html" target="main">DiscriminatorMap</a></li>
+<li><a href="doctrine/orm/mapping/elementcollection.html" target="main">ElementCollection</a></li>
+<li><a href="doctrine/orm/mapping/entity.html" target="main">Entity</a></li>
+<li><a href="doctrine/orm/mapping/generatedvalue.html" target="main">GeneratedValue</a></li>
+<li><a href="doctrine/orm/mapping/haslifecyclecallbacks.html" target="main">HasLifecycleCallbacks</a></li>
+<li><a href="doctrine/orm/mapping/id.html" target="main">Id</a></li>
+<li><a href="doctrine/orm/mapping/index.html" target="main">Index</a></li>
+<li><a href="doctrine/orm/mapping/inheritancetype.html" target="main">InheritanceType</a></li>
+<li><a href="doctrine/orm/mapping/joincolumn.html" target="main">JoinColumn</a></li>
+<li><a href="doctrine/orm/mapping/joincolumns.html" target="main">JoinColumns</a></li>
+<li><a href="doctrine/orm/mapping/jointable.html" target="main">JoinTable</a></li>
+<li><a href="doctrine/orm/mapping/manytomany.html" target="main">ManyToMany</a></li>
+<li><a href="doctrine/orm/mapping/manytomanymapping.html" target="main">ManyToManyMapping</a></li>
+<li><a href="doctrine/orm/mapping/manytoone.html" target="main">ManyToOne</a></li>
+<li><a href="doctrine/orm/mapping/mappedsuperclass.html" target="main">MappedSuperclass</a></li>
+<li><a href="doctrine/orm/mapping/mappingexception.html" target="main">MappingException</a></li>
+<li><a href="doctrine/orm/mapping/onetomany.html" target="main">OneToMany</a></li>
+<li><a href="doctrine/orm/mapping/onetomanymapping.html" target="main">OneToManyMapping</a></li>
+<li><a href="doctrine/orm/mapping/onetoone.html" target="main">OneToOne</a></li>
+<li><a href="doctrine/orm/mapping/onetoonemapping.html" target="main">OneToOneMapping</a></li>
+<li><a href="doctrine/orm/mapping/orderby.html" target="main">OrderBy</a></li>
+<li><a href="doctrine/orm/mapping/postload.html" target="main">PostLoad</a></li>
+<li><a href="doctrine/orm/mapping/postpersist.html" target="main">PostPersist</a></li>
+<li><a href="doctrine/orm/mapping/postremove.html" target="main">PostRemove</a></li>
+<li><a href="doctrine/orm/mapping/postupdate.html" target="main">PostUpdate</a></li>
+<li><a href="doctrine/orm/mapping/prepersist.html" target="main">PrePersist</a></li>
+<li><a href="doctrine/orm/mapping/preremove.html" target="main">PreRemove</a></li>
+<li><a href="doctrine/orm/mapping/preupdate.html" target="main">PreUpdate</a></li>
+<li><a href="doctrine/orm/mapping/sequencegenerator.html" target="main">SequenceGenerator</a></li>
+<li><a href="doctrine/orm/mapping/table.html" target="main">Table</a></li>
+<li><a href="doctrine/orm/mapping/uniqueconstraint.html" target="main">UniqueConstraint</a></li>
+<li><a href="doctrine/orm/mapping/version.html" target="main">Version</a></li>
+<li><a href="doctrine/orm/mapping/driver/abstractfiledriver.html" target="main">AbstractFileDriver</a></li>
+<li><a href="doctrine/orm/mapping/driver/annotationdriver.html" target="main">AnnotationDriver</a></li>
+<li><a href="doctrine/orm/mapping/driver/databasedriver.html" target="main">DatabaseDriver</a></li>
+<li><em><a href="doctrine/orm/mapping/driver/driver.html" target="main">Driver</a></em></li>
+<li><a href="doctrine/orm/mapping/driver/driverchain.html" target="main">DriverChain</a></li>
+<li><a href="doctrine/orm/mapping/driver/phpdriver.html" target="main">PhpDriver</a></li>
+<li><a href="doctrine/orm/mapping/driver/xmldriver.html" target="main">XmlDriver</a></li>
+<li><a href="doctrine/orm/mapping/driver/yamldriver.html" target="main">YamlDriver</a></li>
+<li><a href="doctrine/orm/persisters/abstractcollectionpersister.html" target="main">AbstractCollectionPersister</a></li>
+<li><a href="doctrine/orm/persisters/abstractentityinheritancepersister.html" target="main">AbstractEntityInheritancePersister</a></li>
+<li><a href="doctrine/orm/persisters/elementcollectionpersister.html" target="main">ElementCollectionPersister</a></li>
+<li><a href="doctrine/orm/persisters/joinedsubclasspersister.html" target="main">JoinedSubclassPersister</a></li>
+<li><a href="doctrine/orm/persisters/manytomanypersister.html" target="main">ManyToManyPersister</a></li>
+<li><a href="doctrine/orm/persisters/onetomanypersister.html" target="main">OneToManyPersister</a></li>
+<li><a href="doctrine/orm/persisters/singletablepersister.html" target="main">SingleTablePersister</a></li>
+<li><a href="doctrine/orm/persisters/standardentitypersister.html" target="main">StandardEntityPersister</a></li>
+<li><a href="doctrine/orm/persisters/unionsubclasspersister.html" target="main">UnionSubclassPersister</a></li>
+<li><em><a href="doctrine/orm/proxy/proxy.html" target="main">Proxy</a></em></li>
+<li><a href="doctrine/orm/proxy/proxyexception.html" target="main">ProxyException</a></li>
+<li><a href="doctrine/orm/proxy/proxyfactory.html" target="main">ProxyFactory</a></li>
+<li><a href="doctrine/orm/query/expr.html" target="main">Expr</a></li>
+<li><a href="doctrine/orm/query/lexer.html" target="main">Lexer</a></li>
+<li><a href="doctrine/orm/query/parser.html" target="main">Parser</a></li>
+<li><a href="doctrine/orm/query/parserresult.html" target="main">ParserResult</a></li>
+<li><a href="doctrine/orm/query/printer.html" target="main">Printer</a></li>
+<li><a href="doctrine/orm/query/queryexception.html" target="main">QueryException</a></li>
+<li><a href="doctrine/orm/query/resultsetmapping.html" target="main">ResultSetMapping</a></li>
+<li><a href="doctrine/orm/query/sqlwalker.html" target="main">SqlWalker</a></li>
+<li><em><a href="doctrine/orm/query/treewalker.html" target="main">TreeWalker</a></em></li>
+<li><a href="doctrine/orm/query/treewalkeradapter.html" target="main">TreeWalkerAdapter</a></li>
+<li><a href="doctrine/orm/query/treewalkerchain.html" target="main">TreeWalkerChain</a></li>
+<li><a href="doctrine/orm/query/ast/astexception.html" target="main">ASTException</a></li>
+<li><a href="doctrine/orm/query/ast/aggregateexpression.html" target="main">AggregateExpression</a></li>
+<li><a href="doctrine/orm/query/ast/arithmeticexpression.html" target="main">ArithmeticExpression</a></li>
+<li><a href="doctrine/orm/query/ast/arithmeticfactor.html" target="main">ArithmeticFactor</a></li>
+<li><a href="doctrine/orm/query/ast/arithmeticterm.html" target="main">ArithmeticTerm</a></li>
+<li><a href="doctrine/orm/query/ast/betweenexpression.html" target="main">BetweenExpression</a></li>
+<li><a href="doctrine/orm/query/ast/collectionmemberexpression.html" target="main">CollectionMemberExpression</a></li>
+<li><a href="doctrine/orm/query/ast/comparisonexpression.html" target="main">ComparisonExpression</a></li>
+<li><a href="doctrine/orm/query/ast/conditionalexpression.html" target="main">ConditionalExpression</a></li>
+<li><a href="doctrine/orm/query/ast/conditionalfactor.html" target="main">ConditionalFactor</a></li>
+<li><a href="doctrine/orm/query/ast/conditionalprimary.html" target="main">ConditionalPrimary</a></li>
+<li><a href="doctrine/orm/query/ast/conditionalterm.html" target="main">ConditionalTerm</a></li>
+<li><a href="doctrine/orm/query/ast/deleteclause.html" target="main">DeleteClause</a></li>
+<li><a href="doctrine/orm/query/ast/deletestatement.html" target="main">DeleteStatement</a></li>
+<li><a href="doctrine/orm/query/ast/emptycollectioncomparisonexpression.html" target="main">EmptyCollectionComparisonExpression</a></li>
+<li><a href="doctrine/orm/query/ast/existsexpression.html" target="main">ExistsExpression</a></li>
+<li><a href="doctrine/orm/query/ast/fromclause.html" target="main">FromClause</a></li>
+<li><a href="doctrine/orm/query/ast/groupbyclause.html" target="main">GroupByClause</a></li>
+<li><a href="doctrine/orm/query/ast/havingclause.html" target="main">HavingClause</a></li>
+<li><a href="doctrine/orm/query/ast/identificationvariabledeclaration.html" target="main">IdentificationVariableDeclaration</a></li>
+<li><a href="doctrine/orm/query/ast/inexpression.html" target="main">InExpression</a></li>
+<li><a href="doctrine/orm/query/ast/indexby.html" target="main">IndexBy</a></li>
+<li><a href="doctrine/orm/query/ast/inputparameter.html" target="main">InputParameter</a></li>
+<li><a href="doctrine/orm/query/ast/join.html" target="main">Join</a></li>
+<li><a href="doctrine/orm/query/ast/joinassociationpathexpression.html" target="main">JoinAssociationPathExpression</a></li>
+<li><a href="doctrine/orm/query/ast/joinvariabledeclaration.html" target="main">JoinVariableDeclaration</a></li>
+<li><a href="doctrine/orm/query/ast/likeexpression.html" target="main">LikeExpression</a></li>
+<li><a href="doctrine/orm/query/ast/literal.html" target="main">Literal</a></li>
+<li><a href="doctrine/orm/query/ast/node.html" target="main">Node</a></li>
+<li><a href="doctrine/orm/query/ast/nullcomparisonexpression.html" target="main">NullComparisonExpression</a></li>
+<li><a href="doctrine/orm/query/ast/orderbyclause.html" target="main">OrderByClause</a></li>
+<li><a href="doctrine/orm/query/ast/orderbyitem.html" target="main">OrderByItem</a></li>
+<li><a href="doctrine/orm/query/ast/partialobjectexpression.html" target="main">PartialObjectExpression</a></li>
+<li><a href="doctrine/orm/query/ast/pathexpression.html" target="main">PathExpression</a></li>
+<li><a href="doctrine/orm/query/ast/quantifiedexpression.html" target="main">QuantifiedExpression</a></li>
+<li><a href="doctrine/orm/query/ast/rangevariabledeclaration.html" target="main">RangeVariableDeclaration</a></li>
+<li><a href="doctrine/orm/query/ast/selectclause.html" target="main">SelectClause</a></li>
+<li><a href="doctrine/orm/query/ast/selectexpression.html" target="main">SelectExpression</a></li>
+<li><a href="doctrine/orm/query/ast/selectstatement.html" target="main">SelectStatement</a></li>
+<li><a href="doctrine/orm/query/ast/simplearithmeticexpression.html" target="main">SimpleArithmeticExpression</a></li>
+<li><a href="doctrine/orm/query/ast/simpleselectclause.html" target="main">SimpleSelectClause</a></li>
+<li><a href="doctrine/orm/query/ast/simpleselectexpression.html" target="main">SimpleSelectExpression</a></li>
+<li><a href="doctrine/orm/query/ast/subselect.html" target="main">Subselect</a></li>
+<li><a href="doctrine/orm/query/ast/subselectfromclause.html" target="main">SubselectFromClause</a></li>
+<li><a href="doctrine/orm/query/ast/updateclause.html" target="main">UpdateClause</a></li>
+<li><a href="doctrine/orm/query/ast/updateitem.html" target="main">UpdateItem</a></li>
+<li><a href="doctrine/orm/query/ast/updatestatement.html" target="main">UpdateStatement</a></li>
+<li><a href="doctrine/orm/query/ast/whereclause.html" target="main">WhereClause</a></li>
+<li><a href="doctrine/orm/query/ast/functions/absfunction.html" target="main">AbsFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/concatfunction.html" target="main">ConcatFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/currentdatefunction.html" target="main">CurrentDateFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/currenttimefunction.html" target="main">CurrentTimeFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/currenttimestampfunction.html" target="main">CurrentTimestampFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/functionnode.html" target="main">FunctionNode</a></li>
+<li><a href="doctrine/orm/query/ast/functions/lengthfunction.html" target="main">LengthFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/locatefunction.html" target="main">LocateFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/lowerfunction.html" target="main">LowerFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/modfunction.html" target="main">ModFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/sizefunction.html" target="main">SizeFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/sqrtfunction.html" target="main">SqrtFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/substringfunction.html" target="main">SubstringFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/trimfunction.html" target="main">TrimFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/upperfunction.html" target="main">UpperFunction</a></li>
+<li><a href="doctrine/orm/query/exec/abstractsqlexecutor.html" target="main">AbstractSqlExecutor</a></li>
+<li><a href="doctrine/orm/query/exec/multitabledeleteexecutor.html" target="main">MultiTableDeleteExecutor</a></li>
+<li><a href="doctrine/orm/query/exec/multitableupdateexecutor.html" target="main">MultiTableUpdateExecutor</a></li>
+<li><a href="doctrine/orm/query/exec/singleselectexecutor.html" target="main">SingleSelectExecutor</a></li>
+<li><a href="doctrine/orm/query/exec/singletabledeleteupdateexecutor.html" target="main">SingleTableDeleteUpdateExecutor</a></li>
+<li><a href="doctrine/orm/query/expr/andx.html" target="main">Andx</a></li>
+<li><a href="doctrine/orm/query/expr/base.html" target="main">Base</a></li>
+<li><a href="doctrine/orm/query/expr/comparison.html" target="main">Comparison</a></li>
+<li><a href="doctrine/orm/query/expr/from.html" target="main">From</a></li>
+<li><a href="doctrine/orm/query/expr/func.html" target="main">Func</a></li>
+<li><a href="doctrine/orm/query/expr/groupby.html" target="main">GroupBy</a></li>
+<li><a href="doctrine/orm/query/expr/join.html" target="main">Join</a></li>
+<li><a href="doctrine/orm/query/expr/literal.html" target="main">Literal</a></li>
+<li><a href="doctrine/orm/query/expr/math.html" target="main">Math</a></li>
+<li><a href="doctrine/orm/query/expr/orderby.html" target="main">OrderBy</a></li>
+<li><a href="doctrine/orm/query/expr/orx.html" target="main">Orx</a></li>
+<li><a href="doctrine/orm/query/expr/select.html" target="main">Select</a></li>
+<li><a href="doctrine/orm/tools/classmetadatareader.html" target="main">ClassMetadataReader</a></li>
+<li><a href="doctrine/orm/tools/convertdoctrine1schema.html" target="main">ConvertDoctrine1Schema</a></li>
+<li><a href="doctrine/orm/tools/entitygenerator.html" target="main">EntityGenerator</a></li>
+<li><a href="doctrine/orm/tools/schematool.html" target="main">SchemaTool</a></li>
+<li><a href="doctrine/orm/tools/toolevents.html" target="main">ToolEvents</a></li>
+<li><a href="doctrine/orm/tools/toolsexception.html" target="main">ToolsException</a></li>
+<li><a href="doctrine/orm/tools/console/metadatafilter.html" target="main">MetadataFilter</a></li>
+<li><a href="doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html" target="main">ConvertDoctrine1SchemaCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/convertmappingcommand.html" target="main">ConvertMappingCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/ensureproductionsettingscommand.html" target="main">EnsureProductionSettingsCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/generateentitiescommand.html" target="main">GenerateEntitiesCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/generateproxiescommand.html" target="main">GenerateProxiesCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/generaterepositoriescommand.html" target="main">GenerateRepositoriesCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/rundqlcommand.html" target="main">RunDqlCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/clearcache/metadatacommand.html" target="main">MetadataCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/clearcache/querycommand.html" target="main">QueryCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/clearcache/resultcommand.html" target="main">ResultCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/schematool/abstractcommand.html" target="main">AbstractCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/schematool/createcommand.html" target="main">CreateCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/schematool/dropcommand.html" target="main">DropCommand</a></li>
+<li><a href="doctrine/orm/tools/console/command/schematool/updatecommand.html" target="main">UpdateCommand</a></li>
+<li><a href="doctrine/orm/tools/console/helper/entitymanagerhelper.html" target="main">EntityManagerHelper</a></li>
+<li><a href="doctrine/orm/tools/event/generateschemaeventargs.html" target="main">GenerateSchemaEventArgs</a></li>
+<li><a href="doctrine/orm/tools/event/generateschematableeventargs.html" target="main">GenerateSchemaTableEventArgs</a></li>
+<li><a href="doctrine/orm/tools/export/classmetadataexporter.html" target="main">ClassMetadataExporter</a></li>
+<li><a href="doctrine/orm/tools/export/exportexception.html" target="main">ExportException</a></li>
+<li><a href="doctrine/orm/tools/export/driver/abstractexporter.html" target="main">AbstractExporter</a></li>
+<li><a href="doctrine/orm/tools/export/driver/annotationexporter.html" target="main">AnnotationExporter</a></li>
+<li><a href="doctrine/orm/tools/export/driver/phpexporter.html" target="main">PhpExporter</a></li>
+<li><a href="doctrine/orm/tools/export/driver/xmlexporter.html" target="main">XmlExporter</a></li>
+<li><a href="doctrine/orm/tools/export/driver/yamlexporter.html" target="main">YamlExporter</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/deprecated-list.html b/lib/api/deprecated-list.html
new file mode 100644
index 000000000..179ee753d
--- /dev/null
+++ b/lib/api/deprecated-list.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="stylesheet.css">
+<link rel="start" href="overview-summary.html">
+
+<title>Deprecated (Doctrine)</title>
+
+</head>
+<body id="overview" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="overview-summary.html">Overview</a></li>
+<li>Namespace</li><li>Class</li><li><a href="overview-tree.html">Tree</a></li>
+<li class="active">Deprecated</li>
+<li><a href="index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="index.html" target="_top">Frames</a>
+<a href="deprecated-list.html" target="_top">No frames</a>
+</div>
+<h1>Deprecated API</h1><hr>
+
+<h2>Contents</h2>
+<ul>
+<li><a href="#deprecated_method">Deprecated Methods</a></li></ul>
+<table id="deprecated_method" class="detail">
+<tr><th colspan="2" class="title">Deprecated Methods</th></tr>
+<tr>
+<td class="name"><a href="doctrine/orm/mapping/classmetadatainfo.html#setTableName()">Doctrine\ORM\Mapping\ClassMetadataInfo\setTableName</a></td>
+<td class="description">Sets the name of the primary table the class is mapped to.</td>
+</tr>
+</table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="overview-summary.html">Overview</a></li>
+<li>Namespace</li><li>Class</li><li><a href="overview-tree.html">Tree</a></li>
+<li class="active">Deprecated</li>
+<li><a href="index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="index.html" target="_top">Frames</a>
+<a href="deprecated-list.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/annotations/annotation.html b/lib/api/doctrine/common/annotations/annotation.html
new file mode 100644
index 000000000..29ec3f736
--- /dev/null
+++ b/lib/api/doctrine/common/annotations/annotation.html
@@ -0,0 +1,131 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Annotation (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/annotation.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Annotations\Annotation</div>
+<div class="location">/Doctrine/Common/Annotations/Annotation.php at line 35</div>
+
+<h1>Class Annotation</h1>
+
+<pre class="tree"><strong>Annotation</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Annotation</strong></p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#value">$value</a></p><p class="description">Value property. </p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Annotation()">Annotation</a>(array data)</p><p class="description">Constructor</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/Common/Annotations/Annotation.php at line 42</div>
+<h3 id="value">value</h3>
+<code class="signature">public  string <strong>$value</strong></code>
+<div class="details">
+<p>Value property. Common among all derived classes.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/Common/Annotations/Annotation.php at line 49</div>
+<h3 id="Annotation()">Annotation</h3>
+<code class="signature">public <strong>Annotation</strong>(array data)</code>
+<div class="details">
+<p>Constructor</p><dl>
+<dt>Parameters:</dt>
+<dd>data - Key-value for properties to be defined in this class</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/annotation.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/annotations/annotationexception.html b/lib/api/doctrine/common/annotations/annotationexception.html
new file mode 100644
index 000000000..0302a0d4b
--- /dev/null
+++ b/lib/api/doctrine/common/annotations/annotationexception.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AnnotationException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/annotationexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Annotations\AnnotationException</div>
+<div class="location">/Doctrine/Common/Annotations/AnnotationException.php at line 35</div>
+
+<h1>Class AnnotationException</h1>
+
+<pre class="tree">Class:AnnotationException - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>AnnotationException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>AnnotationException</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>Description of AnnotationException</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#semanticalError()">semanticalError</a>(mixed message)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#syntaxError()">syntaxError</a>(mixed message)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Annotations/AnnotationException.php at line 43</div>
+<h3 id="semanticalError()">semanticalError</h3>
+<code class="signature">public static  void <strong>semanticalError</strong>(mixed message)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/AnnotationException.php at line 37</div>
+<h3 id="syntaxError()">syntaxError</h3>
+<code class="signature">public static  void <strong>syntaxError</strong>(mixed message)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/annotationexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/annotations/annotationreader.html b/lib/api/doctrine/common/annotations/annotationreader.html
new file mode 100644
index 000000000..0bbc7ca05
--- /dev/null
+++ b/lib/api/doctrine/common/annotations/annotationreader.html
@@ -0,0 +1,260 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AnnotationReader (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/annotationreader.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Annotations\AnnotationReader</div>
+<div class="location">/Doctrine/Common/Annotations/AnnotationReader.php at line 41</div>
+
+<h1>Class AnnotationReader</h1>
+
+<pre class="tree"><strong>AnnotationReader</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>AnnotationReader</strong></p>
+
+<div class="comment" id="overview_description"><p>A reader for docblock annotations.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AnnotationReader()">AnnotationReader</a>(<a href="../../../doctrine/common/cache/cache.html">Cache</a> cache)</p><p class="description">Constructor. </p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> The</td>
+<td class="description"><p class="name"><a href="#getClassAnnotation()">getClassAnnotation</a>(mixed class, string annotation, $class )</p><p class="description">Gets a class annotation.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getClassAnnotations()">getClassAnnotations</a>(string|ReflectionClass class)</p><p class="description">Gets the annotations applied to a class.</p></td>
+</tr>
+<tr>
+<td class="type"> The</td>
+<td class="description"><p class="name"><a href="#getMethodAnnotation()">getMethodAnnotation</a>(ReflectionMethod method, string annotation)</p><p class="description">Gets a method annotation.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getMethodAnnotations()">getMethodAnnotations</a>(mixed method, string|ReflectionClass class, string|ReflectionMethod property)</p><p class="description">Gets the annotations applied to a method.</p></td>
+</tr>
+<tr>
+<td class="type"> The</td>
+<td class="description"><p class="name"><a href="#getPropertyAnnotation()">getPropertyAnnotation</a>(ReflectionProperty property, string annotation)</p><p class="description">Gets a property annotation.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getPropertyAnnotations()">getPropertyAnnotations</a>(string|ReflectionProperty property, string|ReflectionClass class)</p><p class="description">Gets the annotations applied to a property.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setAnnotationNamespaceAlias()">setAnnotationNamespaceAlias</a>(mixed namespace, mixed alias, $alias )</p><p class="description">Sets an alias for an annotation namespace.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setDefaultAnnotationNamespace()">setDefaultAnnotationNamespace</a>(string defaultNamespace)</p><p class="description">Sets the default namespace that the AnnotationReader should assume for annotations
+with not fully qualified names.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/Common/Annotations/AnnotationReader.php at line 71</div>
+<h3 id="AnnotationReader()">AnnotationReader</h3>
+<code class="signature">public <strong>AnnotationReader</strong>(<a href="../../../doctrine/common/cache/cache.html">Cache</a> cache)</code>
+<div class="details">
+<p>Constructor. Initializes a new AnnotationReader that uses the given 
+Cache provider.</p><dl>
+<dt>Parameters:</dt>
+<dd>cache - The cache provider to use. If none is provided, ArrayCache is used.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Annotations/AnnotationReader.php at line 128</div>
+<h3 id="getClassAnnotation()">getClassAnnotation</h3>
+<code class="signature">public  The <strong>getClassAnnotation</strong>(mixed class, string annotation, $class )</code>
+<div class="details">
+<p>Gets a class annotation.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>annotation - The name of the annotation.</dd>
+<dt>Returns:</dt>
+<dd>Annotation or NULL, if the requested annotation does not exist.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/AnnotationReader.php at line 106</div>
+<h3 id="getClassAnnotations()">getClassAnnotations</h3>
+<code class="signature">public  array <strong>getClassAnnotations</strong>(string|ReflectionClass class)</code>
+<div class="details">
+<p>Gets the annotations applied to a class.</p><dl>
+<dt>Parameters:</dt>
+<dd>class - The name or ReflectionClass of the class from which the class annotations should be read.</dd>
+<dt>Returns:</dt>
+<dd>An array of Annotations.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/AnnotationReader.php at line 202</div>
+<h3 id="getMethodAnnotation()">getMethodAnnotation</h3>
+<code class="signature">public  The <strong>getMethodAnnotation</strong>(ReflectionMethod method, string annotation)</code>
+<div class="details">
+<p>Gets a method annotation.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>annotation - The name of the annotation.</dd>
+<dt>Returns:</dt>
+<dd>Annotation or NULL, if the requested annotation does not exist.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/AnnotationReader.php at line 179</div>
+<h3 id="getMethodAnnotations()">getMethodAnnotations</h3>
+<code class="signature">public  array <strong>getMethodAnnotations</strong>(mixed method, string|ReflectionClass class, string|ReflectionMethod property)</code>
+<div class="details">
+<p>Gets the annotations applied to a method.</p><dl>
+<dt>Parameters:</dt>
+<dd>class - The name or ReflectionClass of the class that owns the method.</dd>
+<dd>property - The name or ReflectionMethod of the method from which the annotations should be read.</dd>
+<dt>Returns:</dt>
+<dd>An array of Annotations.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/AnnotationReader.php at line 165</div>
+<h3 id="getPropertyAnnotation()">getPropertyAnnotation</h3>
+<code class="signature">public  The <strong>getPropertyAnnotation</strong>(ReflectionProperty property, string annotation)</code>
+<div class="details">
+<p>Gets a property annotation.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>annotation - The name of the annotation.</dd>
+<dt>Returns:</dt>
+<dd>Annotation or NULL, if the requested annotation does not exist.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/AnnotationReader.php at line 142</div>
+<h3 id="getPropertyAnnotations()">getPropertyAnnotations</h3>
+<code class="signature">public  array <strong>getPropertyAnnotations</strong>(string|ReflectionProperty property, string|ReflectionClass class)</code>
+<div class="details">
+<p>Gets the annotations applied to a property.</p><dl>
+<dt>Parameters:</dt>
+<dd>class - The name or ReflectionClass of the class that owns the property.</dd>
+<dd>property - The name or ReflectionProperty of the property from which the annotations should be read.</dd>
+<dt>Returns:</dt>
+<dd>An array of Annotations.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/AnnotationReader.php at line 94</div>
+<h3 id="setAnnotationNamespaceAlias()">setAnnotationNamespaceAlias</h3>
+<code class="signature">public  void <strong>setAnnotationNamespaceAlias</strong>(mixed namespace, mixed alias, $alias )</code>
+<div class="details">
+<p>Sets an alias for an annotation namespace.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/AnnotationReader.php at line 83</div>
+<h3 id="setDefaultAnnotationNamespace()">setDefaultAnnotationNamespace</h3>
+<code class="signature">public  void <strong>setDefaultAnnotationNamespace</strong>(string defaultNamespace)</code>
+<div class="details">
+<p>Sets the default namespace that the AnnotationReader should assume for annotations
+with not fully qualified names.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/annotationreader.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/annotations/lexer.html b/lib/api/doctrine/common/annotations/lexer.html
new file mode 100644
index 000000000..4166df12a
--- /dev/null
+++ b/lib/api/doctrine/common/annotations/lexer.html
@@ -0,0 +1,317 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Lexer (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/lexer.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Annotations\Lexer</div>
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 35</div>
+
+<h1>Class Lexer</h1>
+
+<pre class="tree">Class:Lexer - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>Lexer</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Lexer</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>Simple lexer for docblock annotations.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_AT">T_AT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_CLOSE_CURLY_BRACES">T_CLOSE_CURLY_BRACES</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_CLOSE_PARENTHESIS">T_CLOSE_PARENTHESIS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_COMMA">T_COMMA</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_EQUALS">T_EQUALS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_FALSE">T_FALSE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_FLOAT">T_FLOAT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_IDENTIFIER">T_IDENTIFIER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_INTEGER">T_INTEGER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_NAMESPACE_SEPARATOR">T_NAMESPACE_SEPARATOR</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_NONE">T_NONE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_OPEN_CURLY_BRACES">T_OPEN_CURLY_BRACES</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_OPEN_PARENTHESIS">T_OPEN_PARENTHESIS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_STRING">T_STRING</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_TRUE">T_TRUE</a></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#getCatchablePatterns()">getCatchablePatterns</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#getNonCatchablePatterns()">getNonCatchablePatterns</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 43</div>
+<h3 id="T_AT">T_AT</h3>
+<code class="signature">public final  int <strong>T_AT</strong> = 101</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 44</div>
+<h3 id="T_CLOSE_CURLY_BRACES">T_CLOSE_CURLY_BRACES</h3>
+<code class="signature">public final  int <strong>T_CLOSE_CURLY_BRACES</strong> = 102</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 45</div>
+<h3 id="T_CLOSE_PARENTHESIS">T_CLOSE_PARENTHESIS</h3>
+<code class="signature">public final  int <strong>T_CLOSE_PARENTHESIS</strong> = 103</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 46</div>
+<h3 id="T_COMMA">T_COMMA</h3>
+<code class="signature">public final  int <strong>T_COMMA</strong> = 104</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 47</div>
+<h3 id="T_EQUALS">T_EQUALS</h3>
+<code class="signature">public final  int <strong>T_EQUALS</strong> = 105</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 48</div>
+<h3 id="T_FALSE">T_FALSE</h3>
+<code class="signature">public final  int <strong>T_FALSE</strong> = 106</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 41</div>
+<h3 id="T_FLOAT">T_FLOAT</h3>
+<code class="signature">public final  int <strong>T_FLOAT</strong> = 5</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 38</div>
+<h3 id="T_IDENTIFIER">T_IDENTIFIER</h3>
+<code class="signature">public final  int <strong>T_IDENTIFIER</strong> = 2</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 39</div>
+<h3 id="T_INTEGER">T_INTEGER</h3>
+<code class="signature">public final  int <strong>T_INTEGER</strong> = 3</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 49</div>
+<h3 id="T_NAMESPACE_SEPARATOR">T_NAMESPACE_SEPARATOR</h3>
+<code class="signature">public final  int <strong>T_NAMESPACE_SEPARATOR</strong> = 107</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 37</div>
+<h3 id="T_NONE">T_NONE</h3>
+<code class="signature">public final  int <strong>T_NONE</strong> = 1</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 50</div>
+<h3 id="T_OPEN_CURLY_BRACES">T_OPEN_CURLY_BRACES</h3>
+<code class="signature">public final  int <strong>T_OPEN_CURLY_BRACES</strong> = 108</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 51</div>
+<h3 id="T_OPEN_PARENTHESIS">T_OPEN_PARENTHESIS</h3>
+<code class="signature">public final  int <strong>T_OPEN_PARENTHESIS</strong> = 109</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 40</div>
+<h3 id="T_STRING">T_STRING</h3>
+<code class="signature">public final  int <strong>T_STRING</strong> = 4</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 52</div>
+<h3 id="T_TRUE">T_TRUE</h3>
+<code class="signature">public final  int <strong>T_TRUE</strong> = 110</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 57</div>
+<h3 id="getCatchablePatterns()">getCatchablePatterns</h3>
+<code class="signature">protected  void <strong>getCatchablePatterns</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Inheritdoc.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Lexer.php at line 69</div>
+<h3 id="getNonCatchablePatterns()">getNonCatchablePatterns</h3>
+<code class="signature">protected  void <strong>getNonCatchablePatterns</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Inheritdoc.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/lexer.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/annotations/package-frame.html b/lib/api/doctrine/common/annotations/package-frame.html
new file mode 100644
index 000000000..b1a7b5b40
--- /dev/null
+++ b/lib/api/doctrine/common/annotations/package-frame.html
@@ -0,0 +1,30 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Annotations (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\Common\Annotations</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/common/annotations/annotation.html" target="main">Annotation</a></li>
+<li><a href="../../../doctrine/common/annotations/annotationexception.html" target="main">AnnotationException</a></li>
+<li><a href="../../../doctrine/common/annotations/annotationreader.html" target="main">AnnotationReader</a></li>
+<li><a href="../../../doctrine/common/annotations/lexer.html" target="main">Lexer</a></li>
+<li><a href="../../../doctrine/common/annotations/parser.html" target="main">Parser</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/annotations/package-functions.html b/lib/api/doctrine/common/annotations/package-functions.html
new file mode 100644
index 000000000..1e5a2b808
--- /dev/null
+++ b/lib/api/doctrine/common/annotations/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/annotations/package-globals.html b/lib/api/doctrine/common/annotations/package-globals.html
new file mode 100644
index 000000000..38cc3176e
--- /dev/null
+++ b/lib/api/doctrine/common/annotations/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/annotations/package-summary.html b/lib/api/doctrine/common/annotations/package-summary.html
new file mode 100644
index 000000000..48686a3a6
--- /dev/null
+++ b/lib/api/doctrine/common/annotations/package-summary.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Annotations (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\Common\Annotations</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/common/annotations/annotation.html">Annotation</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/common/annotations/annotationexception.html">AnnotationException</a></td><td class="description">Description of AnnotationException</td></tr>
+<tr><td class="name"><a href="../../../doctrine/common/annotations/annotationreader.html">AnnotationReader</a></td><td class="description">A reader for docblock annotations.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/common/annotations/lexer.html">Lexer</a></td><td class="description">Simple lexer for docblock annotations.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/common/annotations/parser.html">Parser</a></td><td class="description">A simple parser for docblock annotations.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/annotations/package-tree.html b/lib/api/doctrine/common/annotations/package-tree.html
new file mode 100644
index 000000000..45b48cc2e
--- /dev/null
+++ b/lib/api/doctrine/common/annotations/package-tree.html
@@ -0,0 +1,58 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Annotations (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\Common\Annotations</h1><ul>
+<li><a href="../../../doctrine/common/annotations/annotation.html">Doctrine\Common\Annotations\Annotation</a></li>
+<li><a href="../../../doctrine/common/annotations/annotationreader.html">Doctrine\Common\Annotations\AnnotationReader</a></li>
+<li><a href="../../../doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/annotations/parser.html b/lib/api/doctrine/common/annotations/parser.html
new file mode 100644
index 000000000..701509684
--- /dev/null
+++ b/lib/api/doctrine/common/annotations/parser.html
@@ -0,0 +1,296 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Parser (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/parser.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Annotations\Parser</div>
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 36</div>
+
+<h1>Class Parser</h1>
+
+<pre class="tree"><strong>Parser</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Parser</strong></p>
+
+<div class="comment" id="overview_description"><p>A simple parser for docblock annotations.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Parser()">Parser</a>()</p><p class="description">Constructs a new AnnotationParser.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#Annotation()">Annotation</a>()</p><p class="description">Annotation     ::= "@" AnnotationName ["(" [Values] ")"]
+AnnotationName ::= QualifiedName | SimpleName | AliasedName
+QualifiedName  ::= NameSpacePart "\" {NameSpacePart "\"}* SimpleName
+AliasedName    ::= Alias ":" SimpleName
+NameSpacePart  ::= identifier
+SimpleName     ::= identifier
+Alias          ::= identifier</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#Annotations()">Annotations</a>()</p><p class="description">Annotations ::= Annotation {[ "*" ]* [Annotation]}</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#ArrayEntry()">ArrayEntry</a>()</p><p class="description">ArrayEntry ::= Value | KeyValuePair
+KeyValuePair ::= Key "=" PlainValue
+Key ::= string | integer</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#Arrayx()">Arrayx</a>()</p><p class="description">Array ::= "{" ArrayEntry {"," ArrayEntry}* "}"</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#FieldAssignment()">FieldAssignment</a>()</p><p class="description">FieldAssignment ::= FieldName "=" PlainValue
+FieldName ::= identifier</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#PlainValue()">PlainValue</a>()</p><p class="description">PlainValue ::= integer | string | float | boolean | Array | Annotation</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#Value()">Value</a>()</p><p class="description">Value ::= PlainValue | FieldAssignment</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#Values()">Values</a>()</p><p class="description">Values ::= Array | Value {"," Value}</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#match()">match</a>(int|string token)</p><p class="description">Attempts to match the given token with the current lookahead token.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(string docBlockString, string context)</p><p class="description">Parses the given docblock string for annotations.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setAnnotationNamespaceAlias()">setAnnotationNamespaceAlias</a>(mixed namespace, mixed alias, $alias )</p><p class="description">Sets an alias for an annotation namespace.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setDefaultAnnotationNamespace()">setDefaultAnnotationNamespace</a>(mixed defaultNamespace, $defaultNamespace )</p><p class="description">Sets the default namespace that is assumed for an annotation that does not
+define a namespace prefix.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 85</div>
+<h3 id="Parser()">Parser</h3>
+<code class="signature">public <strong>Parser</strong>()</code>
+<div class="details">
+<p>Constructs a new AnnotationParser.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 224</div>
+<h3 id="Annotation()">Annotation</h3>
+<code class="signature">public  mixed <strong>Annotation</strong>()</code>
+<div class="details">
+<p>Annotation     ::= "@" AnnotationName ["(" [Values] ")"]
+AnnotationName ::= QualifiedName | SimpleName | AliasedName
+QualifiedName  ::= NameSpacePart "\" {NameSpacePart "\"}* SimpleName
+AliasedName    ::= Alias ":" SimpleName
+NameSpacePart  ::= identifier
+SimpleName     ::= identifier
+Alias          ::= identifier</p><dl>
+<dt>Returns:</dt>
+<dd>False if it is not a valid Annotation; instance of Annotation subclass otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 189</div>
+<h3 id="Annotations()">Annotations</h3>
+<code class="signature">public  array <strong>Annotations</strong>()</code>
+<div class="details">
+<p>Annotations ::= Annotation {[ "*" ]* [Annotation]}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 431</div>
+<h3 id="ArrayEntry()">ArrayEntry</h3>
+<code class="signature">public  array <strong>ArrayEntry</strong>()</code>
+<div class="details">
+<p>ArrayEntry ::= Value | KeyValuePair
+KeyValuePair ::= Key "=" PlainValue
+Key ::= string | integer</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 398</div>
+<h3 id="Arrayx()">Arrayx</h3>
+<code class="signature">public  array <strong>Arrayx</strong>()</code>
+<div class="details">
+<p>Array ::= "{" ArrayEntry {"," ArrayEntry}* "}"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 384</div>
+<h3 id="FieldAssignment()">FieldAssignment</h3>
+<code class="signature">public  array <strong>FieldAssignment</strong>()</code>
+<div class="details">
+<p>FieldAssignment ::= FieldName "=" PlainValue
+FieldName ::= identifier</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 342</div>
+<h3 id="PlainValue()">PlainValue</h3>
+<code class="signature">public  mixed <strong>PlainValue</strong>()</code>
+<div class="details">
+<p>PlainValue ::= integer | string | float | boolean | Array | Annotation</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 326</div>
+<h3 id="Value()">Value</h3>
+<code class="signature">public  mixed <strong>Value</strong>()</code>
+<div class="details">
+<p>Value ::= PlainValue | FieldAssignment</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 284</div>
+<h3 id="Values()">Values</h3>
+<code class="signature">public  array <strong>Values</strong>()</code>
+<div class="details">
+<p>Values ::= Array | Value {"," Value}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 147</div>
+<h3 id="match()">match</h3>
+<code class="signature">public  bool <strong>match</strong>(int|string token)</code>
+<div class="details">
+<p>Attempts to match the given token with the current lookahead token.
+If they match, updates the lookahead token; otherwise raises a syntax error.</p><dl>
+<dt>Parameters:</dt>
+<dd>token - type or value</dd>
+<dt>Returns:</dt>
+<dd>True if tokens match; false otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 119</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  array <strong>parse</strong>(string docBlockString, string context)</code>
+<div class="details">
+<p>Parses the given docblock string for annotations.</p><dl>
+<dt>Returns:</dt>
+<dd>Array of Annotations. If no annotations are found, an empty array is returned.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 107</div>
+<h3 id="setAnnotationNamespaceAlias()">setAnnotationNamespaceAlias</h3>
+<code class="signature">public  void <strong>setAnnotationNamespaceAlias</strong>(mixed namespace, mixed alias, $alias )</code>
+<div class="details">
+<p>Sets an alias for an annotation namespace.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Annotations/Parser.php at line 96</div>
+<h3 id="setDefaultAnnotationNamespace()">setDefaultAnnotationNamespace</h3>
+<code class="signature">public  void <strong>setDefaultAnnotationNamespace</strong>(mixed defaultNamespace, $defaultNamespace )</code>
+<div class="details">
+<p>Sets the default namespace that is assumed for an annotation that does not
+define a namespace prefix.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/annotations/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/annotations/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/annotations/parser.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/abstractcache.html b/lib/api/doctrine/common/cache/abstractcache.html
new file mode 100644
index 000000000..00098025b
--- /dev/null
+++ b/lib/api/doctrine/common/cache/abstractcache.html
@@ -0,0 +1,239 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AbstractCache (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/abstractcache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Cache\AbstractCache</div>
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 35</div>
+
+<h1>Class AbstractCache</h1>
+
+<pre class="tree"><strong>AbstractCache</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractCache</strong></p>
+
+<div class="comment" id="overview_description"><p>Base class for cache driver implementations.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#contains()">contains</a>(mixed id)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#delete()">delete</a>(mixed id)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#deleteAll()">deleteAll</a>()</p><p class="description">Delete all cache entries.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#deleteByPrefix()">deleteByPrefix</a>(string prefix)</p><p class="description">Delete cache entries where the id has the passed prefix</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#deleteByRegex()">deleteByRegex</a>(string regex)</p><p class="description">Delete cache entries where the id matches a PHP regular expressions</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#deleteBySuffix()">deleteBySuffix</a>(string suffix)</p><p class="description">Delete cache entries where the id has the passed suffix</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#fetch()">fetch</a>(mixed id)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type">abstract  array</td>
+<td class="description"><p class="name"><a href="#getIds()">getIds</a>()</p><p class="description">Get an array of all the cache ids stored</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#save()">save</a>(mixed id, mixed data, mixed lifeTime)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setNamespace()">setNamespace</a>(string namespace)</p><p class="description">Set the namespace to prefix all cache ids with.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 65</div>
+<h3 id="contains()">contains</h3>
+<code class="signature">public  void <strong>contains</strong>(mixed id)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 82</div>
+<h3 id="delete()">delete</h3>
+<code class="signature">public  void <strong>delete</strong>(mixed id)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 98</div>
+<h3 id="deleteAll()">deleteAll</h3>
+<code class="signature">public  array <strong>deleteAll</strong>()</code>
+<div class="details">
+<p>Delete all cache entries.</p><dl>
+<dt>Returns:</dt>
+<dd>$deleted Array of the deleted cache ids</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 132</div>
+<h3 id="deleteByPrefix()">deleteByPrefix</h3>
+<code class="signature">public  array <strong>deleteByPrefix</strong>(string prefix)</code>
+<div class="details">
+<p>Delete cache entries where the id has the passed prefix</p><dl>
+<dt>Returns:</dt>
+<dd>$deleted Array of the deleted cache ids</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 113</div>
+<h3 id="deleteByRegex()">deleteByRegex</h3>
+<code class="signature">public  array <strong>deleteByRegex</strong>(string regex)</code>
+<div class="details">
+<p>Delete cache entries where the id matches a PHP regular expressions</p><dl>
+<dt>Returns:</dt>
+<dd>$deleted Array of the deleted cache ids</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 151</div>
+<h3 id="deleteBySuffix()">deleteBySuffix</h3>
+<code class="signature">public  array <strong>deleteBySuffix</strong>(string suffix)</code>
+<div class="details">
+<p>Delete cache entries where the id has the passed suffix</p><dl>
+<dt>Returns:</dt>
+<dd>$deleted Array of the deleted cache ids</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 57</div>
+<h3 id="fetch()">fetch</h3>
+<code class="signature">public  void <strong>fetch</strong>(mixed id)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 218</div>
+<h3 id="getIds()">getIds</h3>
+<code class="signature">public abstract  array <strong>getIds</strong>()</code>
+<div class="details">
+<p>Get an array of all the cache ids stored</p><dl>
+<dt>Returns:</dt>
+<dd>$ids</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 73</div>
+<h3 id="save()">save</h3>
+<code class="signature">public  void <strong>save</strong>(mixed id, mixed data, mixed lifeTime)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/AbstractCache.php at line 49</div>
+<h3 id="setNamespace()">setNamespace</h3>
+<code class="signature">public  void <strong>setNamespace</strong>(string namespace)</code>
+<div class="details">
+<p>Set the namespace to prefix all cache ids with.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/abstractcache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/apccache.html b/lib/api/doctrine/common/cache/apccache.html
new file mode 100644
index 000000000..d9fce06ae
--- /dev/null
+++ b/lib/api/doctrine/common/cache/apccache.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ApcCache (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/apccache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Cache\ApcCache</div>
+<div class="location">/Doctrine/Common/Cache/ApcCache.php at line 38</div>
+
+<h1>Class ApcCache</h1>
+
+<pre class="tree">Class:ApcCache - Superclass: AbstractCache
+<a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a><br>   &lfloor;&nbsp;<strong>ApcCache</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ApcCache</strong><br>extends <a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>APC cache driver.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>David Abdemoulaie <dave@hobodave.com></dd>
+<dt>Todo:</dt>
+<dd>Rename: APCCache</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getIds()">getIds</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\Common\Cache\AbstractCache</th></tr>
+<tr><td><a href="../../../doctrine/common/cache/abstractcache.html#contains()">contains</a>, <a href="../../../doctrine/common/cache/abstractcache.html#delete()">delete</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteAll()">deleteAll</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteByPrefix()">deleteByPrefix</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteByRegex()">deleteByRegex</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteBySuffix()">deleteBySuffix</a>, <a href="../../../doctrine/common/cache/abstractcache.html#fetch()">fetch</a>, <a href="../../../doctrine/common/cache/abstractcache.html#getIds()">getIds</a>, <a href="../../../doctrine/common/cache/abstractcache.html#save()">save</a>, <a href="../../../doctrine/common/cache/abstractcache.html#setNamespace()">setNamespace</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Cache/ApcCache.php at line 43</div>
+<h3 id="getIds()">getIds</h3>
+<code class="signature">public  array <strong>getIds</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Returns:</dt>
+<dd>$ids</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/apccache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/arraycache.html b/lib/api/doctrine/common/cache/arraycache.html
new file mode 100644
index 000000000..305078bbb
--- /dev/null
+++ b/lib/api/doctrine/common/cache/arraycache.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ArrayCache (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/arraycache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Cache\ArrayCache</div>
+<div class="location">/Doctrine/Common/Cache/ArrayCache.php at line 37</div>
+
+<h1>Class ArrayCache</h1>
+
+<pre class="tree">Class:ArrayCache - Superclass: AbstractCache
+<a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a><br>   &lfloor;&nbsp;<strong>ArrayCache</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ArrayCache</strong><br>extends <a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Array cache driver.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>David Abdemoulaie <dave@hobodave.com></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getIds()">getIds</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\Common\Cache\AbstractCache</th></tr>
+<tr><td><a href="../../../doctrine/common/cache/abstractcache.html#contains()">contains</a>, <a href="../../../doctrine/common/cache/abstractcache.html#delete()">delete</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteAll()">deleteAll</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteByPrefix()">deleteByPrefix</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteByRegex()">deleteByRegex</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteBySuffix()">deleteBySuffix</a>, <a href="../../../doctrine/common/cache/abstractcache.html#fetch()">fetch</a>, <a href="../../../doctrine/common/cache/abstractcache.html#getIds()">getIds</a>, <a href="../../../doctrine/common/cache/abstractcache.html#save()">save</a>, <a href="../../../doctrine/common/cache/abstractcache.html#setNamespace()">setNamespace</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Cache/ArrayCache.php at line 47</div>
+<h3 id="getIds()">getIds</h3>
+<code class="signature">public  array <strong>getIds</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Returns:</dt>
+<dd>$ids</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/arraycache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/cache.html b/lib/api/doctrine/common/cache/cache.html
new file mode 100644
index 000000000..43bda65d1
--- /dev/null
+++ b/lib/api/doctrine/common/cache/cache.html
@@ -0,0 +1,174 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Cache (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/cache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Cache\Cache</div>
+<div class="location">/Doctrine/Common/Cache/Cache.php at line 36</div>
+
+<h1>Interface Cache</h1>
+
+<pre class="tree"><strong>Cache</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>Cache</strong></p>
+
+<div class="comment" id="overview_description"><p>Interface for cache drivers.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#contains()">contains</a>(string id)</p><p class="description">Test if an entry exists in the cache.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#delete()">delete</a>(string id)</p><p class="description">Deletes a cache entry.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#fetch()">fetch</a>(string id)</p><p class="description">Fetches an entry from the cache.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#save()">save</a>(string id, string data, int lifeTime)</p><p class="description">Puts data into the cache.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Cache/Cache.php at line 52</div>
+<h3 id="contains()">contains</h3>
+<code class="signature">public  boolean <strong>contains</strong>(string id)</code>
+<div class="details">
+<p>Test if an entry exists in the cache.</p><dl>
+<dt>Parameters:</dt>
+<dd>id - cache id The cache id of the entry to check for.</dd>
+<dt>Returns:</dt>
+<dd>TRUE if a cache entry exists for the given cache id, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/Cache.php at line 70</div>
+<h3 id="delete()">delete</h3>
+<code class="signature">public  boolean <strong>delete</strong>(string id)</code>
+<div class="details">
+<p>Deletes a cache entry.</p><dl>
+<dt>Parameters:</dt>
+<dd>id - cache id</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the cache entry was successfully deleted, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/Cache.php at line 44</div>
+<h3 id="fetch()">fetch</h3>
+<code class="signature">public  string <strong>fetch</strong>(string id)</code>
+<div class="details">
+<p>Fetches an entry from the cache.</p><dl>
+<dt>Parameters:</dt>
+<dd>id - cache id The id of the cache entry to fetch.</dd>
+<dt>Returns:</dt>
+<dd>The cached data or FALSE, if no cache entry exists for the given id.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/Cache.php at line 62</div>
+<h3 id="save()">save</h3>
+<code class="signature">public  boolean <strong>save</strong>(string id, string data, int lifeTime)</code>
+<div class="details">
+<p>Puts data into the cache.</p><dl>
+<dt>Parameters:</dt>
+<dd>id - The cache id.</dd>
+<dd>data - The cache entry/data.</dd>
+<dd>lifeTime - The lifetime. If != 0, sets a specific lifetime for this cache entry (0 => infinite lifeTime).</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the entry was successfully stored in the cache, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/cache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/memcachecache.html b/lib/api/doctrine/common/cache/memcachecache.html
new file mode 100644
index 000000000..50d6fbe40
--- /dev/null
+++ b/lib/api/doctrine/common/cache/memcachecache.html
@@ -0,0 +1,148 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>MemcacheCache (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/memcachecache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Cache\MemcacheCache</div>
+<div class="location">/Doctrine/Common/Cache/MemcacheCache.php at line 39</div>
+
+<h1>Class MemcacheCache</h1>
+
+<pre class="tree">Class:MemcacheCache - Superclass: AbstractCache
+<a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a><br>   &lfloor;&nbsp;<strong>MemcacheCache</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>MemcacheCache</strong><br>extends <a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Memcache cache driver.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>David Abdemoulaie <dave@hobodave.com></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getIds()">getIds</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> Memcache</td>
+<td class="description"><p class="name"><a href="#getMemcache()">getMemcache</a>()</p><p class="description">Gets the memcache instance used by the cache.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setMemcache()">setMemcache</a>(Memcache memcache)</p><p class="description">Sets the memcache instance to use.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\Common\Cache\AbstractCache</th></tr>
+<tr><td><a href="../../../doctrine/common/cache/abstractcache.html#contains()">contains</a>, <a href="../../../doctrine/common/cache/abstractcache.html#delete()">delete</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteAll()">deleteAll</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteByPrefix()">deleteByPrefix</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteByRegex()">deleteByRegex</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteBySuffix()">deleteBySuffix</a>, <a href="../../../doctrine/common/cache/abstractcache.html#fetch()">fetch</a>, <a href="../../../doctrine/common/cache/abstractcache.html#getIds()">getIds</a>, <a href="../../../doctrine/common/cache/abstractcache.html#save()">save</a>, <a href="../../../doctrine/common/cache/abstractcache.html#setNamespace()">setNamespace</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Cache/MemcacheCache.php at line 69</div>
+<h3 id="getIds()">getIds</h3>
+<code class="signature">public  array <strong>getIds</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Returns:</dt>
+<dd>$ids</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/MemcacheCache.php at line 61</div>
+<h3 id="getMemcache()">getMemcache</h3>
+<code class="signature">public  Memcache <strong>getMemcache</strong>()</code>
+<div class="details">
+<p>Gets the memcache instance used by the cache.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Cache/MemcacheCache.php at line 51</div>
+<h3 id="setMemcache()">setMemcache</h3>
+<code class="signature">public  void <strong>setMemcache</strong>(Memcache memcache)</code>
+<div class="details">
+<p>Sets the memcache instance to use.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/memcachecache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/package-frame.html b/lib/api/doctrine/common/cache/package-frame.html
new file mode 100644
index 000000000..8efd939c0
--- /dev/null
+++ b/lib/api/doctrine/common/cache/package-frame.html
@@ -0,0 +1,35 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Cache (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\Common\Cache</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/common/cache/abstractcache.html" target="main">AbstractCache</a></li>
+<li><a href="../../../doctrine/common/cache/apccache.html" target="main">ApcCache</a></li>
+<li><a href="../../../doctrine/common/cache/arraycache.html" target="main">ArrayCache</a></li>
+<li><a href="../../../doctrine/common/cache/memcachecache.html" target="main">MemcacheCache</a></li>
+<li><a href="../../../doctrine/common/cache/xcachecache.html" target="main">XcacheCache</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../../doctrine/common/cache/cache.html" target="main">Cache</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/package-functions.html b/lib/api/doctrine/common/cache/package-functions.html
new file mode 100644
index 000000000..b8af993d6
--- /dev/null
+++ b/lib/api/doctrine/common/cache/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/package-globals.html b/lib/api/doctrine/common/cache/package-globals.html
new file mode 100644
index 000000000..bfd2295d3
--- /dev/null
+++ b/lib/api/doctrine/common/cache/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/package-summary.html b/lib/api/doctrine/common/cache/package-summary.html
new file mode 100644
index 000000000..911a520e8
--- /dev/null
+++ b/lib/api/doctrine/common/cache/package-summary.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Cache (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\Common\Cache</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a></td><td class="description">Base class for cache driver implementations.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/common/cache/apccache.html">ApcCache</a></td><td class="description">APC cache driver.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/common/cache/arraycache.html">ArrayCache</a></td><td class="description">Array cache driver.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/common/cache/memcachecache.html">MemcacheCache</a></td><td class="description">Memcache cache driver.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/common/cache/xcachecache.html">XcacheCache</a></td><td class="description">Xcache cache driver.</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/common/cache/cache.html">Cache</a></td><td class="description">Interface for cache drivers.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/package-tree.html b/lib/api/doctrine/common/cache/package-tree.html
new file mode 100644
index 000000000..93eeb25e9
--- /dev/null
+++ b/lib/api/doctrine/common/cache/package-tree.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Cache (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\Common\Cache</h1><ul>
+<li><a href="../../../doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a><ul>
+<li><a href="../../../doctrine/common/cache/apccache.html">Doctrine\Common\Cache\ApcCache</a></li>
+<li><a href="../../../doctrine/common/cache/arraycache.html">Doctrine\Common\Cache\ArrayCache</a></li>
+<li><a href="../../../doctrine/common/cache/memcachecache.html">Doctrine\Common\Cache\MemcacheCache</a></li>
+<li><a href="../../../doctrine/common/cache/xcachecache.html">Doctrine\Common\Cache\XcacheCache</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/cache/xcachecache.html b/lib/api/doctrine/common/cache/xcachecache.html
new file mode 100644
index 000000000..0ef584649
--- /dev/null
+++ b/lib/api/doctrine/common/cache/xcachecache.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>XcacheCache (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/xcachecache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Cache\XcacheCache</div>
+<div class="location">/Doctrine/Common/Cache/XcacheCache.php at line 37</div>
+
+<h1>Class XcacheCache</h1>
+
+<pre class="tree">Class:XcacheCache - Superclass: AbstractCache
+<a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a><br>   &lfloor;&nbsp;<strong>XcacheCache</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>XcacheCache</strong><br>extends <a href="../../../doctrine/common/cache/abstractcache.html">AbstractCache</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Xcache cache driver.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>David Abdemoulaie <dave@hobodave.com></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getIds()">getIds</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\Common\Cache\AbstractCache</th></tr>
+<tr><td><a href="../../../doctrine/common/cache/abstractcache.html#contains()">contains</a>, <a href="../../../doctrine/common/cache/abstractcache.html#delete()">delete</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteAll()">deleteAll</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteByPrefix()">deleteByPrefix</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteByRegex()">deleteByRegex</a>, <a href="../../../doctrine/common/cache/abstractcache.html#deleteBySuffix()">deleteBySuffix</a>, <a href="../../../doctrine/common/cache/abstractcache.html#fetch()">fetch</a>, <a href="../../../doctrine/common/cache/abstractcache.html#getIds()">getIds</a>, <a href="../../../doctrine/common/cache/abstractcache.html#save()">save</a>, <a href="../../../doctrine/common/cache/abstractcache.html#setNamespace()">setNamespace</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Cache/XcacheCache.php at line 42</div>
+<h3 id="getIds()">getIds</h3>
+<code class="signature">public  array <strong>getIds</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Returns:</dt>
+<dd>$ids</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/cache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/cache/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/cache/xcachecache.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/classloader.html b/lib/api/doctrine/common/classloader.html
new file mode 100644
index 000000000..e06a2a812
--- /dev/null
+++ b/lib/api/doctrine/common/classloader.html
@@ -0,0 +1,235 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>ClassLoader (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/classloader.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\ClassLoader</div>
+<div class="location">/Doctrine/Common/ClassLoader.php at line 36</div>
+
+<h1>Class ClassLoader</h1>
+
+<pre class="tree"><strong>ClassLoader</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ClassLoader</strong></p>
+
+<div class="comment" id="overview_description"><p>A <tt>ClassLoader</tt> is an autoloader for class files that can be
+installed on the SPL autoload stack. It is a class loader that loads only classes
+of a specific namespace or all namespaces and is suitable for working together
+with other autoloaders in the SPL autoload stack.</p><p>If no include path is configured through <code><a href="../../doctrine/common/classloader.html#setIncludePath()">setIncludePath</a></code>, a ClassLoader
+relies on the PHP include_path.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ClassLoader()">ClassLoader</a>(string ns, mixed includePath)</p><p class="description">Creates a new ClassLoader that loads classes of the
+specified namespace.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getFileExtension()">getFileExtension</a>()</p><p class="description">Gets the file extension of class files in the namespace of this class loader.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIncludePath()">getIncludePath</a>()</p><p class="description">Gets the base include path for all class files in the namespace of this class loader.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getNamespaceSeparator()">getNamespaceSeparator</a>()</p><p class="description">Gets the namespace separator used by classes in the namespace of this class loader.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#loadClass()">loadClass</a>(mixed className, string classname)</p><p class="description">Loads the given class or interface.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#register()">register</a>()</p><p class="description">Installs this class loader on the SPL autoload stack.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setFileExtension()">setFileExtension</a>(string fileExtension)</p><p class="description">Sets the file extension of class files in the namespace of this class loader.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setIncludePath()">setIncludePath</a>(string includePath)</p><p class="description">Sets the base include path for all class files in the namespace of this class loader.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setNamespaceSeparator()">setNamespaceSeparator</a>(string sep)</p><p class="description">Sets the namespace separator used by classes in the namespace of this class loader.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#unregister()">unregister</a>()</p><p class="description">Uninstalls this class loader on the SPL autoload stack.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/Common/ClassLoader.php at line 49</div>
+<h3 id="ClassLoader()">ClassLoader</h3>
+<code class="signature">public <strong>ClassLoader</strong>(string ns, mixed includePath)</code>
+<div class="details">
+<p>Creates a new <tt>ClassLoader</tt> that loads classes of the
+specified namespace.</p><dl>
+<dt>Parameters:</dt>
+<dd>ns - The namespace to use.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/ClassLoader.php at line 110</div>
+<h3 id="getFileExtension()">getFileExtension</h3>
+<code class="signature">public  string <strong>getFileExtension</strong>()</code>
+<div class="details">
+<p>Gets the file extension of class files in the namespace of this class loader.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/ClassLoader.php at line 90</div>
+<h3 id="getIncludePath()">getIncludePath</h3>
+<code class="signature">public  string <strong>getIncludePath</strong>()</code>
+<div class="details">
+<p>Gets the base include path for all class files in the namespace of this class loader.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/ClassLoader.php at line 70</div>
+<h3 id="getNamespaceSeparator()">getNamespaceSeparator</h3>
+<code class="signature">public  string <strong>getNamespaceSeparator</strong>()</code>
+<div class="details">
+<p>Gets the namespace separator used by classes in the namespace of this class loader.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/ClassLoader.php at line 137</div>
+<h3 id="loadClass()">loadClass</h3>
+<code class="signature">public  boolean <strong>loadClass</strong>(mixed className, string classname)</code>
+<div class="details">
+<p>Loads the given class or interface.</p><dl>
+<dt>Parameters:</dt>
+<dd>classname - The name of the class to load.</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the class has been successfully loaded, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/ClassLoader.php at line 118</div>
+<h3 id="register()">register</h3>
+<code class="signature">public  void <strong>register</strong>()</code>
+<div class="details">
+<p>Installs this class loader on the SPL autoload stack.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/ClassLoader.php at line 100</div>
+<h3 id="setFileExtension()">setFileExtension</h3>
+<code class="signature">public  void <strong>setFileExtension</strong>(string fileExtension)</code>
+<div class="details">
+<p>Sets the file extension of class files in the namespace of this class loader.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/ClassLoader.php at line 80</div>
+<h3 id="setIncludePath()">setIncludePath</h3>
+<code class="signature">public  void <strong>setIncludePath</strong>(string includePath)</code>
+<div class="details">
+<p>Sets the base include path for all class files in the namespace of this class loader.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/ClassLoader.php at line 60</div>
+<h3 id="setNamespaceSeparator()">setNamespaceSeparator</h3>
+<code class="signature">public  void <strong>setNamespaceSeparator</strong>(string sep)</code>
+<div class="details">
+<p>Sets the namespace separator used by classes in the namespace of this class loader.</p><dl>
+<dt>Parameters:</dt>
+<dd>sep - The separator to use.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/ClassLoader.php at line 126</div>
+<h3 id="unregister()">unregister</h3>
+<code class="signature">public  void <strong>unregister</strong>()</code>
+<div class="details">
+<p>Uninstalls this class loader on the SPL autoload stack.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/classloader.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/collections/arraycollection.html b/lib/api/doctrine/common/collections/arraycollection.html
new file mode 100644
index 000000000..981438d8d
--- /dev/null
+++ b/lib/api/doctrine/common/collections/arraycollection.html
@@ -0,0 +1,567 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ArrayCollection (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/collections/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/collections/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/arraycollection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Collections\ArrayCollection</div>
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 38</div>
+
+<h1>Class ArrayCollection</h1>
+
+<pre class="tree"><strong>ArrayCollection</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ArrayCollection</strong></p>
+
+<div class="comment" id="overview_description"><p>An ArrayCollection is a Collection implementation that uses a regular PHP array
+internally.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ArrayCollection()">ArrayCollection</a>(array elements)</p><p class="description">Initializes a new ArrayCollection.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#add()">add</a>(mixed value)</p><p class="description">Adds an element to the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#clear()">clear</a>()</p><p class="description">Clears the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#contains()">contains</a>(mixed element)</p><p class="description">Checks whether the given element is contained in the collection.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#containsKey()">containsKey</a>(mixed key)</p><p class="description">Checks whether the collection contains a specific key/index.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#count()">count</a>()</p><p class="description">Returns the number of elements in the collection.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#current()">current</a>()</p><p class="description">Gets the element of the collection at the current internal iterator position.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#exists()">exists</a>(Closure p)</p><p class="description">Tests for the existance of an element that satisfies the given predicate.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/common/collections/collection.html">Collection</a></td>
+<td class="description"><p class="name"><a href="#filter()">filter</a>(Closure p)</p><p class="description">Returns all the elements of this collection that satisfy the predicate p.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#first()">first</a>()</p><p class="description">Sets the internal iterator to the first element in the collection and
+returns this element.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#forAll()">forAll</a>(Closure p)</p><p class="description">Applies the given predicate p to all elements of this collection,
+returning true, if the predicate yields true for all elements.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#get()">get</a>(mixed key)</p><p class="description">Gets the element with the given key/index.</p></td>
+</tr>
+<tr>
+<td class="type"> ArrayIterator</td>
+<td class="description"><p class="name"><a href="#getIterator()">getIterator</a>()</p><p class="description">Gets an iterator for iterating over the elements in the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getKeys()">getKeys</a>()</p><p class="description">Gets all keys/indexes of the collection elements.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getValues()">getValues</a>()</p><p class="description">Gets all elements.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#indexOf()">indexOf</a>(mixed element)</p><p class="description">Searches for a given element and, if found, returns the corresponding key/index
+of that element. </p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isEmpty()">isEmpty</a>()</p><p class="description">Checks whether the collection is empty.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#key()">key</a>()</p><p class="description">Gets the current key/index at the current internal iterator position.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#last()">last</a>()</p><p class="description">Sets the internal iterator to the last element in the collection and
+returns this element.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/common/collections/collection.html">Collection</a></td>
+<td class="description"><p class="name"><a href="#map()">map</a>(Closure func)</p><p class="description">Applies the given function to each element in the collection and returns
+a new collection with the elements returned by the function.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#next()">next</a>()</p><p class="description">Moves the internal iterator position to the next element.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#offsetExists()">offsetExists</a>(mixed offset)</p><p class="description">ArrayAccess implementation of offsetExists()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#offsetGet()">offsetGet</a>(mixed offset)</p><p class="description">ArrayAccess implementation of offsetGet()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#offsetSet()">offsetSet</a>(mixed offset, mixed value)</p><p class="description">ArrayAccess implementation of offsetGet()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#offsetUnset()">offsetUnset</a>(mixed offset)</p><p class="description">ArrayAccess implementation of offsetUnset()</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#partition()">partition</a>(Closure p)</p><p class="description">Partitions this collection in two collections according to a predicate.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#remove()">remove</a>(mixed key)</p><p class="description">Removes an element with a specific key/index from the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#removeElement()">removeElement</a>(mixed element)</p><p class="description">Removes the specified element from the collection, if it is found.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#set()">set</a>(mixed key, mixed value)</p><p class="description">Adds/sets an element in the collection at the index / with the specified key.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#toArray()">toArray</a>()</p><p class="description">Gets the PHP array representation of this collection.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 53</div>
+<h3 id="ArrayCollection()">ArrayCollection</h3>
+<code class="signature">public <strong>ArrayCollection</strong>(array elements)</code>
+<div class="details">
+<p>Initializes a new ArrayCollection.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 321</div>
+<h3 id="add()">add</h3>
+<code class="signature">public  boolean <strong>add</strong>(mixed value)</code>
+<div class="details">
+<p>Adds an element to the collection.</p><dl>
+<dt>Returns:</dt>
+<dd>Always TRUE.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 426</div>
+<h3 id="clear()">clear</h3>
+<code class="signature">public  void <strong>clear</strong>()</code>
+<div class="details">
+<p>Clears the collection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 223</div>
+<h3 id="contains()">contains</h3>
+<code class="signature">public  boolean <strong>contains</strong>(mixed element)</code>
+<div class="details">
+<p>Checks whether the given element is contained in the collection.
+Only element values are compared, not keys. The comparison of two elements
+is strict, that means not only the value but also the type must match.
+For objects this means reference equality.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the given element is contained in the collection, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 208</div>
+<h3 id="containsKey()">containsKey</h3>
+<code class="signature">public  boolean <strong>containsKey</strong>(mixed key)</code>
+<div class="details">
+<p>Checks whether the collection contains a specific key/index.</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The key to check for.</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the given key/index exists, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 296</div>
+<h3 id="count()">count</h3>
+<code class="signature">public  integer <strong>count</strong>()</code>
+<div class="details">
+<p>Returns the number of elements in the collection.</p><p>Implementation of the Countable interface.</p><dl>
+<dt>Returns:</dt>
+<dd>The number of elements in the collection.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 115</div>
+<h3 id="current()">current</h3>
+<code class="signature">public  mixed <strong>current</strong>()</code>
+<div class="details">
+<p>Gets the element of the collection at the current internal iterator position.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 234</div>
+<h3 id="exists()">exists</h3>
+<code class="signature">public  boolean <strong>exists</strong>(Closure p)</code>
+<div class="details">
+<p>Tests for the existance of an element that satisfies the given predicate.</p><dl>
+<dt>Parameters:</dt>
+<dd>p - The predicate.</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the predicate is TRUE for at least one element, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 368</div>
+<h3 id="filter()">filter</h3>
+<code class="signature">public  <a href="../../../doctrine/common/collections/collection.html">Collection</a> <strong>filter</strong>(Closure p)</code>
+<div class="details">
+<p>Returns all the elements of this collection that satisfy the predicate p.
+The order of the elements is preserved.</p><dl>
+<dt>Parameters:</dt>
+<dd>p - The predicate used for filtering.</dd>
+<dt>Returns:</dt>
+<dd>A collection with the results of the filter operation.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 74</div>
+<h3 id="first()">first</h3>
+<code class="signature">public  mixed <strong>first</strong>()</code>
+<div class="details">
+<p>Sets the internal iterator to the first element in the collection and
+returns this element.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 380</div>
+<h3 id="forAll()">forAll</h3>
+<code class="signature">public  boolean <strong>forAll</strong>(Closure p)</code>
+<div class="details">
+<p>Applies the given predicate p to all elements of this collection,
+returning true, if the predicate yields true for all elements.</p><dl>
+<dt>Parameters:</dt>
+<dd>p - The predicate.</dd>
+<dt>Returns:</dt>
+<dd>TRUE, if the predicate yields TRUE for all elements, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 261</div>
+<h3 id="get()">get</h3>
+<code class="signature">public  mixed <strong>get</strong>(mixed key)</code>
+<div class="details">
+<p>Gets the element with the given key/index.</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The key.</dd>
+<dt>Returns:</dt>
+<dd>The element or NULL, if no element exists for the given key.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 344</div>
+<h3 id="getIterator()">getIterator</h3>
+<code class="signature">public  ArrayIterator <strong>getIterator</strong>()</code>
+<div class="details">
+<p>Gets an iterator for iterating over the elements in the collection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 274</div>
+<h3 id="getKeys()">getKeys</h3>
+<code class="signature">public  array <strong>getKeys</strong>()</code>
+<div class="details">
+<p>Gets all keys/indexes of the collection elements.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 284</div>
+<h3 id="getValues()">getValues</h3>
+<code class="signature">public  array <strong>getValues</strong>()</code>
+<div class="details">
+<p>Gets all elements.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 250</div>
+<h3 id="indexOf()">indexOf</h3>
+<code class="signature">public  mixed <strong>indexOf</strong>(mixed element)</code>
+<div class="details">
+<p>Searches for a given element and, if found, returns the corresponding key/index
+of that element. The comparison of two elements is strict, that means not
+only the value but also the type must match.
+For objects this means reference equality.</p><dl>
+<dt>Parameters:</dt>
+<dd>element - The element to search for.</dd>
+<dt>Returns:</dt>
+<dd>The key/index of the element or FALSE if the element was not found.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 334</div>
+<h3 id="isEmpty()">isEmpty</h3>
+<code class="signature">public  boolean <strong>isEmpty</strong>()</code>
+<div class="details">
+<p>Checks whether the collection is empty.</p><p>Note: This is preferrable over count() == 0.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the collection is empty, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 95</div>
+<h3 id="key()">key</h3>
+<code class="signature">public  mixed <strong>key</strong>()</code>
+<div class="details">
+<p>Gets the current key/index at the current internal iterator position.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 85</div>
+<h3 id="last()">last</h3>
+<code class="signature">public  mixed <strong>last</strong>()</code>
+<div class="details">
+<p>Sets the internal iterator to the last element in the collection and
+returns this element.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 356</div>
+<h3 id="map()">map</h3>
+<code class="signature">public  <a href="../../../doctrine/common/collections/collection.html">Collection</a> <strong>map</strong>(Closure func)</code>
+<div class="details">
+<p>Applies the given function to each element in the collection and returns
+a new collection with the elements returned by the function.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 105</div>
+<h3 id="next()">next</h3>
+<code class="signature">public  mixed <strong>next</strong>()</code>
+<div class="details">
+<p>Moves the internal iterator position to the next element.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 163</div>
+<h3 id="offsetExists()">offsetExists</h3>
+<code class="signature">public  void <strong>offsetExists</strong>(mixed offset)</code>
+<div class="details">
+<p>ArrayAccess implementation of offsetExists()</p><dl>
+<dt>See Also:</dt>
+<dd>containsKey()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 173</div>
+<h3 id="offsetGet()">offsetGet</h3>
+<code class="signature">public  void <strong>offsetGet</strong>(mixed offset)</code>
+<div class="details">
+<p>ArrayAccess implementation of offsetGet()</p><dl>
+<dt>See Also:</dt>
+<dd>get()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 184</div>
+<h3 id="offsetSet()">offsetSet</h3>
+<code class="signature">public  void <strong>offsetSet</strong>(mixed offset, mixed value)</code>
+<div class="details">
+<p>ArrayAccess implementation of offsetGet()</p><dl>
+<dt>See Also:</dt>
+<dd>add()</dd>
+<dd>set()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 197</div>
+<h3 id="offsetUnset()">offsetUnset</h3>
+<code class="signature">public  void <strong>offsetUnset</strong>(mixed offset)</code>
+<div class="details">
+<p>ArrayAccess implementation of offsetUnset()</p><dl>
+<dt>See Also:</dt>
+<dd>remove()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 400</div>
+<h3 id="partition()">partition</h3>
+<code class="signature">public  array <strong>partition</strong>(Closure p)</code>
+<div class="details">
+<p>Partitions this collection in two collections according to a predicate.
+Keys are preserved in the resulting collections.</p><dl>
+<dt>Parameters:</dt>
+<dd>p - The predicate on which to partition.</dd>
+<dt>Returns:</dt>
+<dd>An array with two elements. The first element contains the collection of elements where the predicate returned TRUE, the second element contains the collection of elements where the predicate returned FALSE.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 126</div>
+<h3 id="remove()">remove</h3>
+<code class="signature">public  mixed <strong>remove</strong>(mixed key)</code>
+<div class="details">
+<p>Removes an element with a specific key/index from the collection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 144</div>
+<h3 id="removeElement()">removeElement</h3>
+<code class="signature">public  boolean <strong>removeElement</strong>(mixed element)</code>
+<div class="details">
+<p>Removes the specified element from the collection, if it is found.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 310</div>
+<h3 id="set()">set</h3>
+<code class="signature">public  void <strong>set</strong>(mixed key, mixed value)</code>
+<div class="details">
+<p>Adds/sets an element in the collection at the index / with the specified key.</p><p>When the collection is a Map this is like put(key,value)/add(key,value).
+When the collection is a List this is like add(position,value).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/ArrayCollection.php at line 63</div>
+<h3 id="toArray()">toArray</h3>
+<code class="signature">public  array <strong>toArray</strong>()</code>
+<div class="details">
+<p>Gets the PHP array representation of this collection.</p><dl>
+<dt>Returns:</dt>
+<dd>The PHP array representation of this collection.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/collections/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/collections/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/arraycollection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/collections/collection.html b/lib/api/doctrine/common/collections/collection.html
new file mode 100644
index 000000000..2f1b2c91b
--- /dev/null
+++ b/lib/api/doctrine/common/collections/collection.html
@@ -0,0 +1,485 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Collection (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/collections/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/collections/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/collection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Collections\Collection</div>
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 51</div>
+
+<h1>Interface Collection</h1>
+
+<pre class="tree">Class:Collection - Superclass: Countable
+Countable<br>&lfloor;&nbsp;<strong>Collection</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>Collection</strong><br>extends Countable
+
+</p>
+
+<div class="comment" id="overview_description"><p>The missing (SPL) Collection/Array/OrderedMap interface.</p><p>A Collection resembles the nature of a regular PHP array. That is,
+it is essentially an <b>ordered map</b> that can also be used
+like a list.</p><p>A Collection has an internal iterator just like a PHP array. In addition,
+a Collection can be iterated with external iterators, which is preferrable.
+To use an external iterator simply use the foreach language construct to
+iterate over the collection (which calls <code>getIterator()</code> internally) or
+explicitly retrieve an iterator though <code>getIterator()</code> which can then be
+used to iterate over the collection.
+You can not rely on the internal iterator of the collection being at a certain
+position unless you explicitly positioned it before. Prefer iteration with
+external iterators.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#add()">add</a>(mixed element)</p><p class="description">Adds an element at the end of the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#clear()">clear</a>()</p><p class="description">Clears the collection, removing all elements.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#contains()">contains</a>(mixed element)</p><p class="description">Checks whether an element is contained in the collection.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#containsKey()">containsKey</a>(string|integer key)</p><p class="description">Checks whether the collection contains an element with the specified key/index.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#current()">current</a>()</p><p class="description">Gets the element of the collection at the current iterator position.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#exists()">exists</a>(Closure p)</p><p class="description">Tests for the existence of an element that satisfies the given predicate.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/common/collections/collection.html">Collection</a></td>
+<td class="description"><p class="name"><a href="#filter()">filter</a>(Closure p)</p><p class="description">Returns all the elements of this collection that satisfy the predicate p.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#first()">first</a>()</p><p class="description">Sets the internal iterator to the first element in the collection and
+returns this element.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#forAll()">forAll</a>(Closure p)</p><p class="description">Applies the given predicate p to all elements of this collection,
+returning true, if the predicate yields true for all elements.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#get()">get</a>(string|integer key)</p><p class="description">Gets the element at the specified key/index.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getKeys()">getKeys</a>()</p><p class="description">Gets all keys/indices of the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getValues()">getValues</a>()</p><p class="description">Gets all values of the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#indexOf()">indexOf</a>(mixed element)</p><p class="description">Gets the index/key of a given element. </p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isEmpty()">isEmpty</a>()</p><p class="description">Checks whether the collection is empty (contains no elements).</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#key()">key</a>()</p><p class="description">Gets the key/index of the element at the current iterator position.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#last()">last</a>()</p><p class="description">Sets the internal iterator to the last element in the collection and
+returns this element.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/common/collections/collection.html">Collection</a></td>
+<td class="description"><p class="name"><a href="#map()">map</a>(Closure func)</p><p class="description">Applies the given function to each element in the collection and returns
+a new collection with the elements returned by the function.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#next()">next</a>()</p><p class="description">Moves the internal iterator position to the next element.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#partition()">partition</a>(Closure p)</p><p class="description">Partitions this collection in two collections according to a predicate.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#remove()">remove</a>(string|integer key)</p><p class="description">Removes the element at the specified index from the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#removeElement()">removeElement</a>(mixed element)</p><p class="description">Removes an element from the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#set()">set</a>(string|integer key, mixed value)</p><p class="description">Sets an element in the collection at the specified key/index.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#toArray()">toArray</a>()</p><p class="description">Gets a native PHP array representation of the collection.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 59</div>
+<h3 id="add()">add</h3>
+<code class="signature">public  boolean <strong>add</strong>(mixed element)</code>
+<div class="details">
+<p>Adds an element at the end of the collection.</p><dl>
+<dt>Parameters:</dt>
+<dd>element - The element to add.</dd>
+<dt>Returns:</dt>
+<dd>Always TRUE.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 64</div>
+<h3 id="clear()">clear</h3>
+<code class="signature">public  void <strong>clear</strong>()</code>
+<div class="details">
+<p>Clears the collection, removing all elements.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 73</div>
+<h3 id="contains()">contains</h3>
+<code class="signature">public  boolean <strong>contains</strong>(mixed element)</code>
+<div class="details">
+<p>Checks whether an element is contained in the collection.
+This is an O(n) operation, where n is the size of the collection.</p><dl>
+<dt>Parameters:</dt>
+<dd>element - The element to search for.</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the collection contains the element, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 105</div>
+<h3 id="containsKey()">containsKey</h3>
+<code class="signature">public  boolean <strong>containsKey</strong>(string|integer key)</code>
+<div class="details">
+<p>Checks whether the collection contains an element with the specified key/index.</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The key/index to check for.</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the collection contains an element with the specified key/index, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 172</div>
+<h3 id="current()">current</h3>
+<code class="signature">public  void <strong>current</strong>()</code>
+<div class="details">
+<p>Gets the element of the collection at the current iterator position.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 186</div>
+<h3 id="exists()">exists</h3>
+<code class="signature">public  boolean <strong>exists</strong>(Closure p)</code>
+<div class="details">
+<p>Tests for the existence of an element that satisfies the given predicate.</p><dl>
+<dt>Parameters:</dt>
+<dd>p - The predicate.</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the predicate is TRUE for at least one element, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 195</div>
+<h3 id="filter()">filter</h3>
+<code class="signature">public  <a href="../../../doctrine/common/collections/collection.html">Collection</a> <strong>filter</strong>(Closure p)</code>
+<div class="details">
+<p>Returns all the elements of this collection that satisfy the predicate p.
+The order of the elements is preserved.</p><dl>
+<dt>Parameters:</dt>
+<dd>p - The predicate used for filtering.</dd>
+<dt>Returns:</dt>
+<dd>A collection with the results of the filter operation.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 152</div>
+<h3 id="first()">first</h3>
+<code class="signature">public  mixed <strong>first</strong>()</code>
+<div class="details">
+<p>Sets the internal iterator to the first element in the collection and
+returns this element.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 204</div>
+<h3 id="forAll()">forAll</h3>
+<code class="signature">public  boolean <strong>forAll</strong>(Closure p)</code>
+<div class="details">
+<p>Applies the given predicate p to all elements of this collection,
+returning true, if the predicate yields true for all elements.</p><dl>
+<dt>Parameters:</dt>
+<dd>p - The predicate.</dd>
+<dt>Returns:</dt>
+<dd>TRUE, if the predicate yields TRUE for all elements, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 113</div>
+<h3 id="get()">get</h3>
+<code class="signature">public  mixed <strong>get</strong>(string|integer key)</code>
+<div class="details">
+<p>Gets the element at the specified key/index.</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The key/index of the element to retrieve.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 121</div>
+<h3 id="getKeys()">getKeys</h3>
+<code class="signature">public  array <strong>getKeys</strong>()</code>
+<div class="details">
+<p>Gets all keys/indices of the collection.</p><dl>
+<dt>Returns:</dt>
+<dd>The keys/indices of the collection, in the order of the corresponding elements in the collection.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 129</div>
+<h3 id="getValues()">getValues</h3>
+<code class="signature">public  array <strong>getValues</strong>()</code>
+<div class="details">
+<p>Gets all values of the collection.</p><dl>
+<dt>Returns:</dt>
+<dd>The values of all elements in the collection, in the order they appear in the collection.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 234</div>
+<h3 id="indexOf()">indexOf</h3>
+<code class="signature">public  mixed <strong>indexOf</strong>(mixed element)</code>
+<div class="details">
+<p>Gets the index/key of a given element. The comparison of two elements is strict,
+that means not only the value but also the type must match.
+For objects this means reference equality.</p><dl>
+<dt>Parameters:</dt>
+<dd>element - The element to search for.</dd>
+<dt>Returns:</dt>
+<dd>The key/index of the element or FALSE if the element was not found.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 80</div>
+<h3 id="isEmpty()">isEmpty</h3>
+<code class="signature">public  boolean <strong>isEmpty</strong>()</code>
+<div class="details">
+<p>Checks whether the collection is empty (contains no elements).</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the collection is empty, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 166</div>
+<h3 id="key()">key</h3>
+<code class="signature">public  void <strong>key</strong>()</code>
+<div class="details">
+<p>Gets the key/index of the element at the current iterator position.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 160</div>
+<h3 id="last()">last</h3>
+<code class="signature">public  mixed <strong>last</strong>()</code>
+<div class="details">
+<p>Sets the internal iterator to the last element in the collection and
+returns this element.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 213</div>
+<h3 id="map()">map</h3>
+<code class="signature">public  <a href="../../../doctrine/common/collections/collection.html">Collection</a> <strong>map</strong>(Closure func)</code>
+<div class="details">
+<p>Applies the given function to each element in the collection and returns
+a new collection with the elements returned by the function.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 178</div>
+<h3 id="next()">next</h3>
+<code class="signature">public  void <strong>next</strong>()</code>
+<div class="details">
+<p>Moves the internal iterator position to the next element.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 224</div>
+<h3 id="partition()">partition</h3>
+<code class="signature">public  array <strong>partition</strong>(Closure p)</code>
+<div class="details">
+<p>Partitions this collection in two collections according to a predicate.
+Keys are preserved in the resulting collections.</p><dl>
+<dt>Parameters:</dt>
+<dd>p - The predicate on which to partition.</dd>
+<dt>Returns:</dt>
+<dd>An array with two elements. The first element contains the collection of elements where the predicate returned TRUE, the second element contains the collection of elements where the predicate returned FALSE.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 88</div>
+<h3 id="remove()">remove</h3>
+<code class="signature">public  mixed <strong>remove</strong>(string|integer key)</code>
+<div class="details">
+<p>Removes the element at the specified index from the collection.</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The kex/index of the element to remove.</dd>
+<dt>Returns:</dt>
+<dd>The removed element or NULL, if the collection did not contain the element.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 96</div>
+<h3 id="removeElement()">removeElement</h3>
+<code class="signature">public  mixed <strong>removeElement</strong>(mixed element)</code>
+<div class="details">
+<p>Removes an element from the collection.</p><dl>
+<dt>Parameters:</dt>
+<dd>element - The element to remove.</dd>
+<dt>Returns:</dt>
+<dd>The removed element or NULL, if the collection did not contain the element.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 137</div>
+<h3 id="set()">set</h3>
+<code class="signature">public  void <strong>set</strong>(string|integer key, mixed value)</code>
+<div class="details">
+<p>Sets an element in the collection at the specified key/index.</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The key/index of the element to set.</dd>
+<dd>value - The element to set.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Collections/Collection.php at line 144</div>
+<h3 id="toArray()">toArray</h3>
+<code class="signature">public  array <strong>toArray</strong>()</code>
+<div class="details">
+<p>Gets a native PHP array representation of the collection.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/collections/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/collections/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/collection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/collections/package-frame.html b/lib/api/doctrine/common/collections/package-frame.html
new file mode 100644
index 000000000..31a75ca48
--- /dev/null
+++ b/lib/api/doctrine/common/collections/package-frame.html
@@ -0,0 +1,31 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Collections (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\Common\Collections</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/common/collections/arraycollection.html" target="main">ArrayCollection</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../../doctrine/common/collections/collection.html" target="main">Collection</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/collections/package-functions.html b/lib/api/doctrine/common/collections/package-functions.html
new file mode 100644
index 000000000..735f5ea1a
--- /dev/null
+++ b/lib/api/doctrine/common/collections/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/collections/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/collections/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/collections/package-globals.html b/lib/api/doctrine/common/collections/package-globals.html
new file mode 100644
index 000000000..243465f89
--- /dev/null
+++ b/lib/api/doctrine/common/collections/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/collections/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/collections/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/collections/package-summary.html b/lib/api/doctrine/common/collections/package-summary.html
new file mode 100644
index 000000000..3b47f23df
--- /dev/null
+++ b/lib/api/doctrine/common/collections/package-summary.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Collections (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/common/collections/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\Common\Collections</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/common/collections/arraycollection.html">ArrayCollection</a></td><td class="description">An ArrayCollection is a Collection implementation that uses a regular PHP array
+internally.</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/common/collections/collection.html">Collection</a></td><td class="description">The missing (SPL) Collection/Array/OrderedMap interface.
+</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/common/collections/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/collections/package-tree.html b/lib/api/doctrine/common/collections/package-tree.html
new file mode 100644
index 000000000..f10ab9cdb
--- /dev/null
+++ b/lib/api/doctrine/common/collections/package-tree.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Collections (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/collections/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\Common\Collections</h1><ul>
+<li><a href="../../../doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/collections/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/collections/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/commonexception.html b/lib/api/doctrine/common/commonexception.html
new file mode 100644
index 000000000..465f01f2d
--- /dev/null
+++ b/lib/api/doctrine/common/commonexception.html
@@ -0,0 +1,87 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>CommonException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/commonexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\CommonException</div>
+<div class="location">/Doctrine/Common/CommonException.php at line 10</div>
+
+<h1>Class CommonException</h1>
+
+<pre class="tree">Class:CommonException - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<strong>CommonException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>CommonException</strong><br>extends Exception
+
+</p>
+
+<div class="comment" id="overview_description"><p>Base exception class for package Doctrine\Common</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>heinrich /</dd>
+</dl>
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/commonexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/eventargs.html b/lib/api/doctrine/common/eventargs.html
new file mode 100644
index 000000000..6e962977d
--- /dev/null
+++ b/lib/api/doctrine/common/eventargs.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>EventArgs (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/eventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\EventArgs</div>
+<div class="location">/Doctrine/Common/EventArgs.php at line 39</div>
+
+<h1>Class EventArgs</h1>
+
+<pre class="tree"><strong>EventArgs</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>EventArgs</strong></p>
+
+<div class="comment" id="overview_description"><p>EventArgs is the base class for classes containing event data.</p><p>This class contains no event data. It is used by events that do not pass state
+information to an event handler when an event is raised. The single empty EventArgs
+instance can be obtained through <code><a href="../../doctrine/common/eventargs.html#getEmptyInstance()">getEmptyInstance</a></code>.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  <a href="../../doctrine/common/eventargs.html">EventArgs</a></td>
+<td class="description"><p class="name"><a href="#getEmptyInstance()">getEmptyInstance</a>()</p><p class="description">Gets the single, empty and immutable EventArgs instance.
+</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/EventArgs.php at line 61</div>
+<h3 id="getEmptyInstance()">getEmptyInstance</h3>
+<code class="signature">public static  <a href="../../doctrine/common/eventargs.html">EventArgs</a> <strong>getEmptyInstance</strong>()</code>
+<div class="details">
+<p>Gets the single, empty and immutable EventArgs instance.</p><p>This instance will be used when events are dispatched without any parameter,
+like this: EventManager::dispatchEvent('eventname');</p><p>The benefit from this is that only one empty instance is instantiated and shared
+(otherwise there would be instances for every dispatched in the abovementioned form)</p><dl>
+<dt>See Also:</dt>
+<dd>EventManager::dispatchEvent</dd>
+<dt>See Also:</dt>
+<dd><code><a href="http://msdn.microsoft.com/en-us/library/system.eventargs.aspx">http://msdn.microsoft.com/en-us/library/system.eventargs.aspx</a></code></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/eventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/eventmanager.html b/lib/api/doctrine/common/eventmanager.html
new file mode 100644
index 000000000..87c6a48bf
--- /dev/null
+++ b/lib/api/doctrine/common/eventmanager.html
@@ -0,0 +1,198 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>EventManager (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/eventmanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\EventManager</div>
+<div class="location">/Doctrine/Common/EventManager.php at line 39</div>
+
+<h1>Class EventManager</h1>
+
+<pre class="tree"><strong>EventManager</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>EventManager</strong></p>
+
+<div class="comment" id="overview_description"><p>The EventManager is the central point of Doctrine's event listener system.
+Listeners are registered on the manager and events are dispatched through the
+manager.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addEventListener()">addEventListener</a>(string|array events, object listener)</p><p class="description">Adds an event listener that listens on the specified events.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addEventSubscriber()">addEventSubscriber</a>(Doctrine\Common\EventSubscriber subscriber)</p><p class="description">Adds an EventSubscriber. </p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#dispatchEvent()">dispatchEvent</a>(string eventName, <a href="../../doctrine/common/eventargs.html">EventArgs</a> eventArgs)</p><p class="description">Dispatches an event to all registered listeners.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getListeners()">getListeners</a>(string event)</p><p class="description">Gets the listeners of a specific event or all listeners.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#hasListeners()">hasListeners</a>(string event)</p><p class="description">Checks whether an event has any registered listeners.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#removeEventListener()">removeEventListener</a>(string|array events, object listener)</p><p class="description">Removes an event listener from the specified events.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/EventManager.php at line 97</div>
+<h3 id="addEventListener()">addEventListener</h3>
+<code class="signature">public  void <strong>addEventListener</strong>(string|array events, object listener)</code>
+<div class="details">
+<p>Adds an event listener that listens on the specified events.</p><dl>
+<dt>Parameters:</dt>
+<dd>events - The event(s) to listen on.</dd>
+<dd>listener - The listener object.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/EventManager.php at line 134</div>
+<h3 id="addEventSubscriber()">addEventSubscriber</h3>
+<code class="signature">public  void <strong>addEventSubscriber</strong>(Doctrine\Common\EventSubscriber subscriber)</code>
+<div class="details">
+<p>Adds an EventSubscriber. The subscriber is asked for all the events he is
+interested in and added as a listener for these events.</p><dl>
+<dt>Parameters:</dt>
+<dd>subscriber - The subscriber.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/EventManager.php at line 58</div>
+<h3 id="dispatchEvent()">dispatchEvent</h3>
+<code class="signature">public  boolean <strong>dispatchEvent</strong>(string eventName, <a href="../../doctrine/common/eventargs.html">EventArgs</a> eventArgs)</code>
+<div class="details">
+<p>Dispatches an event to all registered listeners.</p><dl>
+<dt>Parameters:</dt>
+<dd>eventName - The name of the event to dispatch. The name of the event is the name of the method that is invoked on listeners.</dd>
+<dd>eventArgs - The event arguments to pass to the event handlers/listeners. If not supplied, the single empty EventArgs instance is used.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/EventManager.php at line 75</div>
+<h3 id="getListeners()">getListeners</h3>
+<code class="signature">public  array <strong>getListeners</strong>(string event)</code>
+<div class="details">
+<p>Gets the listeners of a specific event or all listeners.</p><dl>
+<dt>Parameters:</dt>
+<dd>event - The name of the event.</dd>
+<dt>Returns:</dt>
+<dd>The event listeners for the specified event, or all event listeners.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/EventManager.php at line 86</div>
+<h3 id="hasListeners()">hasListeners</h3>
+<code class="signature">public  boolean <strong>hasListeners</strong>(string event)</code>
+<div class="details">
+<p>Checks whether an event has any registered listeners.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the specified event has any listeners, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/EventManager.php at line 115</div>
+<h3 id="removeEventListener()">removeEventListener</h3>
+<code class="signature">public  void <strong>removeEventListener</strong>(string|array events, object listener)</code>
+<div class="details">
+<p>Removes an event listener from the specified events.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/eventmanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/eventsubscriber.html b/lib/api/doctrine/common/eventsubscriber.html
new file mode 100644
index 000000000..f7c767f1a
--- /dev/null
+++ b/lib/api/doctrine/common/eventsubscriber.html
@@ -0,0 +1,112 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>EventSubscriber (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/eventsubscriber.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\EventSubscriber</div>
+<div class="location">/Doctrine/Common/EventSubscriber.php at line 37</div>
+
+<h1>Interface EventSubscriber</h1>
+
+<pre class="tree"><strong>EventSubscriber</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>EventSubscriber</strong></p>
+
+<div class="comment" id="overview_description"><p>An EventSubscriber knows himself what events he is interested in.
+If an EventSubscriber is added to an EventManager, the manager invokes
+<code><a href="../../doctrine/common/eventsubscriber.html#getSubscribedEvents()">getSubscribedEvents</a></code> and registers the subscriber as a listener for all
+returned events.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getSubscribedEvents()">getSubscribedEvents</a>()</p><p class="description">Returns an array of events this subscriber wants to listen to.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/EventSubscriber.php at line 44</div>
+<h3 id="getSubscribedEvents()">getSubscribedEvents</h3>
+<code class="signature">public  array <strong>getSubscribedEvents</strong>()</code>
+<div class="details">
+<p>Returns an array of events this subscriber wants to listen to.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/eventsubscriber.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/lexer.html b/lib/api/doctrine/common/lexer.html
new file mode 100644
index 000000000..1328d3f29
--- /dev/null
+++ b/lib/api/doctrine/common/lexer.html
@@ -0,0 +1,313 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Lexer (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/lexer.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Lexer</div>
+<div class="location">/Doctrine/Common/Lexer.php at line 35</div>
+
+<h1>Class Lexer</h1>
+
+<pre class="tree"><strong>Lexer</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>Lexer</strong></p>
+
+<div class="comment" id="overview_description"><p>Simple generic lexical scanner.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> array The next token in the query string.</td>
+<td class="description"><p class="name"><a href="#lookahead">$lookahead</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array The last matched/seen token.</td>
+<td class="description"><p class="name"><a href="#token">$token</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected abstract  array</td>
+<td class="description"><p class="name"><a href="#getCatchablePatterns()">getCatchablePatterns</a>()</p><p class="description">Lexical catchable patterns</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getLiteral()">getLiteral</a>(integer token)</p><p class="description">Gets the literal for a given token.</p></td>
+</tr>
+<tr>
+<td class="type">protected abstract  array</td>
+<td class="description"><p class="name"><a href="#getNonCatchablePatterns()">getNonCatchablePatterns</a>()</p><p class="description">Lexical non-catchable patterns</p></td>
+</tr>
+<tr>
+<td class="type"> array|null</td>
+<td class="description"><p class="name"><a href="#glimpse()">glimpse</a>()</p><p class="description">Peeks at the next token, returns it and immediately resets the peek.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isA()">isA</a>(mixed value, integer token)</p><p class="description">Checks if given value is identical to the given token</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isNextToken()">isNextToken</a>(integer|string token)</p><p class="description">Checks whether a given token matches the current lookahead.</p></td>
+</tr>
+<tr>
+<td class="type"> array|null</td>
+<td class="description"><p class="name"><a href="#moveNext()">moveNext</a>()</p><p class="description">Moves to the next token in the input string.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#peek()">peek</a>()</p><p class="description">Moves the lookahead token forward.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#reset()">reset</a>()</p><p class="description">Resets the scanner</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#resetPeek()">resetPeek</a>()</p><p class="description">Resets the peek pointer to 0</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#resetPosition()">resetPosition</a>(integer position)</p><p class="description">Resets the lexer position on the input to the given position</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setInput()">setInput</a>(string input)</p><p class="description">Inputs data to be tokenized</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#skipUntil()">skipUntil</a>(mixed type, $type The)</p><p class="description">Tells the lexer to skip input tokens until it sees a token with the given value.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/Common/Lexer.php at line 55</div>
+<h3 id="lookahead">lookahead</h3>
+<code class="signature">public  array The next token in the query string. <strong>$lookahead</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 60</div>
+<h3 id="token">token</h3>
+<code class="signature">public  array The last matched/seen token. <strong>$token</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Lexer.php at line 242</div>
+<h3 id="getCatchablePatterns()">getCatchablePatterns</h3>
+<code class="signature">protected abstract  array <strong>getCatchablePatterns</strong>()</code>
+<div class="details">
+<p>Lexical catchable patterns</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 222</div>
+<h3 id="getLiteral()">getLiteral</h3>
+<code class="signature">public  string <strong>getLiteral</strong>(integer token)</code>
+<div class="details">
+<p>Gets the literal for a given token.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 249</div>
+<h3 id="getNonCatchablePatterns()">getNonCatchablePatterns</h3>
+<code class="signature">protected abstract  array <strong>getNonCatchablePatterns</strong>()</code>
+<div class="details">
+<p>Lexical non-catchable patterns</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 180</div>
+<h3 id="glimpse()">glimpse</h3>
+<code class="signature">public  array|null <strong>glimpse</strong>()</code>
+<div class="details">
+<p>Peeks at the next token, returns it and immediately resets the peek.</p><dl>
+<dt>Returns:</dt>
+<dd>The next token or NULL if there are no more tokens ahead.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 156</div>
+<h3 id="isA()">isA</h3>
+<code class="signature">public  boolean <strong>isA</strong>(mixed value, integer token)</code>
+<div class="details">
+<p>Checks if given value is identical to the given token</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 111</div>
+<h3 id="isNextToken()">isNextToken</h3>
+<code class="signature">public  boolean <strong>isNextToken</strong>(integer|string token)</code>
+<div class="details">
+<p>Checks whether a given token matches the current lookahead.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 127</div>
+<h3 id="moveNext()">moveNext</h3>
+<code class="signature">public  array|null <strong>moveNext</strong>()</code>
+<div class="details">
+<p>Moves to the next token in the input string.</p><p>A token is an associative array containing three items:
+- 'value'    : the string value of the token in the input string
+- 'type'     : the type of the token (identifier, numeric, string, input
+parameter, none)
+- 'position' : the position of the token in the input string</p><dl>
+<dt>Returns:</dt>
+<dd>the next token; null if there is no more tokens left</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 166</div>
+<h3 id="peek()">peek</h3>
+<code class="signature">public  array <strong>peek</strong>()</code>
+<div class="details">
+<p>Moves the lookahead token forward.</p><dl>
+<dt>Returns:</dt>
+<dd>| null The next token or NULL if there are no more tokens ahead.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 78</div>
+<h3 id="reset()">reset</h3>
+<code class="signature">public  void <strong>reset</strong>()</code>
+<div class="details">
+<p>Resets the scanner</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 90</div>
+<h3 id="resetPeek()">resetPeek</h3>
+<code class="signature">public  void <strong>resetPeek</strong>()</code>
+<div class="details">
+<p>Resets the peek pointer to 0</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 100</div>
+<h3 id="resetPosition()">resetPosition</h3>
+<code class="signature">public  void <strong>resetPosition</strong>(integer position)</code>
+<div class="details">
+<p>Resets the lexer position on the input to the given position</p><dl>
+<dt>Parameters:</dt>
+<dd>position - Position to place the lexical scanner</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 67</div>
+<h3 id="setInput()">setInput</h3>
+<code class="signature">public  void <strong>setInput</strong>(string input)</code>
+<div class="details">
+<p>Inputs data to be tokenized</p><dl>
+<dt>Parameters:</dt>
+<dd>input - input to be tokenized</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Lexer.php at line 142</div>
+<h3 id="skipUntil()">skipUntil</h3>
+<code class="signature">public  void <strong>skipUntil</strong>(mixed type, $type The)</code>
+<div class="details">
+<p>Tells the lexer to skip input tokens until it sees a token with the given value.</p><dl>
+<dt>Parameters:</dt>
+<dd>The - token type to skip until.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/lexer.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/notifypropertychanged.html b/lib/api/doctrine/common/notifypropertychanged.html
new file mode 100644
index 000000000..2bfca5e5c
--- /dev/null
+++ b/lib/api/doctrine/common/notifypropertychanged.html
@@ -0,0 +1,112 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>NotifyPropertyChanged (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/notifypropertychanged.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\NotifyPropertyChanged</div>
+<div class="location">/Doctrine/Common/NotifyPropertyChanged.php at line 36</div>
+
+<h1>Interface NotifyPropertyChanged</h1>
+
+<pre class="tree"><strong>NotifyPropertyChanged</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>NotifyPropertyChanged</strong></p>
+
+<div class="comment" id="overview_description"><p>Contract for classes that provide the service of notifying listeners of
+changes to their properties.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addPropertyChangedListener()">addPropertyChangedListener</a>(<a href="../../doctrine/common/propertychangedlistener.html">PropertyChangedListener</a> listener)</p><p class="description">Adds a listener that wants to be notified about property changes.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/NotifyPropertyChanged.php at line 43</div>
+<h3 id="addPropertyChangedListener()">addPropertyChangedListener</h3>
+<code class="signature">public  void <strong>addPropertyChangedListener</strong>(<a href="../../doctrine/common/propertychangedlistener.html">PropertyChangedListener</a> listener)</code>
+<div class="details">
+<p>Adds a listener that wants to be notified about property changes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/notifypropertychanged.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/package-frame.html b/lib/api/doctrine/common/package-frame.html
new file mode 100644
index 000000000..ef79b7961
--- /dev/null
+++ b/lib/api/doctrine/common/package-frame.html
@@ -0,0 +1,42 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Doctrine\Common (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\Common</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../doctrine/common/classloader.html" target="main">ClassLoader</a></li>
+<li><a href="../../doctrine/common/eventargs.html" target="main">EventArgs</a></li>
+<li><a href="../../doctrine/common/eventmanager.html" target="main">EventManager</a></li>
+<li><a href="../../doctrine/common/lexer.html" target="main">Lexer</a></li>
+<li><a href="../../doctrine/common/version.html" target="main">Version</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../doctrine/common/eventsubscriber.html" target="main">EventSubscriber</a></li>
+<li><a href="../../doctrine/common/notifypropertychanged.html" target="main">NotifyPropertyChanged</a></li>
+<li><a href="../../doctrine/common/propertychangedlistener.html" target="main">PropertyChangedListener</a></li>
+</ul>
+
+<h2>Exceptions</h2>
+<ul>
+<li><a href="../../doctrine/common/commonexception.html" target="main">CommonException</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/package-functions.html b/lib/api/doctrine/common/package-functions.html
new file mode 100644
index 000000000..98e2f49b4
--- /dev/null
+++ b/lib/api/doctrine/common/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/package-globals.html b/lib/api/doctrine/common/package-globals.html
new file mode 100644
index 000000000..1724f2224
--- /dev/null
+++ b/lib/api/doctrine/common/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/package-summary.html b/lib/api/doctrine/common/package-summary.html
new file mode 100644
index 000000000..cffd09628
--- /dev/null
+++ b/lib/api/doctrine/common/package-summary.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Doctrine\Common (Doctrine)</title>
+
+</head>
+<body id="package" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\Common</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../doctrine/common/classloader.html">ClassLoader</a></td><td class="description">A ClassLoader is an autoloader for class files that can be
+installed on the SPL autoload stack. </td></tr>
+<tr><td class="name"><a href="../../doctrine/common/eventargs.html">EventArgs</a></td><td class="description">EventArgs is the base class for classes containing event data.
+</td></tr>
+<tr><td class="name"><a href="../../doctrine/common/eventmanager.html">EventManager</a></td><td class="description">The EventManager is the central point of Doctrine's event listener system.
+</td></tr>
+<tr><td class="name"><a href="../../doctrine/common/lexer.html">Lexer</a></td><td class="description">Simple generic lexical scanner.</td></tr>
+<tr><td class="name"><a href="../../doctrine/common/version.html">Version</a></td><td class="description">Class to store and retrieve the version of Doctrine</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../doctrine/common/eventsubscriber.html">EventSubscriber</a></td><td class="description">An EventSubscriber knows himself what events he is interested in.
+</td></tr>
+<tr><td class="name"><a href="../../doctrine/common/notifypropertychanged.html">NotifyPropertyChanged</a></td><td class="description">Contract for classes that provide the service of notifying listeners of
+changes to their properties.</td></tr>
+<tr><td class="name"><a href="../../doctrine/common/propertychangedlistener.html">PropertyChangedListener</a></td><td class="description">Contract for classes that are potential listeners of a NotifyPropertyChanged
+implementor.</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Exception Summary</th></tr>
+<tr><td class="name"><a href="../../doctrine/common/commonexception.html">CommonException</a></td><td class="description">Base exception class for package Doctrine\Common</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/package-tree.html b/lib/api/doctrine/common/package-tree.html
new file mode 100644
index 000000000..50724c0ce
--- /dev/null
+++ b/lib/api/doctrine/common/package-tree.html
@@ -0,0 +1,60 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Doctrine\Common (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\Common</h1><ul>
+<li><a href="../../doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></li>
+<li><a href="../../doctrine/common/eventargs.html">Doctrine\Common\EventArgs</a></li>
+<li><a href="../../doctrine/common/eventmanager.html">Doctrine\Common\EventManager</a></li>
+<li><a href="../../doctrine/common/lexer.html">Doctrine\Common\Lexer</a></li>
+<li><a href="../../doctrine/common/version.html">Doctrine\Common\Version</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/propertychangedlistener.html b/lib/api/doctrine/common/propertychangedlistener.html
new file mode 100644
index 000000000..ed777d0e6
--- /dev/null
+++ b/lib/api/doctrine/common/propertychangedlistener.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>PropertyChangedListener (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/propertychangedlistener.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\PropertyChangedListener</div>
+<div class="location">/Doctrine/Common/PropertyChangedListener.php at line 36</div>
+
+<h1>Interface PropertyChangedListener</h1>
+
+<pre class="tree"><strong>PropertyChangedListener</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>PropertyChangedListener</strong></p>
+
+<div class="comment" id="overview_description"><p>Contract for classes that are potential listeners of a <tt>NotifyPropertyChanged</tt>
+implementor.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#propertyChanged()">propertyChanged</a>(object sender, string propertyName, mixed oldValue, mixed newValue)</p><p class="description">Notifies the listener of a property change.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/PropertyChangedListener.php at line 46</div>
+<h3 id="propertyChanged()">propertyChanged</h3>
+<code class="signature">public  void <strong>propertyChanged</strong>(object sender, string propertyName, mixed oldValue, mixed newValue)</code>
+<div class="details">
+<p>Notifies the listener of a property change.</p><dl>
+<dt>Parameters:</dt>
+<dd>sender - The object on which the property changed.</dd>
+<dd>propertyName - The name of the property that changed.</dd>
+<dd>oldValue - The old value of the property that changed.</dd>
+<dd>newValue - The new value of the property that changed.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/propertychangedlistener.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/util/debug.html b/lib/api/doctrine/common/util/debug.html
new file mode 100644
index 000000000..91b3ec18a
--- /dev/null
+++ b/lib/api/doctrine/common/util/debug.html
@@ -0,0 +1,147 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Debug (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/util/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/util/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/debug.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Util\Debug</div>
+<div class="location">/Doctrine/Common/Util/Debug.php at line 36</div>
+
+<h1>Class Debug</h1>
+
+<pre class="tree"><strong>Debug</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>Debug</strong></p>
+
+<div class="comment" id="overview_description"><p>Static class containing most used debug methods.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Giorgio Sironi <piccoloprincipeazzurro@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Debug()">Debug</a>()</p><p class="description">Private constructor (prevents from instantiation)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#dump()">dump</a>(mixed var, integer maxDepth)</p><p class="description">Prints a dump of the public, protected and private properties of $var.</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#export()">export</a>(mixed var, mixed maxDepth)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/Common/Util/Debug.php at line 42</div>
+<h3 id="Debug()">Debug</h3>
+<code class="signature">public <strong>Debug</strong>()</code>
+<div class="details">
+<p>Private constructor (prevents from instantiation)</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Util/Debug.php at line 52</div>
+<h3 id="dump()">dump</h3>
+<code class="signature">public static  void <strong>dump</strong>(mixed var, integer maxDepth)</code>
+<div class="details">
+<p>Prints a dump of the public, protected and private properties of $var.</p><dl>
+<dt>See Also:</dt>
+<dd><code><a href="http://xdebug.org/">http://xdebug.org/</a></code></dd>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>maxDepth - Maximum nesting level for object properties</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Util/Debug.php at line 72</div>
+<h3 id="export()">export</h3>
+<code class="signature">public static  void <strong>export</strong>(mixed var, mixed maxDepth)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/util/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/util/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/debug.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/util/inflector.html b/lib/api/doctrine/common/util/inflector.html
new file mode 100644
index 000000000..a97156dfc
--- /dev/null
+++ b/lib/api/doctrine/common/util/inflector.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Inflector (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/util/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/util/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/inflector.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Util\Inflector</div>
+<div class="location">/Doctrine/Common/Util/Inflector.php at line 38</div>
+
+<h1>Class Inflector</h1>
+
+<pre class="tree"><strong>Inflector</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Inflector</strong></p>
+
+<div class="comment" id="overview_description"><p>Doctrine inflector has static methods for inflecting text</p><p>The methods in these classes are from several different sources collected
+across several different php projects and several different authors. The 
+original author names and emails are not known</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3189 $</dd>
+<dt>Author:</dt>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  string</td>
+<td class="description"><p class="name"><a href="#camelize()">camelize</a>(string word)</p><p class="description">Camelize a word. </p></td>
+</tr>
+<tr>
+<td class="type">static  string</td>
+<td class="description"><p class="name"><a href="#classify()">classify</a>(string word)</p><p class="description">Convert a word in to the format for a Doctrine class name. </p></td>
+</tr>
+<tr>
+<td class="type">static  string</td>
+<td class="description"><p class="name"><a href="#tableize()">tableize</a>(string word)</p><p class="description">Convert word in to the format for a Doctrine table name. </p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Util/Inflector.php at line 68</div>
+<h3 id="camelize()">camelize</h3>
+<code class="signature">public static  string <strong>camelize</strong>(string word)</code>
+<div class="details">
+<p>Camelize a word. This uses the classify() method and turns the first character to lowercase</p><dl>
+<dt>Returns:</dt>
+<dd>$word</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Util/Inflector.php at line 57</div>
+<h3 id="classify()">classify</h3>
+<code class="signature">public static  string <strong>classify</strong>(string word)</code>
+<div class="details">
+<p>Convert a word in to the format for a Doctrine class name. Converts 'table_name' to 'TableName'</p><dl>
+<dt>Parameters:</dt>
+<dd>word - Word to classify</dd>
+<dt>Returns:</dt>
+<dd>$word Classified word</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/Common/Util/Inflector.php at line 46</div>
+<h3 id="tableize()">tableize</h3>
+<code class="signature">public static  string <strong>tableize</strong>(string word)</code>
+<div class="details">
+<p>Convert word in to the format for a Doctrine table name. Converts 'ModelName' to 'model_name'</p><dl>
+<dt>Parameters:</dt>
+<dd>word - Word to tableize</dd>
+<dt>Returns:</dt>
+<dd>$word Tableized word</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/util/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/common/util/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/inflector.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/util/package-frame.html b/lib/api/doctrine/common/util/package-frame.html
new file mode 100644
index 000000000..a11fa2db9
--- /dev/null
+++ b/lib/api/doctrine/common/util/package-frame.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Util (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\Common\Util</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/common/util/debug.html" target="main">Debug</a></li>
+<li><a href="../../../doctrine/common/util/inflector.html" target="main">Inflector</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/util/package-functions.html b/lib/api/doctrine/common/util/package-functions.html
new file mode 100644
index 000000000..ccd6c2f13
--- /dev/null
+++ b/lib/api/doctrine/common/util/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/util/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/util/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/util/package-globals.html b/lib/api/doctrine/common/util/package-globals.html
new file mode 100644
index 000000000..86b6167f3
--- /dev/null
+++ b/lib/api/doctrine/common/util/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/util/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/util/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/util/package-summary.html b/lib/api/doctrine/common/util/package-summary.html
new file mode 100644
index 000000000..1f9e95fbf
--- /dev/null
+++ b/lib/api/doctrine/common/util/package-summary.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Util (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/common/util/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\Common\Util</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/common/util/debug.html">Debug</a></td><td class="description">Static class containing most used debug methods.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/common/util/inflector.html">Inflector</a></td><td class="description">Doctrine inflector has static methods for inflecting textThe methods in these classes are from several different sources collected
+across several different php projects and several different authors. </td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/common/util/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/util/package-tree.html b/lib/api/doctrine/common/util/package-tree.html
new file mode 100644
index 000000000..49adc51dc
--- /dev/null
+++ b/lib/api/doctrine/common/util/package-tree.html
@@ -0,0 +1,57 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\Common\Util (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/util/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\Common\Util</h1><ul>
+<li><a href="../../../doctrine/common/util/debug.html">Doctrine\Common\Util\Debug</a></li>
+<li><a href="../../../doctrine/common/util/inflector.html">Doctrine\Common\Util\Inflector</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/common/util/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/common/util/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/common/version.html b/lib/api/doctrine/common/version.html
new file mode 100644
index 000000000..e745e1715
--- /dev/null
+++ b/lib/api/doctrine/common/version.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Version (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/version.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\Common\Version</div>
+<div class="location">/Doctrine/Common/Version.php at line 36</div>
+
+<h1>Class Version</h1>
+
+<pre class="tree"><strong>Version</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Version</strong></p>
+
+<div class="comment" id="overview_description"><p>Class to store and retrieve the version of Doctrine</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#VERSION">VERSION</a></p><p class="description">Current Doctrine Version</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  int</td>
+<td class="description"><p class="name"><a href="#compare()">compare</a>(string version)</p><p class="description">Compares a Doctrine version with the current one.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/Common/Version.php at line 41</div>
+<h3 id="VERSION">VERSION</h3>
+<code class="signature">public final  str <strong>VERSION</strong> = '2.0-DEV'</code>
+<div class="details">
+<p>Current Doctrine Version</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/Common/Version.php at line 50</div>
+<h3 id="compare()">compare</h3>
+<code class="signature">public static  int <strong>compare</strong>(string version)</code>
+<div class="details">
+<p>Compares a Doctrine version with the current one.</p><dl>
+<dt>Parameters:</dt>
+<dd>version - Doctrine version to compare.</dd>
+<dt>Returns:</dt>
+<dd>Returns -1 if older, 0 if it is the same, 1 if version passed as argument is newer.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/common/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/common/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/common/version.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/configuration.html b/lib/api/doctrine/dbal/configuration.html
new file mode 100644
index 000000000..19045128a
--- /dev/null
+++ b/lib/api/doctrine/dbal/configuration.html
@@ -0,0 +1,160 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Configuration (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/configuration.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Configuration</div>
+<div class="location">/Doctrine/DBAL/Configuration.php at line 39</div>
+
+<h1>Class Configuration</h1>
+
+<pre class="tree"><strong>Configuration</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Configuration</strong></p>
+
+<div class="comment" id="overview_description"><p>Configuration container for the Doctrine DBAL.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Internal:</dt>
+<dd>When adding a new configuration option just write a getter/setter pair and add the option to the _attributes array with a proper default value.</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_attributes">$_attributes</a></p><p class="description">The attributes that are contained in the configuration.
+</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Configuration()">Configuration</a>()</p><p class="description">Creates a new DBAL configuration instance.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../doctrine/dbal/logging/sqllogger.html">SQLLogger</a></td>
+<td class="description"><p class="name"><a href="#getSQLLogger()">getSQLLogger</a>()</p><p class="description">Gets the SQL logger that is used.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setSQLLogger()">setSQLLogger</a>(<a href="../../doctrine/dbal/logging/sqllogger.html">SQLLogger</a> logger)</p><p class="description">Sets the SQL logger to use. </p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Configuration.php at line 47</div>
+<h3 id="_attributes">_attributes</h3>
+<code class="signature">protected  array <strong>$_attributes</strong> = array()</code>
+<div class="details">
+<p>The attributes that are contained in the configuration.
+Values are default values.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Configuration.php at line 52</div>
+<h3 id="Configuration()">Configuration</h3>
+<code class="signature">public <strong>Configuration</strong>()</code>
+<div class="details">
+<p>Creates a new DBAL configuration instance.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Configuration.php at line 74</div>
+<h3 id="getSQLLogger()">getSQLLogger</h3>
+<code class="signature">public  <a href="../../doctrine/dbal/logging/sqllogger.html">SQLLogger</a> <strong>getSQLLogger</strong>()</code>
+<div class="details">
+<p>Gets the SQL logger that is used.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Configuration.php at line 64</div>
+<h3 id="setSQLLogger()">setSQLLogger</h3>
+<code class="signature">public  void <strong>setSQLLogger</strong>(<a href="../../doctrine/dbal/logging/sqllogger.html">SQLLogger</a> logger)</code>
+<div class="details">
+<p>Sets the SQL logger to use. Defaults to NULL which means SQL logging is disabled.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/configuration.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/connection.html b/lib/api/doctrine/dbal/connection.html
new file mode 100644
index 000000000..691f75834
--- /dev/null
+++ b/lib/api/doctrine/dbal/connection.html
@@ -0,0 +1,996 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Connection (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/connection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Connection</div>
+<div class="location">/Doctrine/DBAL/Connection.php at line 45</div>
+
+<h1>Class Connection</h1>
+
+<pre class="tree"><strong>Connection</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Connection</strong></p>
+
+<div class="comment" id="overview_description"><p>A wrapper around a Doctrine\DBAL\Driver\Connection that adds features like
+events, transaction isolation levels, configuration, emulated transaction nesting,
+lazy connecting and more.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Lukas Smith <smith@pooteeweet.org> (MDB2 library)</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TRANSACTION_READ_COMMITTED">TRANSACTION_READ_COMMITTED</a></p><p class="description">Constant for transaction isolation level READ COMMITTED.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TRANSACTION_READ_UNCOMMITTED">TRANSACTION_READ_UNCOMMITTED</a></p><p class="description">Constant for transaction isolation level READ UNCOMMITTED.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TRANSACTION_REPEATABLE_READ">TRANSACTION_REPEATABLE_READ</a></p><p class="description">Constant for transaction isolation level REPEATABLE READ.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TRANSACTION_SERIALIZABLE">TRANSACTION_SERIALIZABLE</a></p><p class="description">Constant for transaction isolation level SERIALIZABLE.</p></td>
+</tr>
+<tr>
+<td class="type">protected  Doctrine\DBAL\Configuration</td>
+<td class="description"><p class="name"><a href="#_config">$_config</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  Doctrine\DBAL\Driver\Connection</td>
+<td class="description"><p class="name"><a href="#_conn">$_conn</a></p><p class="description">The wrapped driver connection.</p></td>
+</tr>
+<tr>
+<td class="type">protected  Doctrine\DBAL\Driver</td>
+<td class="description"><p class="name"><a href="#_driver">$_driver</a></p><p class="description">The used DBAL driver.</p></td>
+</tr>
+<tr>
+<td class="type">protected  Doctrine\Common\EventManager</td>
+<td class="description"><p class="name"><a href="#_eventManager">$_eventManager</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  Doctrine\DBAL\Platforms\AbstractPlatform</td>
+<td class="description"><p class="name"><a href="#_platform">$_platform</a></p><p class="description">The DatabasePlatform object that provides information about the
+database platform used by the connection.</p></td>
+</tr>
+<tr>
+<td class="type">protected  Doctrine\DBAL\Schema\SchemaManager</td>
+<td class="description"><p class="name"><a href="#_schemaManager">$_schemaManager</a></p><p class="description">The schema manager.</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Connection()">Connection</a>(array params, <a href="../../doctrine/dbal/driver.html">Driver</a> driver, <a href="../../doctrine/dbal/configuration.html">Configuration</a> config, <a href="../../doctrine/common/eventmanager.html">EventManager</a> eventManager)</p><p class="description">Initializes a new instance of the Connection class.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#beginTransaction()">beginTransaction</a>()</p><p class="description">Starts a transaction by suspending auto-commit mode.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#close()">close</a>()</p><p class="description">Closes the connection.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#commit()">commit</a>()</p><p class="description">Commits the current transaction.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#connect()">connect</a>()</p><p class="description">Establishes the connection with the database.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToDatabaseValue()">convertToDatabaseValue</a>(mixed value, string type)</p><p class="description">Converts a given value to its database representation according to the conversion
+rules of a specific DBAL mapping type.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, string type)</p><p class="description">Converts a given value to its PHP representation according to the conversion
+rules of a specific DBAL mapping type.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#delete()">delete</a>(mixed tableName, array identifier, string table)</p><p class="description">Executes an SQL DELETE statement on a table.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#errorCode()">errorCode</a>()</p><p class="description">Fetch the SQLSTATE associated with the last database operation.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#errorInfo()">errorInfo</a>()</p><p class="description">Fetch extended error information associated with the last database operation.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#exec()">exec</a>(string statement)</p><p class="description">Execute an SQL statement and return the number of affected rows.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Statement</td>
+<td class="description"><p class="name"><a href="#executeQuery()">executeQuery</a>(string query, array params)</p><p class="description">Executes an, optionally parameterized, SQL query.
+</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#executeUpdate()">executeUpdate</a>(string query, array params, array types)</p><p class="description">Executes an SQL INSERT/UPDATE/DELETE query with the given parameters
+and returns the number of affected rows.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#fetchAll()">fetchAll</a>(string sql, array params)</p><p class="description">Prepares and executes an SQL query and returns the result as an associative array.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#fetchArray()">fetchArray</a>(string statement, array params)</p><p class="description">Prepares and executes an SQL query and returns the first row of the result
+as a numerically indexed array.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fetchColumn()">fetchColumn</a>(string statement, array params, int colnum)</p><p class="description">Prepares and executes an SQL query and returns the value of a single column
+of the first row of the result.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#fetchRow()">fetchRow</a>(string statement, array params)</p><p class="description">Prepares and executes an SQL query and returns the first row of the result
+as an associative array.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Configuration</td>
+<td class="description"><p class="name"><a href="#getConfiguration()">getConfiguration</a>()</p><p class="description">Gets the Configuration used by the Connection.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDatabase()">getDatabase</a>()</p><p class="description">Gets the name of the database this Connection is connected to.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Platforms\AbstractPlatform</td>
+<td class="description"><p class="name"><a href="#getDatabasePlatform()">getDatabasePlatform</a>()</p><p class="description">Gets the DatabasePlatform for the connection.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver</td>
+<td class="description"><p class="name"><a href="#getDriver()">getDriver</a>()</p><p class="description">Gets the DBAL driver instance.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\Common\EventManager</td>
+<td class="description"><p class="name"><a href="#getEventManager()">getEventManager</a>()</p><p class="description">Gets the EventManager used by the Connection.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getHost()">getHost</a>()</p><p class="description">Gets the hostname of the currently connected database.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getParams()">getParams</a>()</p><p class="description">Gets the parameters used during instantiation.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getPassword()">getPassword</a>()</p><p class="description">Gets the password used by this connection.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getPort()">getPort</a>()</p><p class="description">Gets the port of the currently connected database.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#getRollbackOnly()">getRollbackOnly</a>()</p><p class="description">Check whether the current transaction is marked for rollback only.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Schema\SchemaManager</td>
+<td class="description"><p class="name"><a href="#getSchemaManager()">getSchemaManager</a>()</p><p class="description">Gets the SchemaManager that can be used to inspect or change the
+database schema through the connection.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getTransactionIsolation()">getTransactionIsolation</a>()</p><p class="description">Gets the currently active transaction isolation level.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getTransactionNestingLevel()">getTransactionNestingLevel</a>()</p><p class="description">Returns the current transaction nesting level.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getUsername()">getUsername</a>()</p><p class="description">Gets the username used by this connection.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Connection</td>
+<td class="description"><p class="name"><a href="#getWrappedConnection()">getWrappedConnection</a>()</p><p class="description">Gets the wrapped driver connection.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#insert()">insert</a>(mixed tableName, array data, string table)</p><p class="description">Inserts a table row with specified data.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isConnected()">isConnected</a>()</p><p class="description">Whether an actual connection to the database is established.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isTransactionActive()">isTransactionActive</a>()</p><p class="description">Checks whether a transaction is currently active.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#lastInsertId()">lastInsertId</a>(string seqName)</p><p class="description">Returns the ID of the last inserted row, or the last value from a sequence object,
+depending on the underlying driver.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Statement</td>
+<td class="description"><p class="name"><a href="#prepare()">prepare</a>(string statement)</p><p class="description">Prepares an SQL statement.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#project()">project</a>(string query, array params, mixed function, Closure mapper)</p><p class="description">Executes an, optionally parameterized, SQL query and returns the result,
+applying a given projection/transformation function on each row of the result.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Statement</td>
+<td class="description"><p class="name"><a href="#query()">query</a>(string statement, integer fetchType)</p><p class="description">Executes an SQL statement, returning a result set as a Statement object.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#quote()">quote</a>(mixed input, string type)</p><p class="description">Quotes a given input parameter.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#quoteIdentifier()">quoteIdentifier</a>(string str)</p><p class="description">Quote a string so it can be safely used as a table or column name, even if
+it is a reserved name.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#rollback()">rollback</a>()</p><p class="description">Cancel any database changes done during the current transaction.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setCharset()">setCharset</a>(string charset)</p><p class="description">Sets the given charset on the current connection.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setRollbackOnly()">setRollbackOnly</a>()</p><p class="description">Marks the current transaction so that the only possible
+outcome for the transaction to be rolled back.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setTransactionIsolation()">setTransactionIsolation</a>(integer level)</p><p class="description">Sets the transaction isolation level.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#update()">update</a>(mixed tableName, mixed data, array identifier, string table)</p><p class="description">Executes an SQL UPDATE statement on a table.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Connection.php at line 55</div>
+<h3 id="TRANSACTION_READ_COMMITTED">TRANSACTION_READ_COMMITTED</h3>
+<code class="signature">public final  int <strong>TRANSACTION_READ_COMMITTED</strong> = 2</code>
+<div class="details">
+<p>Constant for transaction isolation level READ COMMITTED.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 50</div>
+<h3 id="TRANSACTION_READ_UNCOMMITTED">TRANSACTION_READ_UNCOMMITTED</h3>
+<code class="signature">public final  int <strong>TRANSACTION_READ_UNCOMMITTED</strong> = 1</code>
+<div class="details">
+<p>Constant for transaction isolation level READ UNCOMMITTED.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 60</div>
+<h3 id="TRANSACTION_REPEATABLE_READ">TRANSACTION_REPEATABLE_READ</h3>
+<code class="signature">public final  int <strong>TRANSACTION_REPEATABLE_READ</strong> = 3</code>
+<div class="details">
+<p>Constant for transaction isolation level REPEATABLE READ.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 65</div>
+<h3 id="TRANSACTION_SERIALIZABLE">TRANSACTION_SERIALIZABLE</h3>
+<code class="signature">public final  int <strong>TRANSACTION_SERIALIZABLE</strong> = 4</code>
+<div class="details">
+<p>Constant for transaction isolation level SERIALIZABLE.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 77</div>
+<h3 id="_config">_config</h3>
+<code class="signature">protected  Doctrine\DBAL\Configuration <strong>$_config</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 72</div>
+<h3 id="_conn">_conn</h3>
+<code class="signature">protected  Doctrine\DBAL\Driver\Connection <strong>$_conn</strong></code>
+<div class="details">
+<p>The wrapped driver connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 132</div>
+<h3 id="_driver">_driver</h3>
+<code class="signature">protected  Doctrine\DBAL\Driver <strong>$_driver</strong></code>
+<div class="details">
+<p>The used DBAL driver.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 82</div>
+<h3 id="_eventManager">_eventManager</h3>
+<code class="signature">protected  Doctrine\Common\EventManager <strong>$_eventManager</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 118</div>
+<h3 id="_platform">_platform</h3>
+<code class="signature">protected  Doctrine\DBAL\Platforms\AbstractPlatform <strong>$_platform</strong></code>
+<div class="details">
+<p>The DatabasePlatform object that provides information about the
+database platform used by the connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 125</div>
+<h3 id="_schemaManager">_schemaManager</h3>
+<code class="signature">protected  Doctrine\DBAL\Schema\SchemaManager <strong>$_schemaManager</strong></code>
+<div class="details">
+<p>The schema manager.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Connection.php at line 149</div>
+<h3 id="Connection()">Connection</h3>
+<code class="signature">public <strong>Connection</strong>(array params, <a href="../../doctrine/dbal/driver.html">Driver</a> driver, <a href="../../doctrine/dbal/configuration.html">Configuration</a> config, <a href="../../doctrine/common/eventmanager.html">EventManager</a> eventManager)</code>
+<div class="details">
+<p>Initializes a new instance of the Connection class.</p><dl>
+<dt>Parameters:</dt>
+<dd>params - The connection parameters.</dd>
+<dd></dd>
+<dd></dd>
+<dd></dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Connection.php at line 716</div>
+<h3 id="beginTransaction()">beginTransaction</h3>
+<code class="signature">public  void <strong>beginTransaction</strong>()</code>
+<div class="details">
+<p>Starts a transaction by suspending auto-commit mode.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 396</div>
+<h3 id="close()">close</h3>
+<code class="signature">public  void <strong>close</strong>()</code>
+<div class="details">
+<p>Closes the connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 734</div>
+<h3 id="commit()">commit</h3>
+<code class="signature">public  void <strong>commit</strong>()</code>
+<div class="details">
+<p>Commits the current transaction.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../doctrine/dbal/connectionexception.html">If the commit failed due to no active transaction or because the transaction was marked for rollback only.</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 287</div>
+<h3 id="connect()">connect</h3>
+<code class="signature">public  boolean <strong>connect</strong>()</code>
+<div class="details">
+<p>Establishes the connection with the database.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the connection was successfully established, FALSE if the connection is already open.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 841</div>
+<h3 id="convertToDatabaseValue()">convertToDatabaseValue</h3>
+<code class="signature">public  mixed <strong>convertToDatabaseValue</strong>(mixed value, string type)</code>
+<div class="details">
+<p>Converts a given value to its database representation according to the conversion
+rules of a specific DBAL mapping type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>type - The name of the DBAL mapping type.</dd>
+<dt>Returns:</dt>
+<dd>The converted value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 854</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, string type)</code>
+<div class="details">
+<p>Converts a given value to its PHP representation according to the conversion
+rules of a specific DBAL mapping type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>type - The name of the DBAL mapping type.</dd>
+<dt>Returns:</dt>
+<dd>The converted type.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 376</div>
+<h3 id="delete()">delete</h3>
+<code class="signature">public  integer <strong>delete</strong>(mixed tableName, array identifier, string table)</code>
+<div class="details">
+<p>Executes an SQL DELETE statement on a table.</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of the table on which to delete.</dd>
+<dd>identifier - The deletion criteria. An associateve array containing column-value pairs.</dd>
+<dt>Returns:</dt>
+<dd>The number of affected rows.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 677</div>
+<h3 id="errorCode()">errorCode</h3>
+<code class="signature">public  integer <strong>errorCode</strong>()</code>
+<div class="details">
+<p>Fetch the SQLSTATE associated with the last database operation.</p><dl>
+<dt>Returns:</dt>
+<dd>The last error code.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 688</div>
+<h3 id="errorInfo()">errorInfo</h3>
+<code class="signature">public  array <strong>errorInfo</strong>()</code>
+<div class="details">
+<p>Fetch extended error information associated with the last database operation.</p><dl>
+<dt>Returns:</dt>
+<dd>The last error information.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 656</div>
+<h3 id="exec()">exec</h3>
+<code class="signature">public  integer <strong>exec</strong>(string statement)</code>
+<div class="details">
+<p>Execute an SQL statement and return the number of affected rows.</p><dl>
+<dt>Returns:</dt>
+<dd>The number of affected rows.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 554</div>
+<h3 id="executeQuery()">executeQuery</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Statement <strong>executeQuery</strong>(string query, array params)</code>
+<div class="details">
+<p>Executes an, optionally parameterized, SQL query.</p><p>If the query is parameterized, a prepared statement is used.
+If an SQLLogger is configured, the execution is logged.</p><dl>
+<dt>Parameters:</dt>
+<dd>query - The SQL query to execute.</dd>
+<dd>params - The parameters to bind to the query, if any.</dd>
+<dt>Returns:</dt>
+<dd>The executed statement.</dd>
+<dt>Internal:</dt>
+<dd>PERF: Directly prepares a driver statement, not a wrapper.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 626</div>
+<h3 id="executeUpdate()">executeUpdate</h3>
+<code class="signature">public  integer <strong>executeUpdate</strong>(string query, array params, array types)</code>
+<div class="details">
+<p>Executes an SQL INSERT/UPDATE/DELETE query with the given parameters
+and returns the number of affected rows.</p><p>This method supports PDO binding types as well as DBAL mapping types.</p><dl>
+<dt>Parameters:</dt>
+<dd>query - The SQL query.</dd>
+<dd>params - The query parameters.</dd>
+<dd>types - The parameter types.</dd>
+<dt>Returns:</dt>
+<dd>The number of affected rows.</dd>
+<dt>Internal:</dt>
+<dd>PERF: Directly prepares a driver statement, not a wrapper.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 525</div>
+<h3 id="fetchAll()">fetchAll</h3>
+<code class="signature">public  array <strong>fetchAll</strong>(string sql, array params)</code>
+<div class="details">
+<p>Prepares and executes an SQL query and returns the result as an associative array.</p><dl>
+<dt>Parameters:</dt>
+<dd>sql - The SQL query.</dd>
+<dd>params - The query parameters.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 330</div>
+<h3 id="fetchArray()">fetchArray</h3>
+<code class="signature">public  array <strong>fetchArray</strong>(string statement, array params)</code>
+<div class="details">
+<p>Prepares and executes an SQL query and returns the first row of the result
+as a numerically indexed array.</p><dl>
+<dt>Parameters:</dt>
+<dd>statement - sql query to be executed</dd>
+<dd>params - prepared statement params</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 344</div>
+<h3 id="fetchColumn()">fetchColumn</h3>
+<code class="signature">public  mixed <strong>fetchColumn</strong>(string statement, array params, int colnum)</code>
+<div class="details">
+<p>Prepares and executes an SQL query and returns the value of a single column
+of the first row of the result.</p><dl>
+<dt>Parameters:</dt>
+<dd>statement - sql query to be executed</dd>
+<dd>params - prepared statement params</dd>
+<dd>colnum - 0-indexed column number to retrieve</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 317</div>
+<h3 id="fetchRow()">fetchRow</h3>
+<code class="signature">public  array <strong>fetchRow</strong>(string statement, array params)</code>
+<div class="details">
+<p>Prepares and executes an SQL query and returns the first row of the result
+as an associative array.</p><dl>
+<dt>Parameters:</dt>
+<dd>statement - The SQL query.</dd>
+<dd>params - The query parameters.</dd>
+<dt>Todo:</dt>
+<dd>Rename: fetchAssoc</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 256</div>
+<h3 id="getConfiguration()">getConfiguration</h3>
+<code class="signature">public  Doctrine\DBAL\Configuration <strong>getConfiguration</strong>()</code>
+<div class="details">
+<p>Gets the Configuration used by the Connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 196</div>
+<h3 id="getDatabase()">getDatabase</h3>
+<code class="signature">public  string <strong>getDatabase</strong>()</code>
+<div class="details">
+<p>Gets the name of the database this Connection is connected to.</p><dl>
+<dt>Returns:</dt>
+<dd>$database</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 276</div>
+<h3 id="getDatabasePlatform()">getDatabasePlatform</h3>
+<code class="signature">public  Doctrine\DBAL\Platforms\AbstractPlatform <strong>getDatabasePlatform</strong>()</code>
+<div class="details">
+<p>Gets the DatabasePlatform for the connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 246</div>
+<h3 id="getDriver()">getDriver</h3>
+<code class="signature">public  Doctrine\DBAL\Driver <strong>getDriver</strong>()</code>
+<div class="details">
+<p>Gets the DBAL driver instance.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 266</div>
+<h3 id="getEventManager()">getEventManager</h3>
+<code class="signature">public  Doctrine\Common\EventManager <strong>getEventManager</strong>()</code>
+<div class="details">
+<p>Gets the EventManager used by the Connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 206</div>
+<h3 id="getHost()">getHost</h3>
+<code class="signature">public  string <strong>getHost</strong>()</code>
+<div class="details">
+<p>Gets the hostname of the currently connected database.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 186</div>
+<h3 id="getParams()">getParams</h3>
+<code class="signature">public  array <strong>getParams</strong>()</code>
+<div class="details">
+<p>Gets the parameters used during instantiation.</p><dl>
+<dt>Returns:</dt>
+<dd>$params</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 236</div>
+<h3 id="getPassword()">getPassword</h3>
+<code class="signature">public  string <strong>getPassword</strong>()</code>
+<div class="details">
+<p>Gets the password used by this connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 216</div>
+<h3 id="getPort()">getPort</h3>
+<code class="signature">public  mixed <strong>getPort</strong>()</code>
+<div class="details">
+<p>Gets the port of the currently connected database.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 825</div>
+<h3 id="getRollbackOnly()">getRollbackOnly</h3>
+<code class="signature">public  boolean <strong>getRollbackOnly</strong>()</code>
+<div class="details">
+<p>Check whether the current transaction is marked for rollback only.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../doctrine/dbal/connectionexception.html">If no transaction is active.</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 796</div>
+<h3 id="getSchemaManager()">getSchemaManager</h3>
+<code class="signature">public  Doctrine\DBAL\Schema\SchemaManager <strong>getSchemaManager</strong>()</code>
+<div class="details">
+<p>Gets the SchemaManager that can be used to inspect or change the
+database schema through the connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 420</div>
+<h3 id="getTransactionIsolation()">getTransactionIsolation</h3>
+<code class="signature">public  integer <strong>getTransactionIsolation</strong>()</code>
+<div class="details">
+<p>Gets the currently active transaction isolation level.</p><dl>
+<dt>Returns:</dt>
+<dd>The current transaction isolation level.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 667</div>
+<h3 id="getTransactionNestingLevel()">getTransactionNestingLevel</h3>
+<code class="signature">public  integer <strong>getTransactionNestingLevel</strong>()</code>
+<div class="details">
+<p>Returns the current transaction nesting level.</p><dl>
+<dt>Returns:</dt>
+<dd>The nesting level. A value of 0 means there's no active transaction.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 226</div>
+<h3 id="getUsername()">getUsername</h3>
+<code class="signature">public  string <strong>getUsername</strong>()</code>
+<div class="details">
+<p>Gets the username used by this connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 783</div>
+<h3 id="getWrappedConnection()">getWrappedConnection</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Connection <strong>getWrappedConnection</strong>()</code>
+<div class="details">
+<p>Gets the wrapped driver connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 456</div>
+<h3 id="insert()">insert</h3>
+<code class="signature">public  integer <strong>insert</strong>(mixed tableName, array data, string table)</code>
+<div class="details">
+<p>Inserts a table row with specified data.</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of the table to insert data into.</dd>
+<dd>data - An associative array containing column-value pairs.</dd>
+<dt>Returns:</dt>
+<dd>The number of affected rows.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 354</div>
+<h3 id="isConnected()">isConnected</h3>
+<code class="signature">public  boolean <strong>isConnected</strong>()</code>
+<div class="details">
+<p>Whether an actual connection to the database is established.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 364</div>
+<h3 id="isTransactionActive()">isTransactionActive</h3>
+<code class="signature">public  boolean <strong>isTransactionActive</strong>()</code>
+<div class="details">
+<p>Checks whether a transaction is currently active.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if a transaction is currently active, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 705</div>
+<h3 id="lastInsertId()">lastInsertId</h3>
+<code class="signature">public  string <strong>lastInsertId</strong>(string seqName)</code>
+<div class="details">
+<p>Returns the ID of the last inserted row, or the last value from a sequence object,
+depending on the underlying driver.</p><p>Note: This method may not return a meaningful or consistent result across different drivers,
+because the underlying database may not even support the notion of AUTO_INCREMENT/IDENTITY
+columns or sequences.</p><dl>
+<dt>Parameters:</dt>
+<dd>seqName - Name of the sequence object from which the ID should be returned.</dd>
+<dt>Returns:</dt>
+<dd>A string representation of the last inserted ID.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 536</div>
+<h3 id="prepare()">prepare</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Statement <strong>prepare</strong>(string statement)</code>
+<div class="details">
+<p>Prepares an SQL statement.</p><dl>
+<dt>Parameters:</dt>
+<dd>statement - The SQL statement to prepare.</dd>
+<dt>Returns:</dt>
+<dd>The prepared statement.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 588</div>
+<h3 id="project()">project</h3>
+<code class="signature">public  mixed <strong>project</strong>(string query, array params, mixed function, Closure mapper)</code>
+<div class="details">
+<p>Executes an, optionally parameterized, SQL query and returns the result,
+applying a given projection/transformation function on each row of the result.</p><dl>
+<dt>Parameters:</dt>
+<dd>query - The SQL query to execute.</dd>
+<dd>params - The parameters, if any.</dd>
+<dd>mapper - The transformation function that is applied on each row. The function receives a single paramater, an array, that represents a row of the result set.</dd>
+<dt>Returns:</dt>
+<dd>The projected result of the query.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 609</div>
+<h3 id="query()">query</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Statement <strong>query</strong>(string statement, integer fetchType)</code>
+<div class="details">
+<p>Executes an SQL statement, returning a result set as a Statement object.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 511</div>
+<h3 id="quote()">quote</h3>
+<code class="signature">public  string <strong>quote</strong>(mixed input, string type)</code>
+<div class="details">
+<p>Quotes a given input parameter.</p><dl>
+<dt>Parameters:</dt>
+<dd>input - Parameter to be quoted.</dd>
+<dd>type - Type of the parameter.</dd>
+<dt>Returns:</dt>
+<dd>The quoted parameter.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 499</div>
+<h3 id="quoteIdentifier()">quoteIdentifier</h3>
+<code class="signature">public  string <strong>quoteIdentifier</strong>(string str)</code>
+<div class="details">
+<p>Quote a string so it can be safely used as a table or column name, even if
+it is a reserved name.</p><p>Delimiting style depends on the underlying database platform that is being used.</p><p>NOTE: Just because you CAN use quoted identifiers does not mean
+you SHOULD use them. In general, they end up causing way more
+problems than they solve.</p><dl>
+<dt>Parameters:</dt>
+<dd>str - The name to be quoted.</dd>
+<dt>Returns:</dt>
+<dd>The quoted name.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 760</div>
+<h3 id="rollback()">rollback</h3>
+<code class="signature">public  void <strong>rollback</strong>()</code>
+<div class="details">
+<p>Cancel any database changes done during the current transaction.</p><p>this method can be listened with onPreTransactionRollback and onTransactionRollback
+eventlistener methods</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../doctrine/dbal/connectionexception.html">If the rollback operation failed.</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 481</div>
+<h3 id="setCharset()">setCharset</h3>
+<code class="signature">public  void <strong>setCharset</strong>(string charset)</code>
+<div class="details">
+<p>Sets the given charset on the current connection.</p><dl>
+<dt>Parameters:</dt>
+<dd>charset - The charset to set.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 811</div>
+<h3 id="setRollbackOnly()">setRollbackOnly</h3>
+<code class="signature">public  void <strong>setRollbackOnly</strong>()</code>
+<div class="details">
+<p>Marks the current transaction so that the only possible
+outcome for the transaction to be rolled back.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../doctrine/dbal/connectionexception.html">If no transaction is active.</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 408</div>
+<h3 id="setTransactionIsolation()">setTransactionIsolation</h3>
+<code class="signature">public  void <strong>setTransactionIsolation</strong>(integer level)</code>
+<div class="details">
+<p>Sets the transaction isolation level.</p><dl>
+<dt>Parameters:</dt>
+<dd>level - The level to set.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Connection.php at line 432</div>
+<h3 id="update()">update</h3>
+<code class="signature">public  integer <strong>update</strong>(mixed tableName, mixed data, array identifier, string table)</code>
+<div class="details">
+<p>Executes an SQL UPDATE statement on a table.</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of the table to update.</dd>
+<dd>identifier - The update criteria. An associative array containing column-value pairs.</dd>
+<dt>Returns:</dt>
+<dd>The number of affected rows.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/connection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/connectionexception.html b/lib/api/doctrine/dbal/connectionexception.html
new file mode 100644
index 000000000..e66f282b0
--- /dev/null
+++ b/lib/api/doctrine/dbal/connectionexception.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>ConnectionException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/connectionexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\ConnectionException</div>
+<div class="location">/Doctrine/DBAL/ConnectionException.php at line 33</div>
+
+<h1>Class ConnectionException</h1>
+
+<pre class="tree">Class:ConnectionException - Superclass: DBALException
+Class:DBALException - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<a href="../../doctrine/dbal/dbalexception.html">DBALException</a><br>      &lfloor;&nbsp;<strong>ConnectionException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConnectionException</strong><br>extends <a href="../../doctrine/dbal/dbalexception.html">DBALException</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Doctrine\DBAL\ConnectionException</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 4628 $</dd>
+<dt>Author:</dt>
+<dd>Jonathan H. Wage <jonwage@gmail.com</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#commitFailedRollbackOnly()">commitFailedRollbackOnly</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#noActiveTransaction()">noActiveTransaction</a>()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\DBALException</th></tr>
+<tr><td><a href="../../doctrine/dbal/dbalexception.html#driverRequired()">driverRequired</a>, <a href="../../doctrine/dbal/dbalexception.html#invalidDriverClass()">invalidDriverClass</a>, <a href="../../doctrine/dbal/dbalexception.html#invalidPdoInstance()">invalidPdoInstance</a>, <a href="../../doctrine/dbal/dbalexception.html#invalidPlatformSpecified()">invalidPlatformSpecified</a>, <a href="../../doctrine/dbal/dbalexception.html#invalidTableName()">invalidTableName</a>, <a href="../../doctrine/dbal/dbalexception.html#invalidWrapperClass()">invalidWrapperClass</a>, <a href="../../doctrine/dbal/dbalexception.html#limitOffsetInvalid()">limitOffsetInvalid</a>, <a href="../../doctrine/dbal/dbalexception.html#noColumnsSpecifiedForTable()">noColumnsSpecifiedForTable</a>, <a href="../../doctrine/dbal/dbalexception.html#notSupported()">notSupported</a>, <a href="../../doctrine/dbal/dbalexception.html#typeExists()">typeExists</a>, <a href="../../doctrine/dbal/dbalexception.html#typeNotFound()">typeNotFound</a>, <a href="../../doctrine/dbal/dbalexception.html#unknownColumnType()">unknownColumnType</a>, <a href="../../doctrine/dbal/dbalexception.html#unknownDriver()">unknownDriver</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/ConnectionException.php at line 35</div>
+<h3 id="commitFailedRollbackOnly()">commitFailedRollbackOnly</h3>
+<code class="signature">public static  void <strong>commitFailedRollbackOnly</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/ConnectionException.php at line 40</div>
+<h3 id="noActiveTransaction()">noActiveTransaction</h3>
+<code class="signature">public static  void <strong>noActiveTransaction</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/connectionexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/dbalexception.html b/lib/api/doctrine/dbal/dbalexception.html
new file mode 100644
index 000000000..8ee2ccc1f
--- /dev/null
+++ b/lib/api/doctrine/dbal/dbalexception.html
@@ -0,0 +1,242 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>DBALException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/dbalexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\DBALException</div>
+<div class="location">/Doctrine/DBAL/DBALException.php at line 5</div>
+
+<h1>Class DBALException</h1>
+
+<pre class="tree">Class:DBALException - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<strong>DBALException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>DBALException</strong><br>extends Exception
+
+</p>
+
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#driverRequired()">driverRequired</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidDriverClass()">invalidDriverClass</a>(mixed driverClass)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidPdoInstance()">invalidPdoInstance</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidPlatformSpecified()">invalidPlatformSpecified</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../doctrine/dbal/dbalexception.html">DBALException</a></td>
+<td class="description"><p class="name"><a href="#invalidTableName()">invalidTableName</a>(string tableName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidWrapperClass()">invalidWrapperClass</a>(mixed wrapperClass)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#limitOffsetInvalid()">limitOffsetInvalid</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../doctrine/dbal/dbalexception.html">DBALException</a></td>
+<td class="description"><p class="name"><a href="#noColumnsSpecifiedForTable()">noColumnsSpecifiedForTable</a>(string tableName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#notSupported()">notSupported</a>(mixed method)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#typeExists()">typeExists</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#typeNotFound()">typeNotFound</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#unknownColumnType()">unknownColumnType</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#unknownDriver()">unknownDriver</a>(mixed unknownDriverName, mixed knownDrivers)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/DBALException.php at line 27</div>
+<h3 id="driverRequired()">driverRequired</h3>
+<code class="signature">public static  void <strong>driverRequired</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 45</div>
+<h3 id="invalidDriverClass()">invalidDriverClass</h3>
+<code class="signature">public static  void <strong>invalidDriverClass</strong>(mixed driverClass)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 19</div>
+<h3 id="invalidPdoInstance()">invalidPdoInstance</h3>
+<code class="signature">public static  void <strong>invalidPdoInstance</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 12</div>
+<h3 id="invalidPlatformSpecified()">invalidPlatformSpecified</h3>
+<code class="signature">public static  void <strong>invalidPlatformSpecified</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 55</div>
+<h3 id="invalidTableName()">invalidTableName</h3>
+<code class="signature">public static  <a href="../../doctrine/dbal/dbalexception.html">DBALException</a> <strong>invalidTableName</strong>(string tableName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 39</div>
+<h3 id="invalidWrapperClass()">invalidWrapperClass</h3>
+<code class="signature">public static  void <strong>invalidWrapperClass</strong>(mixed wrapperClass)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 69</div>
+<h3 id="limitOffsetInvalid()">limitOffsetInvalid</h3>
+<code class="signature">public static  void <strong>limitOffsetInvalid</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 64</div>
+<h3 id="noColumnsSpecifiedForTable()">noColumnsSpecifiedForTable</h3>
+<code class="signature">public static  <a href="../../doctrine/dbal/dbalexception.html">DBALException</a> <strong>noColumnsSpecifiedForTable</strong>(string tableName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 7</div>
+<h3 id="notSupported()">notSupported</h3>
+<code class="signature">public static  void <strong>notSupported</strong>(mixed method)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 74</div>
+<h3 id="typeExists()">typeExists</h3>
+<code class="signature">public static  void <strong>typeExists</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 84</div>
+<h3 id="typeNotFound()">typeNotFound</h3>
+<code class="signature">public static  void <strong>typeNotFound</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 79</div>
+<h3 id="unknownColumnType()">unknownColumnType</h3>
+<code class="signature">public static  void <strong>unknownColumnType</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/DBALException.php at line 33</div>
+<h3 id="unknownDriver()">unknownDriver</h3>
+<code class="signature">public static  void <strong>unknownDriver</strong>(mixed unknownDriverName, mixed knownDrivers)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/dbalexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver.html b/lib/api/doctrine/dbal/driver.html
new file mode 100644
index 000000000..51a1ffe4e
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver.html
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Driver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver</div>
+<div class="location">/Doctrine/DBAL/Driver.php at line 11</div>
+
+<h1>Interface Driver</h1>
+
+<pre class="tree"><strong>Driver</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>Driver</strong></p>
+
+<div class="comment" id="overview_description"><p>Driver interface.
+Interface that all DBAL drivers must implement.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Connection</td>
+<td class="description"><p class="name"><a href="#connect()">connect</a>(array params, string username, string password, array driverOptions)</p><p class="description">Attempts to create a connection with the database.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDatabase()">getDatabase</a>(Doctrine\DBAL\Connection conn)</p><p class="description">Get the name of the database connected to for this driver.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Platforms\AbstractPlatform</td>
+<td class="description"><p class="name"><a href="#getDatabasePlatform()">getDatabasePlatform</a>()</p><p class="description">Gets the DatabasePlatform instance that provides all the metadata about
+the platform this driver connects to.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of the driver.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\SchemaManager</td>
+<td class="description"><p class="name"><a href="#getSchemaManager()">getSchemaManager</a>(Doctrine\DBAL\Connection conn)</p><p class="description">Gets the SchemaManager that can be used to inspect and change the underlying
+database schema of the platform this driver connects to.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver.php at line 22</div>
+<h3 id="connect()">connect</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Connection <strong>connect</strong>(array params, string username, string password, array driverOptions)</code>
+<div class="details">
+<p>Attempts to create a connection with the database.</p><dl>
+<dt>Parameters:</dt>
+<dd>params - All connection parameters passed by the user.</dd>
+<dd>username - The username to use when connecting.</dd>
+<dd>password - The password to use when connecting.</dd>
+<dd>driverOptions - The driver options to use when connecting.</dd>
+<dt>Returns:</dt>
+<dd>The database connection.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver.php at line 54</div>
+<h3 id="getDatabase()">getDatabase</h3>
+<code class="signature">public  string <strong>getDatabase</strong>(Doctrine\DBAL\Connection conn)</code>
+<div class="details">
+<p>Get the name of the database connected to for this driver.</p><dl>
+<dt>Returns:</dt>
+<dd>$database</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver.php at line 30</div>
+<h3 id="getDatabasePlatform()">getDatabasePlatform</h3>
+<code class="signature">public  Doctrine\DBAL\Platforms\AbstractPlatform <strong>getDatabasePlatform</strong>()</code>
+<div class="details">
+<p>Gets the DatabasePlatform instance that provides all the metadata about
+the platform this driver connects to.</p><dl>
+<dt>Returns:</dt>
+<dd>The database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver.php at line 46</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of the driver.</p><dl>
+<dt>Returns:</dt>
+<dd>The name of the driver.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver.php at line 39</div>
+<h3 id="getSchemaManager()">getSchemaManager</h3>
+<code class="signature">public  Doctrine\DBAL\SchemaManager <strong>getSchemaManager</strong>(Doctrine\DBAL\Connection conn)</code>
+<div class="details">
+<p>Gets the SchemaManager that can be used to inspect and change the underlying
+database schema of the platform this driver connects to.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/connection.html b/lib/api/doctrine/dbal/driver/connection.html
new file mode 100644
index 000000000..45467003d
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/connection.html
@@ -0,0 +1,210 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Connection (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/connection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\Connection</div>
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 32</div>
+
+<h1>Interface Connection</h1>
+
+<pre class="tree"><strong>Connection</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>Connection</strong></p>
+
+<div class="comment" id="overview_description"><p>Connection interface.
+Driver connections must implement this interface.</p><p>This resembles (a subset of) the PDO interface.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#beginTransaction()">beginTransaction</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#commit()">commit</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#errorCode()">errorCode</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#errorInfo()">errorInfo</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#exec()">exec</a>(mixed statement)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#lastInsertId()">lastInsertId</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#prepare()">prepare</a>(mixed prepareString)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#query()">query</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#quote()">quote</a>(mixed input, mixed type)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#rollBack()">rollBack</a>()</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 39</div>
+<h3 id="beginTransaction()">beginTransaction</h3>
+<code class="signature">public  void <strong>beginTransaction</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 40</div>
+<h3 id="commit()">commit</h3>
+<code class="signature">public  void <strong>commit</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 42</div>
+<h3 id="errorCode()">errorCode</h3>
+<code class="signature">public  void <strong>errorCode</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 43</div>
+<h3 id="errorInfo()">errorInfo</h3>
+<code class="signature">public  void <strong>errorInfo</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 37</div>
+<h3 id="exec()">exec</h3>
+<code class="signature">public  void <strong>exec</strong>(mixed statement)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 38</div>
+<h3 id="lastInsertId()">lastInsertId</h3>
+<code class="signature">public  void <strong>lastInsertId</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 34</div>
+<h3 id="prepare()">prepare</h3>
+<code class="signature">public  void <strong>prepare</strong>(mixed prepareString)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 35</div>
+<h3 id="query()">query</h3>
+<code class="signature">public  void <strong>query</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 36</div>
+<h3 id="quote()">quote</h3>
+<code class="signature">public  void <strong>quote</strong>(mixed input, mixed type)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Connection.php at line 41</div>
+<h3 id="rollBack()">rollBack</h3>
+<code class="signature">public  void <strong>rollBack</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/connection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/oci8/driver.html b/lib/api/doctrine/dbal/driver/oci8/driver.html
new file mode 100644
index 000000000..3ec03ddc1
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/oci8/driver.html
@@ -0,0 +1,156 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Driver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\OCI8\Driver</div>
+<div class="location">/Doctrine/DBAL/Driver/OCI8/Driver.php at line 32</div>
+
+<h1>Class Driver</h1>
+
+<pre class="tree"><strong>Driver</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>Driver</strong></p>
+
+<div class="comment" id="overview_description"><p>A Doctrine DBAL driver for the Oracle OCI8 PHP extensions.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#connect()">connect</a>(mixed params, mixed username, mixed password, mixed driverOptions)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabase()">getDatabase</a>(mixed conn)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabasePlatform()">getDatabasePlatform</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSchemaManager()">getSchemaManager</a>(mixed conn)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/OCI8/Driver.php at line 34</div>
+<h3 id="connect()">connect</h3>
+<code class="signature">public  void <strong>connect</strong>(mixed params, mixed username, mixed password, mixed driverOptions)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/Driver.php at line 88</div>
+<h3 id="getDatabase()">getDatabase</h3>
+<code class="signature">public  void <strong>getDatabase</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/Driver.php at line 73</div>
+<h3 id="getDatabasePlatform()">getDatabasePlatform</h3>
+<code class="signature">public  void <strong>getDatabasePlatform</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/Driver.php at line 83</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  void <strong>getName</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/Driver.php at line 78</div>
+<h3 id="getSchemaManager()">getSchemaManager</h3>
+<code class="signature">public  void <strong>getSchemaManager</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/oci8/oci8connection.html b/lib/api/doctrine/dbal/driver/oci8/oci8connection.html
new file mode 100644
index 000000000..79f6bb945
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/oci8/oci8connection.html
@@ -0,0 +1,230 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>OCI8Connection (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/oci8connection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\OCI8\OCI8Connection</div>
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 29</div>
+
+<h1>Class OCI8Connection</h1>
+
+<pre class="tree"><strong>OCI8Connection</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver Connection </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>OCI8Connection</strong></p>
+
+<div class="comment" id="overview_description"><p>OCI8 implementation of the Connection interface.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#OCI8Connection()">OCI8Connection</a>(mixed username, mixed password, mixed db)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#beginTransaction()">beginTransaction</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#commit()">commit</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#errorCode()">errorCode</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#errorInfo()">errorInfo</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#exec()">exec</a>(mixed statement)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#lastInsertId()">lastInsertId</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#prepare()">prepare</a>(mixed prepareString)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#query()">query</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#quote()">quote</a>(mixed input, mixed type)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#rollBack()">rollBack</a>()</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 33</div>
+<h3 id="OCI8Connection()">OCI8Connection</h3>
+<code class="signature">public <strong>OCI8Connection</strong>(mixed username, mixed password, mixed db)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 73</div>
+<h3 id="beginTransaction()">beginTransaction</h3>
+<code class="signature">public  void <strong>beginTransaction</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 78</div>
+<h3 id="commit()">commit</h3>
+<code class="signature">public  void <strong>commit</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 94</div>
+<h3 id="errorCode()">errorCode</h3>
+<code class="signature">public  void <strong>errorCode</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 103</div>
+<h3 id="errorInfo()">errorInfo</h3>
+<code class="signature">public  void <strong>errorInfo</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 61</div>
+<h3 id="exec()">exec</h3>
+<code class="signature">public  void <strong>exec</strong>(mixed statement)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 68</div>
+<h3 id="lastInsertId()">lastInsertId</h3>
+<code class="signature">public  void <strong>lastInsertId</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 41</div>
+<h3 id="prepare()">prepare</h3>
+<code class="signature">public  void <strong>prepare</strong>(mixed prepareString)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 46</div>
+<h3 id="query()">query</h3>
+<code class="signature">public  void <strong>query</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 56</div>
+<h3 id="quote()">quote</h3>
+<code class="signature">public  void <strong>quote</strong>(mixed input, mixed type)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Connection.php at line 86</div>
+<h3 id="rollBack()">rollBack</h3>
+<code class="signature">public  void <strong>rollBack</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/oci8connection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/oci8/oci8exception.html b/lib/api/doctrine/dbal/driver/oci8/oci8exception.html
new file mode 100644
index 000000000..e994fb17e
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/oci8/oci8exception.html
@@ -0,0 +1,98 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>OCI8Exception (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/oci8exception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\OCI8\OCI8Exception</div>
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Exception.php at line 24</div>
+
+<h1>Class OCI8Exception</h1>
+
+<pre class="tree">Class:OCI8Exception - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<strong>OCI8Exception</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OCI8Exception</strong><br>extends Exception
+
+</p>
+
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#fromErrorInfo()">fromErrorInfo</a>(mixed error)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Exception.php at line 26</div>
+<h3 id="fromErrorInfo()">fromErrorInfo</h3>
+<code class="signature">public static  void <strong>fromErrorInfo</strong>(mixed error)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/oci8exception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/oci8/oci8statement.html b/lib/api/doctrine/dbal/driver/oci8/oci8statement.html
new file mode 100644
index 000000000..996143509
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/oci8/oci8statement.html
@@ -0,0 +1,253 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>OCI8Statement (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/oci8statement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\OCI8\OCI8Statement</div>
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 32</div>
+
+<h1>Class OCI8Statement</h1>
+
+<pre class="tree"><strong>OCI8Statement</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver Statement </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>OCI8Statement</strong></p>
+
+<div class="comment" id="overview_description"><p>The OCI8 implementation of the Statement interface.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#OCI8Statement()">OCI8Statement</a>(resource dbh, string statement)</p><p class="description">Creates a new OCI8Statement that uses the given connection handle and SQL statement.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#bindParam()">bindParam</a>(mixed column, mixed variable, mixed type)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#bindValue()">bindValue</a>(mixed param, mixed value, mixed type)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#closeCursor()">closeCursor</a>()</p><p class="description">Closes the cursor, enabling the statement to be executed again.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#columnCount()">columnCount</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#errorCode()">errorCode</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#errorInfo()">errorInfo</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed params)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#fetch()">fetch</a>(mixed fetchStyle)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#fetchAll()">fetchAll</a>(mixed fetchStyle)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#fetchColumn()">fetchColumn</a>(mixed columnIndex)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#rowCount()">rowCount</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 51</div>
+<h3 id="OCI8Statement()">OCI8Statement</h3>
+<code class="signature">public <strong>OCI8Statement</strong>(resource dbh, string statement)</code>
+<div class="details">
+<p>Creates a new OCI8Statement that uses the given connection handle and SQL statement.</p><dl>
+<dt>Parameters:</dt>
+<dd>dbh - The connection handle.</dd>
+<dd>statement - The SQL statement.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 87</div>
+<h3 id="bindParam()">bindParam</h3>
+<code class="signature">public  void <strong>bindParam</strong>(mixed column, mixed variable, mixed type)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 79</div>
+<h3 id="bindValue()">bindValue</h3>
+<code class="signature">public  void <strong>bindValue</strong>(mixed param, mixed value, mixed type)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 99</div>
+<h3 id="closeCursor()">closeCursor</h3>
+<code class="signature">public  boolean <strong>closeCursor</strong>()</code>
+<div class="details">
+<p>Closes the cursor, enabling the statement to be executed again.</p><dl>
+<dt>Returns:</dt>
+<dd>Returns TRUE on success or FALSE on failure.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 107</div>
+<h3 id="columnCount()">columnCount</h3>
+<code class="signature">public  void <strong>columnCount</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 115</div>
+<h3 id="errorCode()">errorCode</h3>
+<code class="signature">public  void <strong>errorCode</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 127</div>
+<h3 id="errorInfo()">errorInfo</h3>
+<code class="signature">public  void <strong>errorInfo</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 135</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">public  void <strong>execute</strong>(mixed params)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 158</div>
+<h3 id="fetch()">fetch</h3>
+<code class="signature">public  void <strong>fetch</strong>(mixed fetchStyle)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 170</div>
+<h3 id="fetchAll()">fetchAll</h3>
+<code class="signature">public  void <strong>fetchAll</strong>(mixed fetchStyle)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 185</div>
+<h3 id="fetchColumn()">fetchColumn</h3>
+<code class="signature">public  void <strong>fetchColumn</strong>(mixed columnIndex)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php at line 194</div>
+<h3 id="rowCount()">rowCount</h3>
+<code class="signature">public  void <strong>rowCount</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/oci8statement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/oci8/package-frame.html b/lib/api/doctrine/dbal/driver/oci8/package-frame.html
new file mode 100644
index 000000000..7adf1ab27
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/oci8/package-frame.html
@@ -0,0 +1,33 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\OCI8 (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Driver\OCI8</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/dbal/driver/oci8/driver.html" target="main">Driver</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/oci8connection.html" target="main">OCI8Connection</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/oci8statement.html" target="main">OCI8Statement</a></li>
+</ul>
+
+<h2>Exceptions</h2>
+<ul>
+<li><a href="../../../../doctrine/dbal/driver/oci8/oci8exception.html" target="main">OCI8Exception</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/oci8/package-functions.html b/lib/api/doctrine/dbal/driver/oci8/package-functions.html
new file mode 100644
index 000000000..80262c17d
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/oci8/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/oci8/package-globals.html b/lib/api/doctrine/dbal/driver/oci8/package-globals.html
new file mode 100644
index 000000000..b5b617d52
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/oci8/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/oci8/package-summary.html b/lib/api/doctrine/dbal/driver/oci8/package-summary.html
new file mode 100644
index 000000000..4ccae1802
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/oci8/package-summary.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\OCI8 (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/oci8/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Driver\OCI8</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/driver/oci8/driver.html">Driver</a></td><td class="description">A Doctrine DBAL driver for the Oracle OCI8 PHP extensions.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/driver/oci8/oci8connection.html">OCI8Connection</a></td><td class="description">OCI8 implementation of the Connection interface.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/driver/oci8/oci8statement.html">OCI8Statement</a></td><td class="description">The OCI8 implementation of the Statement interface.</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Exception Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/driver/oci8/oci8exception.html">OCI8Exception</a></td><td class="description"></td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/oci8/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/oci8/package-tree.html b/lib/api/doctrine/dbal/driver/oci8/package-tree.html
new file mode 100644
index 000000000..c24efb5d0
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/oci8/package-tree.html
@@ -0,0 +1,58 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\OCI8 (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Driver\OCI8</h1><ul>
+<li><a href="../../../../doctrine/dbal/driver/oci8/driver.html">Doctrine\DBAL\Driver\OCI8\Driver</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/oci8/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/oci8/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/package-frame.html b/lib/api/doctrine/dbal/driver/package-frame.html
new file mode 100644
index 000000000..1d9105009
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/package-frame.html
@@ -0,0 +1,33 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Driver</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/dbal/driver/pdoconnection.html" target="main">PDOConnection</a></li>
+<li><a href="../../../doctrine/dbal/driver/pdostatement.html" target="main">PDOStatement</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../../doctrine/dbal/driver/connection.html" target="main">Connection</a></li>
+<li><a href="../../../doctrine/dbal/driver/statement.html" target="main">Statement</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/package-functions.html b/lib/api/doctrine/dbal/driver/package-functions.html
new file mode 100644
index 000000000..386e6e2a1
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/package-globals.html b/lib/api/doctrine/dbal/driver/package-globals.html
new file mode 100644
index 000000000..fa4d3ade5
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/package-summary.html b/lib/api/doctrine/dbal/driver/package-summary.html
new file mode 100644
index 000000000..f10699e7c
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/package-summary.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Driver</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/driver/pdoconnection.html">PDOConnection</a></td><td class="description">PDO implementation of the Connection interface.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/driver/pdostatement.html">PDOStatement</a></td><td class="description">The PDO implementation of the Statement interface.
+</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/driver/connection.html">Connection</a></td><td class="description">Connection interface.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/driver/statement.html">Statement</a></td><td class="description">Statement interface.
+</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/package-tree.html b/lib/api/doctrine/dbal/driver/package-tree.html
new file mode 100644
index 000000000..3b6c341c8
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/package-tree.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Driver</h1><ul>
+<li><a href="../../../doctrine/dbal/driver/pdostatement.html">Doctrine\DBAL\Driver\PDOStatement</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdoconnection.html b/lib/api/doctrine/dbal/driver/pdoconnection.html
new file mode 100644
index 000000000..f10754fd5
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdoconnection.html
@@ -0,0 +1,109 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PDOConnection (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/pdoconnection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\PDOConnection</div>
+<div class="location">/Doctrine/DBAL/Driver/PDOConnection.php at line 32</div>
+
+<h1>Class PDOConnection</h1>
+
+<pre class="tree">Class:PDOConnection - Superclass: PDO
+PDO<br>&lfloor;&nbsp;<strong>PDOConnection</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Connection </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>PDOConnection</strong><br>extends PDO
+
+</p>
+
+<div class="comment" id="overview_description"><p>PDO implementation of the Connection interface.
+Used by all PDO-based drivers.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#PDOConnection()">PDOConnection</a>(mixed dsn, mixed user, mixed password, mixed options)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/PDOConnection.php at line 34</div>
+<h3 id="PDOConnection()">PDOConnection</h3>
+<code class="signature">public <strong>PDOConnection</strong>(mixed dsn, mixed user, mixed password, mixed options)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/pdoconnection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomssql/connection.html b/lib/api/doctrine/dbal/driver/pdomssql/connection.html
new file mode 100644
index 000000000..9aba1c993
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomssql/connection.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Connection (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/connection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\PDOMsSql\Connection</div>
+<div class="location">/Doctrine/DBAL/Driver/PDOMsSql/Connection.php at line 29</div>
+
+<h1>Class Connection</h1>
+
+<pre class="tree">Class:Connection - Superclass: PDO
+PDO<br>&lfloor;&nbsp;<strong>Connection</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver Connection </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>Connection</strong><br>extends PDO
+
+</p>
+
+<div class="comment" id="overview_description"><p>MsSql Connection implementation.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#beginTransaction()">beginTransaction</a>()</p><p class="description">Begins a database transaction.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#commit()">commit</a>()</p><p class="description">Performs the commit.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#rollback()">rollback</a>()</p><p class="description">Performs the rollback.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/PDOMsSql/Connection.php at line 56</div>
+<h3 id="beginTransaction()">beginTransaction</h3>
+<code class="signature">public  void <strong>beginTransaction</strong>()</code>
+<div class="details">
+<p>Begins a database transaction.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOMsSql/Connection.php at line 46</div>
+<h3 id="commit()">commit</h3>
+<code class="signature">public  void <strong>commit</strong>()</code>
+<div class="details">
+<p>Performs the commit.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOMsSql/Connection.php at line 36</div>
+<h3 id="rollback()">rollback</h3>
+<code class="signature">public  void <strong>rollback</strong>()</code>
+<div class="details">
+<p>Performs the rollback.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/connection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomssql/driver.html b/lib/api/doctrine/dbal/driver/pdomssql/driver.html
new file mode 100644
index 000000000..06dd46868
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomssql/driver.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Driver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\PDOMsSql\Driver</div>
+<div class="location">/Doctrine/DBAL/Driver/PDOMsSql/Driver.php at line 29</div>
+
+<h1>Class Driver</h1>
+
+<pre class="tree"><strong>Driver</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>Driver</strong></p>
+
+<div class="comment" id="overview_description"><p>The PDO-based MsSql driver.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#connect()">connect</a>(mixed params, mixed username, mixed password, mixed driverOptions)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabase()">getDatabase</a>(mixed conn)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabasePlatform()">getDatabasePlatform</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSchemaManager()">getSchemaManager</a>(mixed conn)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/PDOMsSql/Driver.php at line 31</div>
+<h3 id="connect()">connect</h3>
+<code class="signature">public  void <strong>connect</strong>(mixed params, mixed username, mixed password, mixed driverOptions)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOMsSql/Driver.php at line 79</div>
+<h3 id="getDatabase()">getDatabase</h3>
+<code class="signature">public  void <strong>getDatabase</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOMsSql/Driver.php at line 64</div>
+<h3 id="getDatabasePlatform()">getDatabasePlatform</h3>
+<code class="signature">public  void <strong>getDatabasePlatform</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOMsSql/Driver.php at line 74</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  void <strong>getName</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOMsSql/Driver.php at line 69</div>
+<h3 id="getSchemaManager()">getSchemaManager</h3>
+<code class="signature">public  void <strong>getSchemaManager</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomssql/package-frame.html b/lib/api/doctrine/dbal/driver/pdomssql/package-frame.html
new file mode 100644
index 000000000..de2b439c4
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomssql/package-frame.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOMsSql (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Driver\PDOMsSql</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/connection.html" target="main">Connection</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/driver.html" target="main">Driver</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomssql/package-functions.html b/lib/api/doctrine/dbal/driver/pdomssql/package-functions.html
new file mode 100644
index 000000000..e2b78f37e
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomssql/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomssql/package-globals.html b/lib/api/doctrine/dbal/driver/pdomssql/package-globals.html
new file mode 100644
index 000000000..60ac3c8f9
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomssql/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomssql/package-summary.html b/lib/api/doctrine/dbal/driver/pdomssql/package-summary.html
new file mode 100644
index 000000000..ff5315398
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomssql/package-summary.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOMsSql (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/pdomssql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Driver\PDOMsSql</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/driver/pdomssql/connection.html">Connection</a></td><td class="description">MsSql Connection implementation.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/driver/pdomssql/driver.html">Driver</a></td><td class="description">The PDO-based MsSql driver.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/pdomssql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomssql/package-tree.html b/lib/api/doctrine/dbal/driver/pdomssql/package-tree.html
new file mode 100644
index 000000000..5945367b8
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomssql/package-tree.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOMsSql (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Driver\PDOMsSql</h1><ul>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/driver.html">Doctrine\DBAL\Driver\PDOMsSql\Driver</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomssql/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomssql/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomysql/driver.html b/lib/api/doctrine/dbal/driver/pdomysql/driver.html
new file mode 100644
index 000000000..39f29b3ce
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomysql/driver.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Driver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomysql/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\PDOMySql\Driver</div>
+<div class="location">/Doctrine/DBAL/Driver/PDOMySql/Driver.php at line 31</div>
+
+<h1>Class Driver</h1>
+
+<pre class="tree"><strong>Driver</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>Driver</strong></p>
+
+<div class="comment" id="overview_description"><p>PDO MySql driver.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Connection</td>
+<td class="description"><p class="name"><a href="#connect()">connect</a>(array params, string username, string password, array driverOptions)</p><p class="description">Attempts to establish a connection with the underlying driver.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabase()">getDatabase</a>(mixed conn)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabasePlatform()">getDatabasePlatform</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSchemaManager()">getSchemaManager</a>(mixed conn)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/PDOMySql/Driver.php at line 42</div>
+<h3 id="connect()">connect</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Connection <strong>connect</strong>(array params, string username, string password, array driverOptions)</code>
+<div class="details">
+<p>Attempts to establish a connection with the underlying driver.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOMySql/Driver.php at line 92</div>
+<h3 id="getDatabase()">getDatabase</h3>
+<code class="signature">public  void <strong>getDatabase</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOMySql/Driver.php at line 77</div>
+<h3 id="getDatabasePlatform()">getDatabasePlatform</h3>
+<code class="signature">public  void <strong>getDatabasePlatform</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOMySql/Driver.php at line 87</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  void <strong>getName</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOMySql/Driver.php at line 82</div>
+<h3 id="getSchemaManager()">getSchemaManager</h3>
+<code class="signature">public  void <strong>getSchemaManager</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomysql/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomysql/package-frame.html b/lib/api/doctrine/dbal/driver/pdomysql/package-frame.html
new file mode 100644
index 000000000..9c2199df6
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomysql/package-frame.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOMySql (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Driver\PDOMySql</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/driver.html" target="main">Driver</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomysql/package-functions.html b/lib/api/doctrine/dbal/driver/pdomysql/package-functions.html
new file mode 100644
index 000000000..7982fffd8
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomysql/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomysql/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomysql/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomysql/package-globals.html b/lib/api/doctrine/dbal/driver/pdomysql/package-globals.html
new file mode 100644
index 000000000..4a85d80b6
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomysql/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomysql/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomysql/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomysql/package-summary.html b/lib/api/doctrine/dbal/driver/pdomysql/package-summary.html
new file mode 100644
index 000000000..07302730b
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomysql/package-summary.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOMySql (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/pdomysql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomysql/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Driver\PDOMySql</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/driver/pdomysql/driver.html">Driver</a></td><td class="description">PDO MySql driver.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/pdomysql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomysql/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdomysql/package-tree.html b/lib/api/doctrine/dbal/driver/pdomysql/package-tree.html
new file mode 100644
index 000000000..178b4f1a6
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdomysql/package-tree.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOMySql (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomysql/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Driver\PDOMySql</h1><ul>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/driver.html">Doctrine\DBAL\Driver\PDOMySql\Driver</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdomysql/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdomysql/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdooracle/driver.html b/lib/api/doctrine/dbal/driver/pdooracle/driver.html
new file mode 100644
index 000000000..b4ccbfada
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdooracle/driver.html
@@ -0,0 +1,148 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Driver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdooracle/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\PDOOracle\Driver</div>
+<div class="location">/Doctrine/DBAL/Driver/PDOOracle/Driver.php at line 26</div>
+
+<h1>Class Driver</h1>
+
+<pre class="tree"><strong>Driver</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>Driver</strong></p>
+
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#connect()">connect</a>(mixed params, mixed username, mixed password, mixed driverOptions)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabase()">getDatabase</a>(mixed conn)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabasePlatform()">getDatabasePlatform</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSchemaManager()">getSchemaManager</a>(mixed conn)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/PDOOracle/Driver.php at line 28</div>
+<h3 id="connect()">connect</h3>
+<code class="signature">public  void <strong>connect</strong>(mixed params, mixed username, mixed password, mixed driverOptions)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOOracle/Driver.php at line 83</div>
+<h3 id="getDatabase()">getDatabase</h3>
+<code class="signature">public  void <strong>getDatabase</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOOracle/Driver.php at line 68</div>
+<h3 id="getDatabasePlatform()">getDatabasePlatform</h3>
+<code class="signature">public  void <strong>getDatabasePlatform</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOOracle/Driver.php at line 78</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  void <strong>getName</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOOracle/Driver.php at line 73</div>
+<h3 id="getSchemaManager()">getSchemaManager</h3>
+<code class="signature">public  void <strong>getSchemaManager</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdooracle/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdooracle/package-frame.html b/lib/api/doctrine/dbal/driver/pdooracle/package-frame.html
new file mode 100644
index 000000000..a4c970a5c
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdooracle/package-frame.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOOracle (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Driver\PDOOracle</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/driver.html" target="main">Driver</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdooracle/package-functions.html b/lib/api/doctrine/dbal/driver/pdooracle/package-functions.html
new file mode 100644
index 000000000..51b8cf55a
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdooracle/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdooracle/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdooracle/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdooracle/package-globals.html b/lib/api/doctrine/dbal/driver/pdooracle/package-globals.html
new file mode 100644
index 000000000..99dfdb4d1
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdooracle/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdooracle/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdooracle/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdooracle/package-summary.html b/lib/api/doctrine/dbal/driver/pdooracle/package-summary.html
new file mode 100644
index 000000000..6d9697384
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdooracle/package-summary.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOOracle (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/pdooracle/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdooracle/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Driver\PDOOracle</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/driver/pdooracle/driver.html">Driver</a></td><td class="description"></td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/pdooracle/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdooracle/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdooracle/package-tree.html b/lib/api/doctrine/dbal/driver/pdooracle/package-tree.html
new file mode 100644
index 000000000..e490ece78
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdooracle/package-tree.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOOracle (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdooracle/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Driver\PDOOracle</h1><ul>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/driver.html">Doctrine\DBAL\Driver\PDOOracle\Driver</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdooracle/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdooracle/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdopgsql/driver.html b/lib/api/doctrine/dbal/driver/pdopgsql/driver.html
new file mode 100644
index 000000000..0ba8ad90d
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdopgsql/driver.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Driver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdopgsql/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\PDOPgSql\Driver</div>
+<div class="location">/Doctrine/DBAL/Driver/PDOPgSql/Driver.php at line 12</div>
+
+<h1>Class Driver</h1>
+
+<pre class="tree"><strong>Driver</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>Driver</strong></p>
+
+<div class="comment" id="overview_description"><p>Driver that connects through pdo_pgsql.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Connection</td>
+<td class="description"><p class="name"><a href="#connect()">connect</a>(mixed params, mixed username, mixed password, mixed driverOptions)</p><p class="description">Attempts to connect to the database and returns a driver connection on success.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabase()">getDatabase</a>(mixed conn)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabasePlatform()">getDatabasePlatform</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSchemaManager()">getSchemaManager</a>(mixed conn)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/PDOPgSql/Driver.php at line 19</div>
+<h3 id="connect()">connect</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Connection <strong>connect</strong>(mixed params, mixed username, mixed password, mixed driverOptions)</code>
+<div class="details">
+<p>Attempts to connect to the database and returns a driver connection on success.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOPgSql/Driver.php at line 65</div>
+<h3 id="getDatabase()">getDatabase</h3>
+<code class="signature">public  void <strong>getDatabase</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOPgSql/Driver.php at line 50</div>
+<h3 id="getDatabasePlatform()">getDatabasePlatform</h3>
+<code class="signature">public  void <strong>getDatabasePlatform</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOPgSql/Driver.php at line 60</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  void <strong>getName</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOPgSql/Driver.php at line 55</div>
+<h3 id="getSchemaManager()">getSchemaManager</h3>
+<code class="signature">public  void <strong>getSchemaManager</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdopgsql/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdopgsql/package-frame.html b/lib/api/doctrine/dbal/driver/pdopgsql/package-frame.html
new file mode 100644
index 000000000..39c31e726
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdopgsql/package-frame.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOPgSql (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Driver\PDOPgSql</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/driver.html" target="main">Driver</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdopgsql/package-functions.html b/lib/api/doctrine/dbal/driver/pdopgsql/package-functions.html
new file mode 100644
index 000000000..bc8e79117
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdopgsql/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdopgsql/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdopgsql/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdopgsql/package-globals.html b/lib/api/doctrine/dbal/driver/pdopgsql/package-globals.html
new file mode 100644
index 000000000..afc62cabd
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdopgsql/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdopgsql/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdopgsql/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdopgsql/package-summary.html b/lib/api/doctrine/dbal/driver/pdopgsql/package-summary.html
new file mode 100644
index 000000000..d412f6fb3
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdopgsql/package-summary.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOPgSql (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdopgsql/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Driver\PDOPgSql</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/driver/pdopgsql/driver.html">Driver</a></td><td class="description">Driver that connects through pdo_pgsql.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdopgsql/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdopgsql/package-tree.html b/lib/api/doctrine/dbal/driver/pdopgsql/package-tree.html
new file mode 100644
index 000000000..cfecdab56
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdopgsql/package-tree.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOPgSql (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdopgsql/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Driver\PDOPgSql</h1><ul>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/driver.html">Doctrine\DBAL\Driver\PDOPgSql\Driver</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdopgsql/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdopgsql/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdosqlite/driver.html b/lib/api/doctrine/dbal/driver/pdosqlite/driver.html
new file mode 100644
index 000000000..facad4d48
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdosqlite/driver.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Driver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdosqlite/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\PDOSqlite\Driver</div>
+<div class="location">/Doctrine/DBAL/Driver/PDOSqlite/Driver.php at line 29</div>
+
+<h1>Class Driver</h1>
+
+<pre class="tree"><strong>Driver</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>Driver</strong></p>
+
+<div class="comment" id="overview_description"><p>The PDO Sqlite driver.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_userDefinedFunctions">$_userDefinedFunctions</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../../../doctrine/dbal/connection.html">Connection</a></td>
+<td class="description"><p class="name"><a href="#connect()">connect</a>(array params, string username, string password, array driverOptions)</p><p class="description">Tries to establish a database connection to SQLite.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabase()">getDatabase</a>(mixed conn)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDatabasePlatform()">getDatabasePlatform</a>()</p><p class="description">Gets the database platform that is relevant for this driver.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Schema\SqliteSchemaManager</td>
+<td class="description"><p class="name"><a href="#getSchemaManager()">getSchemaManager</a>(Doctrine\DBAL\Connection conn)</p><p class="description">Gets the schema manager that is relevant for this driver.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/PDOSqlite/Driver.php at line 34</div>
+<h3 id="_userDefinedFunctions">_userDefinedFunctions</h3>
+<code class="signature">protected  array <strong>$_userDefinedFunctions</strong> = array(...)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/PDOSqlite/Driver.php at line 49</div>
+<h3 id="connect()">connect</h3>
+<code class="signature">public  <a href="../../../../doctrine/dbal/connection.html">Connection</a> <strong>connect</strong>(array params, string username, string password, array driverOptions)</code>
+<div class="details">
+<p>Tries to establish a database connection to SQLite.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOSqlite/Driver.php at line 113</div>
+<h3 id="getDatabase()">getDatabase</h3>
+<code class="signature">public  void <strong>getDatabase</strong>(mixed conn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOSqlite/Driver.php at line 92</div>
+<h3 id="getDatabasePlatform()">getDatabasePlatform</h3>
+<code class="signature">public  void <strong>getDatabasePlatform</strong>()</code>
+<div class="details">
+<p>Gets the database platform that is relevant for this driver.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOSqlite/Driver.php at line 108</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  void <strong>getName</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/PDOSqlite/Driver.php at line 103</div>
+<h3 id="getSchemaManager()">getSchemaManager</h3>
+<code class="signature">public  Doctrine\DBAL\Schema\SqliteSchemaManager <strong>getSchemaManager</strong>(Doctrine\DBAL\Connection conn)</code>
+<div class="details">
+<p>Gets the schema manager that is relevant for this driver.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdosqlite/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdosqlite/package-frame.html b/lib/api/doctrine/dbal/driver/pdosqlite/package-frame.html
new file mode 100644
index 000000000..6dd88cce8
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdosqlite/package-frame.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOSqlite (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Driver\PDOSqlite</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/driver.html" target="main">Driver</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdosqlite/package-functions.html b/lib/api/doctrine/dbal/driver/pdosqlite/package-functions.html
new file mode 100644
index 000000000..f2fcee550
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdosqlite/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdosqlite/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdosqlite/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdosqlite/package-globals.html b/lib/api/doctrine/dbal/driver/pdosqlite/package-globals.html
new file mode 100644
index 000000000..f46542803
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdosqlite/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdosqlite/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdosqlite/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdosqlite/package-summary.html b/lib/api/doctrine/dbal/driver/pdosqlite/package-summary.html
new file mode 100644
index 000000000..c0a57ba80
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdosqlite/package-summary.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOSqlite (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdosqlite/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Driver\PDOSqlite</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/driver/pdosqlite/driver.html">Driver</a></td><td class="description">The PDO Sqlite driver.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdosqlite/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdosqlite/package-tree.html b/lib/api/doctrine/dbal/driver/pdosqlite/package-tree.html
new file mode 100644
index 000000000..cbb9c0c8f
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdosqlite/package-tree.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Driver\PDOSqlite (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdosqlite/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Driver\PDOSqlite</h1><ul>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/driver.html">Doctrine\DBAL\Driver\PDOSqlite\Driver</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/driver/pdosqlite/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/driver/pdosqlite/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/pdostatement.html b/lib/api/doctrine/dbal/driver/pdostatement.html
new file mode 100644
index 000000000..dbd487c5c
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/pdostatement.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PDOStatement (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/pdostatement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\PDOStatement</div>
+<div class="location">/Doctrine/DBAL/Driver/PDOStatement.php at line 30</div>
+
+<h1>Class PDOStatement</h1>
+
+<pre class="tree"><strong>PDOStatement</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Statement </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>PDOStatement</strong></p>
+
+<div class="comment" id="overview_description"><p>The PDO implementation of the Statement interface.
+Used by all PDO-based drivers.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#PDOStatement()">PDOStatement</a>()</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/PDOStatement.php at line 32</div>
+<h3 id="PDOStatement()">PDOStatement</h3>
+<code class="signature">public <strong>PDOStatement</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/pdostatement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/driver/statement.html b/lib/api/doctrine/dbal/driver/statement.html
new file mode 100644
index 000000000..e897e332f
--- /dev/null
+++ b/lib/api/doctrine/dbal/driver/statement.html
@@ -0,0 +1,331 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Statement (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/statement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Driver\Statement</div>
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 39</div>
+
+<h1>Interface Statement</h1>
+
+<pre class="tree"><strong>Statement</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>Statement</strong></p>
+
+<div class="comment" id="overview_description"><p>Statement interface.
+Drivers must implement this interface.</p><p>This resembles (a subset of) the PDOStatement interface.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#bindParam()">bindParam</a>(mixed column, mixed variable, integer type, mixed param)</p><p class="description">Binds a PHP variable to a corresponding named or question mark placeholder in the 
+SQL statement that was use to prepare the statement. </p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#bindValue()">bindValue</a>(mixed param, mixed value, integer type)</p><p class="description">Binds a value to a corresponding named or positional
+placeholder in the SQL statement that was used to prepare the statement.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#closeCursor()">closeCursor</a>()</p><p class="description">Closes the cursor, enabling the statement to be executed again.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#columnCount()">columnCount</a>()</p><p class="description">columnCount
+Returns the number of columns in the result set</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#errorCode()">errorCode</a>()</p><p class="description">errorCode
+Fetch the SQLSTATE associated with the last operation on the statement handle</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#errorInfo()">errorInfo</a>()</p><p class="description">errorInfo
+Fetch extended error information associated with the last operation on the statement handle</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(array params)</p><p class="description">Executes a prepared statementIf the prepared statement included parameter markers, you must either:
+call PDOStatement->bindParam() to bind PHP variables to the parameter markers:
+bound variables pass their value as input and receive the output value,
+if any, of their associated parameter markers or pass an array of input-only
+parameter values</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fetch()">fetch</a>(integer fetchStyle, integer cursorOrientation, integer cursorOffset)</p><p class="description">fetch</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#fetchAll()">fetchAll</a>(integer fetchStyle, integer columnIndex)</p><p class="description">Returns an array containing all of the result set rows</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#fetchColumn()">fetchColumn</a>(integer columnIndex)</p><p class="description">fetchColumn
+Returns a single column from the next row of a
+result set or FALSE if there are no more rows.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#rowCount()">rowCount</a>()</p><p class="description">rowCount
+rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement 
+executed by the corresponding object.
+</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 78</div>
+<h3 id="bindParam()">bindParam</h3>
+<code class="signature">public  boolean <strong>bindParam</strong>(mixed column, mixed variable, integer type, mixed param)</code>
+<div class="details">
+<p>Binds a PHP variable to a corresponding named or question mark placeholder in the 
+SQL statement that was use to prepare the statement. Unlike PDOStatement->bindValue(),
+the variable is bound as a reference and will only be evaluated at the time 
+that PDOStatement->execute() is called.</p><p>Most parameters are input parameters, that is, parameters that are 
+used in a read-only fashion to build up the query. Some drivers support the invocation 
+of stored procedures that return data as output parameters, and some also as input/output
+parameters that both send in data and are updated to receive it.</p><dl>
+<dt>Parameters:</dt>
+<dd>param - Parameter identifier. For a prepared statement using named placeholders, this will be a parameter name of the form :name. For a prepared statement using question mark placeholders, this will be the 1-indexed position of the parameter</dd>
+<dd>variable - Name of the PHP variable to bind to the SQL statement parameter.</dd>
+<dd>type - Explicit data type for the parameter using the PDO::PARAM_* constants. To return an INOUT parameter from a stored procedure, use the bitwise OR operator to set the PDO::PARAM_INPUT_OUTPUT bits for the data_type parameter.</dd>
+<dt>Returns:</dt>
+<dd>Returns TRUE on success or FALSE on failure.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 54</div>
+<h3 id="bindValue()">bindValue</h3>
+<code class="signature">public  boolean <strong>bindValue</strong>(mixed param, mixed value, integer type)</code>
+<div class="details">
+<p>Binds a value to a corresponding named or positional
+placeholder in the SQL statement that was used to prepare the statement.</p><dl>
+<dt>Parameters:</dt>
+<dd>param - Parameter identifier. For a prepared statement using named placeholders, this will be a parameter name of the form :name. For a prepared statement using question mark placeholders, this will be the 1-indexed position of the parameter</dd>
+<dd>value - The value to bind to the parameter.</dd>
+<dd>type - Explicit data type for the parameter using the PDO::PARAM_* constants.</dd>
+<dt>Returns:</dt>
+<dd>Returns TRUE on success or FALSE on failure.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 85</div>
+<h3 id="closeCursor()">closeCursor</h3>
+<code class="signature">public  boolean <strong>closeCursor</strong>()</code>
+<div class="details">
+<p>Closes the cursor, enabling the statement to be executed again.</p><dl>
+<dt>Returns:</dt>
+<dd>Returns TRUE on success or FALSE on failure.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 95</div>
+<h3 id="columnCount()">columnCount</h3>
+<code class="signature">public  integer <strong>columnCount</strong>()</code>
+<div class="details">
+<p>columnCount
+Returns the number of columns in the result set</p><dl>
+<dt>Returns:</dt>
+<dd>Returns the number of columns in the result set represented by the PDOStatement object. If there is no result set, this method should return 0.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 104</div>
+<h3 id="errorCode()">errorCode</h3>
+<code class="signature">public  string <strong>errorCode</strong>()</code>
+<div class="details">
+<p>errorCode
+Fetch the SQLSTATE associated with the last operation on the statement handle</p><dl>
+<dt>See Also:</dt>
+<dd>Doctrine_Adapter_Interface::errorCode()</dd>
+<dt>Returns:</dt>
+<dd>error code string</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 113</div>
+<h3 id="errorInfo()">errorInfo</h3>
+<code class="signature">public  array <strong>errorInfo</strong>()</code>
+<div class="details">
+<p>errorInfo
+Fetch extended error information associated with the last operation on the statement handle</p><dl>
+<dt>See Also:</dt>
+<dd>Doctrine_Adapter_Interface::errorInfo()</dd>
+<dt>Returns:</dt>
+<dd>error info array</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 129</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">public  boolean <strong>execute</strong>(array params)</code>
+<div class="details">
+<p>Executes a prepared statement</p><p>If the prepared statement included parameter markers, you must either:
+call PDOStatement->bindParam() to bind PHP variables to the parameter markers:
+bound variables pass their value as input and receive the output value,
+if any, of their associated parameter markers or pass an array of input-only
+parameter values</p><dl>
+<dt>Parameters:</dt>
+<dd>params - An array of values with as many elements as there are bound parameters in the SQL statement being executed.</dd>
+<dt>Returns:</dt>
+<dd>Returns TRUE on success or FALSE on failure.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 158</div>
+<h3 id="fetch()">fetch</h3>
+<code class="signature">public  mixed <strong>fetch</strong>(integer fetchStyle, integer cursorOrientation, integer cursorOffset)</code>
+<div class="details">
+<p>fetch</p><dl>
+<dt>See Also:</dt>
+<dd>constants</dd>
+<dt>Parameters:</dt>
+<dd>fetchStyle - Controls how the next row will be returned to the caller. This value must be one of the Query::HYDRATE_* constants, defaulting to Query::HYDRATE_BOTH</dd>
+<dd>cursorOrientation - For a PDOStatement object representing a scrollable cursor, this value determines which row will be returned to the caller. This value must be one of the Query::HYDRATE_ORI_* constants, defaulting to Query::HYDRATE_ORI_NEXT. To request a scrollable cursor for your PDOStatement object, you must set the PDO::ATTR_CURSOR attribute to Doctrine::CURSOR_SCROLL when you prepare the SQL statement with Doctrine_Adapter_Interface->prepare().</dd>
+<dd>cursorOffset - For a PDOStatement object representing a scrollable cursor for which the $cursorOrientation parameter is set to Query::HYDRATE_ORI_ABS, this value specifies the absolute number of the row in the result set that shall be fetched. For a PDOStatement object representing a scrollable cursor for which the $cursorOrientation parameter is set to Query::HYDRATE_ORI_REL, this value specifies the row to fetch relative to the cursor position before PDOStatement->fetch() was called.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 172</div>
+<h3 id="fetchAll()">fetchAll</h3>
+<code class="signature">public  array <strong>fetchAll</strong>(integer fetchStyle, integer columnIndex)</code>
+<div class="details">
+<p>Returns an array containing all of the result set rows</p><dl>
+<dt>Parameters:</dt>
+<dd>fetchStyle - Controls how the next row will be returned to the caller. This value must be one of the Query::HYDRATE_* constants, defaulting to Query::HYDRATE_BOTH</dd>
+<dd>columnIndex - Returns the indicated 0-indexed column when the value of $fetchStyle is Query::HYDRATE_COLUMN. Defaults to 0.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 185</div>
+<h3 id="fetchColumn()">fetchColumn</h3>
+<code class="signature">public  string <strong>fetchColumn</strong>(integer columnIndex)</code>
+<div class="details">
+<p>fetchColumn
+Returns a single column from the next row of a
+result set or FALSE if there are no more rows.</p><dl>
+<dt>Parameters:</dt>
+<dd>columnIndex - 0-indexed number of the column you wish to retrieve from the row. If no value is supplied, PDOStatement->fetchColumn() fetches the first column.</dd>
+<dt>Returns:</dt>
+<dd>returns a single column in the next row of a result set.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Driver/Statement.php at line 199</div>
+<h3 id="rowCount()">rowCount</h3>
+<code class="signature">public  integer <strong>rowCount</strong>()</code>
+<div class="details">
+<p>rowCount
+rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement 
+executed by the corresponding object.</p><p>If the last SQL statement executed by the associated Statement object was a SELECT statement, 
+some databases may return the number of rows returned by that statement. However, 
+this behaviour is not guaranteed for all databases and should not be 
+relied on for portable applications.</p><dl>
+<dt>Returns:</dt>
+<dd>Returns the number of rows.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/driver/statement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/drivermanager.html b/lib/api/doctrine/dbal/drivermanager.html
new file mode 100644
index 000000000..c6b8aa625
--- /dev/null
+++ b/lib/api/doctrine/dbal/drivermanager.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>DriverManager (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/drivermanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\DriverManager</div>
+<div class="location">/Doctrine/DBAL/DriverManager.php at line 32</div>
+
+<h1>Class DriverManager</h1>
+
+<pre class="tree"><strong>DriverManager</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>DriverManager</strong></p>
+
+<div class="comment" id="overview_description"><p>Factory for creating Doctrine\DBAL\Connection instances.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#DriverManager()">DriverManager</a>()</p><p class="description">Private constructor. </p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  Doctrine\DBAL\Connection</td>
+<td class="description"><p class="name"><a href="#getConnection()">getConnection</a>(array params, mixed config, mixed eventManager, Doctrine\Common\EventManager The)</p><p class="description">Creates a connection object based on the specified parameters.
+</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/DriverManager.php at line 50</div>
+<h3 id="DriverManager()">DriverManager</h3>
+<code class="signature">public <strong>DriverManager</strong>()</code>
+<div class="details">
+<p>Private constructor. This class cannot be instantiated.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/DriverManager.php at line 94</div>
+<h3 id="getConnection()">getConnection</h3>
+<code class="signature">public static  Doctrine\DBAL\Connection <strong>getConnection</strong>(array params, mixed config, mixed eventManager, Doctrine\Common\EventManager The)</code>
+<div class="details">
+<p>Creates a connection object based on the specified parameters.
+This method returns a Doctrine\DBAL\Connection which wraps the underlying
+driver connection.</p><p>$params must contain at least one of the following.</p><p>Either 'driver' with one of the following values:
+pdo_mysql
+pdo_sqlite
+pdo_pgsql
+pdo_oracle
+pdo_mssql</p><p>OR 'driverClass' that contains the full class name (with namespace) of the
+driver class to instantiate.</p><p>Other (optional) parameters:</p><p><b>user (string)</b>:
+The username to use when connecting. </p><p><b>password (string)</b>:
+The password to use when connecting.</p><p><b>driverOptions (array)</b>:
+Any additional driver-specific options for the driver. These are just passed
+through to the driver.</p><p><b>pdo</b>:
+You can pass an existing PDO instance through this parameter. The PDO
+instance will be wrapped in a Doctrine\DBAL\Connection.</p><p><b>wrapperClass</b>:
+You may specify a custom wrapper class through the 'wrapperClass'
+parameter but this class MUST inherit from Doctrine\DBAL\Connection.</p><dl>
+<dt>Parameters:</dt>
+<dd>params - The parameters.</dd>
+<dd>The - configuration to use.</dd>
+<dd>The - event manager to use.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/drivermanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/connectioneventargs.html b/lib/api/doctrine/dbal/event/connectioneventargs.html
new file mode 100644
index 000000000..112f7516e
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/connectioneventargs.html
@@ -0,0 +1,168 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ConnectionEventArgs (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/event/connectioneventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Event\ConnectionEventArgs</div>
+<div class="location">/Doctrine/DBAL/Event/ConnectionEventArgs.php at line 36</div>
+
+<h1>Class ConnectionEventArgs</h1>
+
+<pre class="tree">Class:ConnectionEventArgs - Superclass: EventArgs
+<a href="../../../doctrine/common/eventargs.html">EventArgs</a><br>   &lfloor;&nbsp;<strong>ConnectionEventArgs</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConnectionEventArgs</strong><br>extends <a href="../../../doctrine/common/eventargs.html">EventArgs</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Event Arguments used when a Driver connection is established inside Doctrine\DBAL\Connection.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ConnectionEventArgs()">ConnectionEventArgs</a>(mixed connection)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Connection</td>
+<td class="description"><p class="name"><a href="#getConnection()">getConnection</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Platforms\AbstractPlatform</td>
+<td class="description"><p class="name"><a href="#getDatabasePlatform()">getDatabasePlatform</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver</td>
+<td class="description"><p class="name"><a href="#getDriver()">getDriver</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Schema\AbstractSchemaManager</td>
+<td class="description"><p class="name"><a href="#getSchemaManager()">getSchemaManager</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\Common\EventArgs</th></tr>
+<tr><td><a href="../../../doctrine/common/eventargs.html#getEmptyInstance()">getEmptyInstance</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Event/ConnectionEventArgs.php at line 43</div>
+<h3 id="ConnectionEventArgs()">ConnectionEventArgs</h3>
+<code class="signature">public <strong>ConnectionEventArgs</strong>(mixed connection)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Event/ConnectionEventArgs.php at line 51</div>
+<h3 id="getConnection()">getConnection</h3>
+<code class="signature">public  Doctrine\DBAL\Connection <strong>getConnection</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Event/ConnectionEventArgs.php at line 67</div>
+<h3 id="getDatabasePlatform()">getDatabasePlatform</h3>
+<code class="signature">public  Doctrine\DBAL\Platforms\AbstractPlatform <strong>getDatabasePlatform</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Event/ConnectionEventArgs.php at line 59</div>
+<h3 id="getDriver()">getDriver</h3>
+<code class="signature">public  Doctrine\DBAL\Driver <strong>getDriver</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Event/ConnectionEventArgs.php at line 75</div>
+<h3 id="getSchemaManager()">getSchemaManager</h3>
+<code class="signature">public  Doctrine\DBAL\Schema\AbstractSchemaManager <strong>getSchemaManager</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/event/connectioneventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/listeners/mysqlsessioninit.html b/lib/api/doctrine/dbal/event/listeners/mysqlsessioninit.html
new file mode 100644
index 000000000..c4932e7d0
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/listeners/mysqlsessioninit.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>MysqlSessionInit (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/mysqlsessioninit.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Event\Listeners\MysqlSessionInit</div>
+<div class="location">/Doctrine/DBAL/Event/Listeners/MysqlSessionInit.php at line 37</div>
+
+<h1>Class MysqlSessionInit</h1>
+
+<pre class="tree"><strong>MysqlSessionInit</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>EventSubscriber </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>MysqlSessionInit</strong></p>
+
+<div class="comment" id="overview_description"><p>MySQL Session Init Event Subscriber which allows to set the Client Encoding of the Connection</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#MysqlSessionInit()">MysqlSessionInit</a>(string charset, string collation)</p><p class="description">Configure Charset and Collation options of MySQL Client for each Connection</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSubscribedEvents()">getSubscribedEvents</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#postConnect()">postConnect</a>(<a href="../../../../doctrine/dbal/event/connectioneventargs.html">ConnectionEventArgs</a> args)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Event/Listeners/MysqlSessionInit.php at line 55</div>
+<h3 id="MysqlSessionInit()">MysqlSessionInit</h3>
+<code class="signature">public <strong>MysqlSessionInit</strong>(string charset, string collation)</code>
+<div class="details">
+<p>Configure Charset and Collation options of MySQL Client for each Connection</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Event/Listeners/MysqlSessionInit.php at line 71</div>
+<h3 id="getSubscribedEvents()">getSubscribedEvents</h3>
+<code class="signature">public  void <strong>getSubscribedEvents</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Event/Listeners/MysqlSessionInit.php at line 65</div>
+<h3 id="postConnect()">postConnect</h3>
+<code class="signature">public  void <strong>postConnect</strong>(<a href="../../../../doctrine/dbal/event/connectioneventargs.html">ConnectionEventArgs</a> args)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/mysqlsessioninit.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/listeners/oraclesessioninit.html b/lib/api/doctrine/dbal/event/listeners/oraclesessioninit.html
new file mode 100644
index 000000000..142527ab5
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/listeners/oraclesessioninit.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>OracleSessionInit (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/oraclesessioninit.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Event\Listeners\OracleSessionInit</div>
+<div class="location">/Doctrine/DBAL/Event/Listeners/OracleSessionInit.php at line 44</div>
+
+<h1>Class OracleSessionInit</h1>
+
+<pre class="tree"><strong>OracleSessionInit</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>EventSubscriber </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>OracleSessionInit</strong></p>
+
+<div class="comment" id="overview_description"><p>Should be used when Oracle Server default enviroment does not match the Doctrine requirements.</p><p>The following enviroment variables are required for the Doctrine default date format:</p><p>NLS_TIME_FORMAT="HH24:MI:SS"
+NLS_DATE_FORMAT="YYYY-MM-DD"
+NLS_TIMESTAMP_FORMAT="YYYY-MM-DD HH24:MI:SS"
+NLS_TIMESTAMP_TZ_FORMAT="YYYY-MM-DD HH24:MI:SS TZH:TZM"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_defaultSessionVars">$_defaultSessionVars</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#OracleSessionInit()">OracleSessionInit</a>(array oracleSessionVars)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSubscribedEvents()">getSubscribedEvents</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#postConnect()">postConnect</a>(<a href="../../../../doctrine/dbal/event/connectioneventargs.html">ConnectionEventArgs</a> args)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Event/Listeners/OracleSessionInit.php at line 46</div>
+<h3 id="_defaultSessionVars">_defaultSessionVars</h3>
+<code class="signature">protected  mixed <strong>$_defaultSessionVars</strong> = array(...)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Event/Listeners/OracleSessionInit.php at line 56</div>
+<h3 id="OracleSessionInit()">OracleSessionInit</h3>
+<code class="signature">public <strong>OracleSessionInit</strong>(array oracleSessionVars)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Event/Listeners/OracleSessionInit.php at line 78</div>
+<h3 id="getSubscribedEvents()">getSubscribedEvents</h3>
+<code class="signature">public  void <strong>getSubscribedEvents</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Event/Listeners/OracleSessionInit.php at line 65</div>
+<h3 id="postConnect()">postConnect</h3>
+<code class="signature">public  void <strong>postConnect</strong>(<a href="../../../../doctrine/dbal/event/connectioneventargs.html">ConnectionEventArgs</a> args)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/oraclesessioninit.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/listeners/package-frame.html b/lib/api/doctrine/dbal/event/listeners/package-frame.html
new file mode 100644
index 000000000..d18d3a841
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/listeners/package-frame.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Event\Listeners (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Event\Listeners</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/dbal/event/listeners/mysqlsessioninit.html" target="main">MysqlSessionInit</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/oraclesessioninit.html" target="main">OracleSessionInit</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/listeners/package-functions.html b/lib/api/doctrine/dbal/event/listeners/package-functions.html
new file mode 100644
index 000000000..29a86a928
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/listeners/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/listeners/package-globals.html b/lib/api/doctrine/dbal/event/listeners/package-globals.html
new file mode 100644
index 000000000..f0dcf7567
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/listeners/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/listeners/package-summary.html b/lib/api/doctrine/dbal/event/listeners/package-summary.html
new file mode 100644
index 000000000..6fae84522
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/listeners/package-summary.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Event\Listeners (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/event/listeners/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Event\Listeners</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/event/listeners/mysqlsessioninit.html">MysqlSessionInit</a></td><td class="description">MySQL Session Init Event Subscriber which allows to set the Client Encoding of the Connection</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/event/listeners/oraclesessioninit.html">OracleSessionInit</a></td><td class="description">Should be used when Oracle Server default enviroment does not match the Doctrine requirements.
+</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/event/listeners/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/listeners/package-tree.html b/lib/api/doctrine/dbal/event/listeners/package-tree.html
new file mode 100644
index 000000000..56f407c91
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/listeners/package-tree.html
@@ -0,0 +1,57 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Event\Listeners (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Event\Listeners</h1><ul>
+<li><a href="../../../../doctrine/dbal/event/listeners/mysqlsessioninit.html">Doctrine\DBAL\Event\Listeners\MysqlSessionInit</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/oraclesessioninit.html">Doctrine\DBAL\Event\Listeners\OracleSessionInit</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/event/listeners/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/event/listeners/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/package-frame.html b/lib/api/doctrine/dbal/event/package-frame.html
new file mode 100644
index 000000000..03e59628d
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/package-frame.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Event (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Event</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/dbal/event/connectioneventargs.html" target="main">ConnectionEventArgs</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/package-functions.html b/lib/api/doctrine/dbal/event/package-functions.html
new file mode 100644
index 000000000..e427fe90e
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/event/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/event/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/event/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/event/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/package-globals.html b/lib/api/doctrine/dbal/event/package-globals.html
new file mode 100644
index 000000000..3158e8753
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/event/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/event/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/event/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/event/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/package-summary.html b/lib/api/doctrine/dbal/event/package-summary.html
new file mode 100644
index 000000000..79ff93c49
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/package-summary.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Event (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/event/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Event</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/event/connectioneventargs.html">ConnectionEventArgs</a></td><td class="description">Event Arguments used when a Driver connection is established inside Doctrine\DBAL\Connection.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/event/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/event/package-tree.html b/lib/api/doctrine/dbal/event/package-tree.html
new file mode 100644
index 000000000..39fc28512
--- /dev/null
+++ b/lib/api/doctrine/dbal/event/package-tree.html
@@ -0,0 +1,59 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Event (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/event/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/event/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Event</h1><ul>
+<li><a href="../../../doctrine/common/eventargs.html">Doctrine\Common\EventArgs</a><ul>
+<li><a href="../../../doctrine/dbal/event/connectioneventargs.html">Doctrine\DBAL\Event\ConnectionEventArgs</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/event/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/event/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/events.html b/lib/api/doctrine/dbal/events.html
new file mode 100644
index 000000000..8f2655ad7
--- /dev/null
+++ b/lib/api/doctrine/dbal/events.html
@@ -0,0 +1,167 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Events (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/events.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Events</div>
+<div class="location">/Doctrine/DBAL/Events.php at line 32</div>
+
+<h1>Class Events</h1>
+
+<pre class="tree"><strong>Events</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>Events</strong></p>
+
+<div class="comment" id="overview_description"><p>Container for all DBAL events.</p><p>This class cannot be instantiated.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#postConnect">postConnect</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#postExec">postExec</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#postExecute">postExecute</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#preExec">preExec</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#preExecute">preExecute</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Events()">Events</a>()</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Events.php at line 41</div>
+<h3 id="postConnect">postConnect</h3>
+<code class="signature">public final  str <strong>postConnect</strong> = 'postConnect'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Events.php at line 37</div>
+<h3 id="postExec">postExec</h3>
+<code class="signature">public final  str <strong>postExec</strong> = 'postExec'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Events.php at line 39</div>
+<h3 id="postExecute">postExecute</h3>
+<code class="signature">public final  str <strong>postExecute</strong> = 'postExecute'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Events.php at line 36</div>
+<h3 id="preExec">preExec</h3>
+<code class="signature">public final  str <strong>preExec</strong> = 'preExec'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Events.php at line 38</div>
+<h3 id="preExecute">preExecute</h3>
+<code class="signature">public final  str <strong>preExecute</strong> = 'preExecute'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Events.php at line 34</div>
+<h3 id="Events()">Events</h3>
+<code class="signature">public <strong>Events</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/events.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/logging/debugstack.html b/lib/api/doctrine/dbal/logging/debugstack.html
new file mode 100644
index 000000000..945d1c8e4
--- /dev/null
+++ b/lib/api/doctrine/dbal/logging/debugstack.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>DebugStack (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/logging/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/debugstack.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Logging\DebugStack</div>
+<div class="location">/Doctrine/DBAL/Logging/DebugStack.php at line 36</div>
+
+<h1>Class DebugStack</h1>
+
+<pre class="tree"><strong>DebugStack</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>DebugStack</strong></p>
+
+<div class="comment" id="overview_description"><p>Includes executed SQLs in a Debug Stack</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#enabled">$enabled</a></p><p class="description">@var boolean $enabled If Debug Stack is enabled (log queries) or not.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#queries">$queries</a></p><p class="description">@var array $queries Executed SQL queries.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#logSQL()">logSQL</a>(mixed sql, mixed params)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Logging/DebugStack.php at line 42</div>
+<h3 id="enabled">enabled</h3>
+<code class="signature">public  mixed <strong>$enabled</strong> = true</code>
+<div class="details">
+<p>boolean $enabled If Debug Stack is enabled (log queries) or not.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Logging/DebugStack.php at line 39</div>
+<h3 id="queries">queries</h3>
+<code class="signature">public  mixed <strong>$queries</strong> = array()</code>
+<div class="details">
+<p>array $queries Executed SQL queries.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Logging/DebugStack.php at line 47</div>
+<h3 id="logSQL()">logSQL</h3>
+<code class="signature">public  void <strong>logSQL</strong>(mixed sql, mixed params)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/logging/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/debugstack.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/logging/echosqllogger.html b/lib/api/doctrine/dbal/logging/echosqllogger.html
new file mode 100644
index 000000000..2d5de8408
--- /dev/null
+++ b/lib/api/doctrine/dbal/logging/echosqllogger.html
@@ -0,0 +1,112 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>EchoSQLLogger (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/logging/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/echosqllogger.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Logging\EchoSQLLogger</div>
+<div class="location">/Doctrine/DBAL/Logging/EchoSQLLogger.php at line 36</div>
+
+<h1>Class EchoSQLLogger</h1>
+
+<pre class="tree"><strong>EchoSQLLogger</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>EchoSQLLogger</strong></p>
+
+<div class="comment" id="overview_description"><p>A SQL logger that logs to the standard output using echo/var_dump.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#logSQL()">logSQL</a>(mixed sql, mixed params)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Logging/EchoSQLLogger.php at line 41</div>
+<h3 id="logSQL()">logSQL</h3>
+<code class="signature">public  void <strong>logSQL</strong>(mixed sql, mixed params)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/logging/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/echosqllogger.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/logging/package-frame.html b/lib/api/doctrine/dbal/logging/package-frame.html
new file mode 100644
index 000000000..b87e215cc
--- /dev/null
+++ b/lib/api/doctrine/dbal/logging/package-frame.html
@@ -0,0 +1,32 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Logging (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Logging</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/dbal/logging/debugstack.html" target="main">DebugStack</a></li>
+<li><a href="../../../doctrine/dbal/logging/echosqllogger.html" target="main">EchoSQLLogger</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../../doctrine/dbal/logging/sqllogger.html" target="main">SQLLogger</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/logging/package-functions.html b/lib/api/doctrine/dbal/logging/package-functions.html
new file mode 100644
index 000000000..72dea60cb
--- /dev/null
+++ b/lib/api/doctrine/dbal/logging/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/logging/package-globals.html b/lib/api/doctrine/dbal/logging/package-globals.html
new file mode 100644
index 000000000..c3815d9bf
--- /dev/null
+++ b/lib/api/doctrine/dbal/logging/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/logging/package-summary.html b/lib/api/doctrine/dbal/logging/package-summary.html
new file mode 100644
index 000000000..2fa74e671
--- /dev/null
+++ b/lib/api/doctrine/dbal/logging/package-summary.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Logging (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/logging/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Logging</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/logging/debugstack.html">DebugStack</a></td><td class="description">Includes executed SQLs in a Debug Stack</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/logging/echosqllogger.html">EchoSQLLogger</a></td><td class="description">A SQL logger that logs to the standard output using echo/var_dump.</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/logging/sqllogger.html">SQLLogger</a></td><td class="description">Interface for SQL loggers.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/logging/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/logging/package-tree.html b/lib/api/doctrine/dbal/logging/package-tree.html
new file mode 100644
index 000000000..5b953f52c
--- /dev/null
+++ b/lib/api/doctrine/dbal/logging/package-tree.html
@@ -0,0 +1,57 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Logging (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Logging</h1><ul>
+<li><a href="../../../doctrine/dbal/logging/debugstack.html">Doctrine\DBAL\Logging\DebugStack</a></li>
+<li><a href="../../../doctrine/dbal/logging/echosqllogger.html">Doctrine\DBAL\Logging\EchoSQLLogger</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/logging/sqllogger.html b/lib/api/doctrine/dbal/logging/sqllogger.html
new file mode 100644
index 000000000..3e01039f0
--- /dev/null
+++ b/lib/api/doctrine/dbal/logging/sqllogger.html
@@ -0,0 +1,117 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SQLLogger (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/logging/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/sqllogger.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Logging\SQLLogger</div>
+<div class="location">/Doctrine/DBAL/Logging/SQLLogger.php at line 36</div>
+
+<h1>Interface SQLLogger</h1>
+
+<pre class="tree"><strong>SQLLogger</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>SQLLogger</strong></p>
+
+<div class="comment" id="overview_description"><p>Interface for SQL loggers.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#logSQL()">logSQL</a>(string sql, array params)</p><p class="description">Logs a SQL statement somewhere.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Logging/SQLLogger.php at line 44</div>
+<h3 id="logSQL()">logSQL</h3>
+<code class="signature">public  void <strong>logSQL</strong>(string sql, array params)</code>
+<div class="details">
+<p>Logs a SQL statement somewhere.</p><dl>
+<dt>Parameters:</dt>
+<dd>sql - The SQL to be executed.</dd>
+<dd>params - The SQL parameters.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/logging/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/logging/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/logging/sqllogger.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/package-frame.html b/lib/api/doctrine/dbal/package-frame.html
new file mode 100644
index 000000000..30708755e
--- /dev/null
+++ b/lib/api/doctrine/dbal/package-frame.html
@@ -0,0 +1,41 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Doctrine\DBAL (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../doctrine/dbal/configuration.html" target="main">Configuration</a></li>
+<li><a href="../../doctrine/dbal/connection.html" target="main">Connection</a></li>
+<li><a href="../../doctrine/dbal/connectionexception.html" target="main">ConnectionException</a></li>
+<li><a href="../../doctrine/dbal/drivermanager.html" target="main">DriverManager</a></li>
+<li><a href="../../doctrine/dbal/events.html" target="main">Events</a></li>
+<li><a href="../../doctrine/dbal/statement.html" target="main">Statement</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../doctrine/dbal/driver.html" target="main">Driver</a></li>
+</ul>
+
+<h2>Exceptions</h2>
+<ul>
+<li><a href="../../doctrine/dbal/dbalexception.html" target="main">DBALException</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/package-functions.html b/lib/api/doctrine/dbal/package-functions.html
new file mode 100644
index 000000000..1534894d5
--- /dev/null
+++ b/lib/api/doctrine/dbal/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/package-globals.html b/lib/api/doctrine/dbal/package-globals.html
new file mode 100644
index 000000000..ade0b8975
--- /dev/null
+++ b/lib/api/doctrine/dbal/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/package-summary.html b/lib/api/doctrine/dbal/package-summary.html
new file mode 100644
index 000000000..2519412d6
--- /dev/null
+++ b/lib/api/doctrine/dbal/package-summary.html
@@ -0,0 +1,84 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Doctrine\DBAL (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../doctrine/dbal/configuration.html">Configuration</a></td><td class="description">Configuration container for the Doctrine DBAL.</td></tr>
+<tr><td class="name"><a href="../../doctrine/dbal/connection.html">Connection</a></td><td class="description">A wrapper around a Doctrine\DBAL\Driver\Connection that adds features like
+events, transaction isolation levels, configuration, emulated transaction nesting,
+lazy connecting and more.</td></tr>
+<tr><td class="name"><a href="../../doctrine/dbal/connectionexception.html">ConnectionException</a></td><td class="description">Doctrine\DBAL\ConnectionException</td></tr>
+<tr><td class="name"><a href="../../doctrine/dbal/drivermanager.html">DriverManager</a></td><td class="description">Factory for creating Doctrine\DBAL\Connection instances.</td></tr>
+<tr><td class="name"><a href="../../doctrine/dbal/events.html">Events</a></td><td class="description">Container for all DBAL events.
+</td></tr>
+<tr><td class="name"><a href="../../doctrine/dbal/statement.html">Statement</a></td><td class="description">A thin wrapper around a Doctrine\DBAL\Driver\Statement that adds support
+for logging, DBAL mapping types, etc.</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../doctrine/dbal/driver.html">Driver</a></td><td class="description">Driver interface.
+</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Exception Summary</th></tr>
+<tr><td class="name"><a href="../../doctrine/dbal/dbalexception.html">DBALException</a></td><td class="description"></td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/package-tree.html b/lib/api/doctrine/dbal/package-tree.html
new file mode 100644
index 000000000..56affa477
--- /dev/null
+++ b/lib/api/doctrine/dbal/package-tree.html
@@ -0,0 +1,60 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Doctrine\DBAL (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL</h1><ul>
+<li><a href="../../doctrine/dbal/configuration.html">Doctrine\DBAL\Configuration</a></li>
+<li><a href="../../doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></li>
+<li><a href="../../doctrine/dbal/drivermanager.html">Doctrine\DBAL\DriverManager</a></li>
+<li><a href="../../doctrine/dbal/events.html">Doctrine\DBAL\Events</a></li>
+<li><a href="../../doctrine/dbal/statement.html">Doctrine\DBAL\Statement</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/abstractplatform.html b/lib/api/doctrine/dbal/platforms/abstractplatform.html
new file mode 100644
index 000000000..f1ea0600b
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/abstractplatform.html
@@ -0,0 +1,1972 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AbstractPlatform (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/abstractplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Platforms\AbstractPlatform</div>
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 47</div>
+
+<h1>Class AbstractPlatform</h1>
+
+<pre class="tree"><strong>AbstractPlatform</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractPlatform</strong></p>
+
+<div class="comment" id="overview_description"><p>Base class for all DatabasePlatforms. The DatabasePlatforms are the central
+point of abstraction of platform-specific behaviors, features and SQL dialects.
+They are a passive source of information.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)</dd>
+<dt>Todo:</dt>
+<dd>Remove any unnecessary methods.</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#CREATE_FOREIGNKEYS">CREATE_FOREIGNKEYS</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#CREATE_INDEXES">CREATE_INDEXES</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TRIM_BOTH">TRIM_BOTH</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TRIM_LEADING">TRIM_LEADING</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TRIM_TRAILING">TRIM_TRAILING</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TRIM_UNSPECIFIED">$TRIM_UNSPECIFIED</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AbstractPlatform()">AbstractPlatform</a>()</p><p class="description">Constructor.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#convertBooleans()">convertBooleans</a>(mixed item)</p><p class="description">Some platforms need the boolean values to be converted.
+</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#fixSchemaElementName()">fixSchemaElementName</a>(mixed schemaElementName, string schemaName)</p><p class="description">Makes any fixes to a name of a schema element (table, sequence, ...) that are required
+by restrictions of the platform, like a maximum length.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getAcosExpression()">getAcosExpression</a>(mixed value)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</a>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey)</p><p class="description">Return the FOREIGN KEY query section dealing with non-standard options
+as MATCH, INITIALLY DEFERRED, ON UPDATE, ...</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getAlterTableSQL()">getAlterTableSQL</a>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> diff)</p><p class="description">Gets the sql statements for altering an existing table.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getAvgExpression()">getAvgExpression</a>(string column)</p><p class="description">Returns the average value of a column</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBetweenExpression()">getBetweenExpression</a>(string expression, string value1, string value2)</p><p class="description">Returns SQL that checks if an expression evaluates to a value between
+two values.
+</p></td>
+</tr>
+<tr>
+<td class="type">abstract  string</td>
+<td class="description"><p class="name"><a href="#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>(array columnDef)</p><p class="description">Gets the SQL snippet that declares an 8 byte integer column.</p></td>
+</tr>
+<tr>
+<td class="type">abstract  string</td>
+<td class="description"><p class="name"><a href="#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>(array columnDef)</p><p class="description">Gets the SQL snippet that declares a boolean column.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCheckDeclarationSQL()">getCheckDeclarationSQL</a>(array definition)</p><p class="description">Obtain DBMS specific SQL code portion needed to set a CHECK constraint
+declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type">abstract  void</td>
+<td class="description"><p class="name"><a href="#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>(array field)</p><p class="description">Gets the SQL snippet used to declare a CLOB column type.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getColumnCharsetDeclarationSQL()">getColumnCharsetDeclarationSQL</a>(string charset)</p><p class="description">Obtain DBMS specific SQL code portion needed to set the CHARACTER SET
+of a field declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getColumnCollationDeclarationSQL()">getColumnCollationDeclarationSQL</a>(string collation)</p><p class="description">Obtain DBMS specific SQL code portion needed to set the COLLATION
+of a field declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getColumnDeclarationListSQL()">getColumnDeclarationListSQL</a>(array fields)</p><p class="description">Get declaration of a number of fields in bulk</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getColumnDeclarationSQL()">getColumnDeclarationSQL</a>(string name, array field)</p><p class="description">Obtain DBMS specific SQL code portion needed to declare a generic type
+field to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getConcatExpression()">getConcatExpression</a>(string arg1,)</p><p class="description">Returns a series of strings concatinatedconcat() accepts an arbitrary number of parameters. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCosExpression()">getCosExpression</a>(mixed value)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCountExpression()">getCountExpression</a>(string|integer column)</p><p class="description">Returns the number of rows (without a NULL value) of a columnIf a '*' is used instead of a column the number of selected rows
+is returned.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCreateConstraintSQL()">getCreateConstraintSQL</a>(<a href="../../../doctrine/dbal/schema/constraint.html">Constraint</a> constraint, string|Table table)</p><p class="description">Gets the SQL to create a constraint on a table on this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateDatabaseSQL()">getCreateDatabaseSQL</a>(mixed database)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCreateForeignKeySQL()">getCreateForeignKeySQL</a>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey, string|Table table)</p><p class="description">Create a new foreign key</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCreateIndexSQL()">getCreateIndexSQL</a>(<a href="../../../doctrine/dbal/schema/index.html">Index</a> index, string|Table table)</p><p class="description">Gets the SQL to create an index on a table on this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateSequenceSQL()">getCreateSequenceSQL</a>(\Doctrine\DBAL\Schema\Sequence sequence)</p><p class="description">Gets the SQL to create a sequence on this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getCreateTableSQL()">getCreateTableSQL</a>(string table, int createFlags)</p><p class="description">Gets the SQL statement(s) to create a table with the specified name, columns and constraints
+on this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateViewSQL()">getCreateViewSQL</a>(mixed name, mixed sql)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCurrentDateSQL()">getCurrentDateSQL</a>()</p><p class="description">Gets the SQL specific for the platform to get the current date.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCurrentTimeSQL()">getCurrentTimeSQL</a>()</p><p class="description">Gets the SQL specific for the platform to get the current time.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCurrentTimestampSQL()">getCurrentTimestampSQL</a>()</p><p class="description">Gets the SQL specific for the platform to get the current timestamp</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCustomTypeDeclarationSQL()">getCustomTypeDeclarationSQL</a>(mixed columnDef)</p><p class="description">getCustomTypeDeclarationSql
+Obtail SQL code portion needed to create a custom column,
+e.g. </p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateFormatString()">getDateFormatString</a>()</p><p class="description">Gets the format string, as accepted by the date() function, that describes
+the format of a stored date value of this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTimeFormatString()">getDateTimeFormatString</a>()</p><p class="description">Gets the format string, as accepted by the date() function, that describes
+the format of a stored datetime value of this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description">Obtain DBMS specific SQL to be used to create datetime fields in 
+statements like CREATE TABLE</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description">Obtain DBMS specific SQL to be used to create date fields in statements
+like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDecimalTypeDeclarationSQL()">getDecimalTypeDeclarationSQL</a>(array columnDef)</p><p class="description">Gets the SQL snippet that declares a floating point column of arbitrary precision.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getDefaultTransactionIsolationLevel()">getDefaultTransactionIsolationLevel</a>()</p><p class="description">Gets the default transaction isolation level of the platform.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDefaultValueDeclarationSQL()">getDefaultValueDeclarationSQL</a>(array field)</p><p class="description">Obtain DBMS specific SQL code portion needed to set a default value
+declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropConstraintSQL()">getDropConstraintSQL</a>(\Doctrine\DBAL\Schema\Constraint constraint, string|Table table)</p><p class="description">Get drop constraint sql</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDropDatabaseSQL()">getDropDatabaseSQL</a>(mixed database)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropForeignKeySQL()">getDropForeignKeySQL</a>(ForeignKeyConstraint|string foreignKey, Table|string table)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropIndexSQL()">getDropIndexSQL</a>(mixed index, string|Table table, Index|string name)</p><p class="description">Drop index from a table</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDropSequenceSQL()">getDropSequenceSQL</a>(mixed sequence)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropTableSQL()">getDropTableSQL</a>(Table|string table)</p><p class="description">Drop a Table</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDropViewSQL()">getDropViewSQL</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</a>(string tableName, string identifierColumnName)</p><p class="description">Get the insert sql for an empty insert statement</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getForUpdateSql()">getForUpdateSql</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getForeignKeyBaseDeclarationSQL()">getForeignKeyBaseDeclarationSQL</a>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey)</p><p class="description">Obtain DBMS specific SQL code portion needed to set the FOREIGN KEY constraint
+of a field declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getForeignKeyDeclarationSQL()">getForeignKeyDeclarationSQL</a>(mixed foreignKey, array definition)</p><p class="description">Obtain DBMS specific SQL code portion needed to set the FOREIGN KEY constraint
+of a field declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getForeignKeyReferentialActionSQL()">getForeignKeyReferentialActionSQL</a>(string action, string foreign)</p><p class="description">returns given referential action in uppercase if valid, otherwise throws
+an exception</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter</a>()</p><p class="description">Gets the character used for identifier quoting.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getIdentityColumnNullInsertSQL()">getIdentityColumnNullInsertSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getInExpression()">getInExpression</a>(string column, string|array(string) values)</p><p class="description">Returns the SQL to check if a value is one in a set of
+given values.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIndexDeclarationSQL()">getIndexDeclarationSQL</a>(string name, <a href="../../../doctrine/dbal/schema/index.html">Index</a> index)</p><p class="description">Obtain DBMS specific SQL code portion needed to set an index
+declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIndexFieldDeclarationListSQL()">getIndexFieldDeclarationListSQL</a>(mixed fields)</p><p class="description">getIndexFieldDeclarationList
+Obtain DBMS specific SQL code portion needed to set an index
+declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type">abstract  string</td>
+<td class="description"><p class="name"><a href="#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>(array columnDef)</p><p class="description">Gets the SQL snippet that declares a 4 byte integer column.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIsNotNullExpression()">getIsNotNullExpression</a>(string expression)</p><p class="description">Returns SQL that checks if a expression is not null.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIsNullExpression()">getIsNullExpression</a>(string expression)</p><p class="description">Returns SQL that checks if a expression is null.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getLengthExpression()">getLengthExpression</a>(mixed column, string expression1, string expression2)</p><p class="description">Returns the length of a text field.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListDatabasesSQL()">getListDatabasesSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListSequencesSQL()">getListSequencesSQL</a>(mixed database)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableColumnsSQL()">getListTableColumnsSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableConstraintsSQL()">getListTableConstraintsSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableForeignKeysSQL()">getListTableForeignKeysSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableIndexesSQL()">getListTableIndexesSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTablesSQL()">getListTablesSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListUsersSQL()">getListUsersSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getListViewsSQL()">getListViewsSQL</a>(string database)</p><p class="description">Get the SQL to list all views of a database or user.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getLocateExpression()">getLocateExpression</a>(string str, string substr, mixed startPos, int pos)</p><p class="description">returns the position of the first occurrence of substring $substr in string $str</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getLowerExpression()">getLowerExpression</a>(string str)</p><p class="description">lower
+Returns the string $str with all characters changed to
+lowercase according to the current character set mapping.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getLtrimExpression()">getLtrimExpression</a>(string str)</p><p class="description">ltrim
+returns the string $str with leading space characters removed</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getMaxExpression()">getMaxExpression</a>(string column)</p><p class="description">Returns the highest value of a column</p></td>
+</tr>
+<tr>
+<td class="type"> int</td>
+<td class="description"><p class="name"><a href="#getMaxIdentifierLength()">getMaxIdentifierLength</a>()</p><p class="description">Maximum length of any given databse identifier, like tables or column names.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getMd5Expression()">getMd5Expression</a>(mixed column)</p><p class="description">Returns the md5 sum of a field.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getMinExpression()">getMinExpression</a>(string column)</p><p class="description">Returns the lowest value of a column</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getModExpression()">getModExpression</a>(string expression1, string expression2)</p><p class="description">Returns the remainder of the division operation
+$expression1 / $expression2.</p></td>
+</tr>
+<tr>
+<td class="type">abstract  string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of the platform.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getNotExpression()">getNotExpression</a>(mixed expression)</p><p class="description">Returns the SQL for a logical not.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getNowExpression()">getNowExpression</a>()</p><p class="description">Returns the current system date.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getPiExpression()">getPiExpression</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getRegexpExpression()">getRegexpExpression</a>()</p><p class="description">Returns the regular expression operator.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getRoundExpression()">getRoundExpression</a>(mixed column, mixed decimals, string expression1, string expression2)</p><p class="description">Rounds a numeric field to the number of decimals specified.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getRtrimExpression()">getRtrimExpression</a>(string str)</p><p class="description">rtrim
+returns the string $str with proceeding space characters removed</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSQLResultCasing()">getSQLResultCasing</a>(string column)</p><p class="description">Gets the character casing of a column in an SQL result set of this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSequenceNextValSQL()">getSequenceNextValSQL</a>(mixed sequenceName)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSetCharsetSQL()">getSetCharsetSQL</a>(string charset)</p><p class="description">Gets the SQL statement specific for the platform to set the charset.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>(integer level)</p><p class="description">Get sql to set the transaction isolation level</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getShowDatabasesSQL()">getShowDatabasesSQL</a>()</p><p class="description">Get sql query to show a list of database.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSinExpression()">getSinExpression</a>(mixed value)</p></td>
+</tr>
+<tr>
+<td class="type">abstract  string</td>
+<td class="description"><p class="name"><a href="#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>(array columnDef)</p><p class="description">Gets the SQL snippet that declares a 2 byte integer column.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSqlCommentEndString()">getSqlCommentEndString</a>()</p><p class="description">Gets the string portion that ends an SQL comment.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSqlCommentStartString()">getSqlCommentStartString</a>()</p><p class="description">Gets the string portion that starts an SQL comment.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSubstringExpression()">getSubstringExpression</a>(string value, integer from, integer len)</p><p class="description">return string to call a function to get a substring inside an SQL statementNote: Not SQL92, but common functionality.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSumExpression()">getSumExpression</a>(string column)</p><p class="description">Returns the total sum of a column</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTemporaryTableSQL()">getTemporaryTableSQL</a>()</p><p class="description">A method to return the required SQL string that fits between CREATE ... </p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTimeFormatString()">getTimeFormatString</a>()</p><p class="description">Gets the format string, as accepted by the date() function, that describes
+the format of a stored time value of this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description">Obtain DBMS specific SQL to be used to create time fields in statements
+like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTrimExpression()">getTrimExpression</a>(string str, int pos, string char)</p><p class="description">Trim a string, leading/trailing/both and with a given char which defaults to space.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTruncateTableSQL()">getTruncateTableSQL</a>(string tableName, bool cascade)</p><p class="description">Generate a Truncate Table SQL statement for a given table.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getUniqueConstraintDeclarationSQL()">getUniqueConstraintDeclarationSQL</a>(string name, <a href="../../../doctrine/dbal/schema/index.html">Index</a> index)</p><p class="description">Obtain DBMS specific SQL code portion needed to set a unique
+constraint declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getUniqueFieldDeclarationSQL()">getUniqueFieldDeclarationSQL</a>()</p><p class="description">Obtain DBMS specific SQL code portion needed to set the UNIQUE constraint
+of a field declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getUpperExpression()">getUpperExpression</a>(string str)</p><p class="description">upper
+Returns the string $str with all characters changed to
+uppercase according to the current character set mapping.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getVarcharMaxLength()">getVarcharMaxLength</a>()</p><p class="description">Gets the maximum length of a varchar field.</p></td>
+</tr>
+<tr>
+<td class="type">abstract  void</td>
+<td class="description"><p class="name"><a href="#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>(array field)</p><p class="description">Gets the SQL snippet used to declare a VARCHAR column type.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getWildcards()">getWildcards</a>()</p><p class="description">Gets all SQL wildcard characters of the platform.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#modifyLimitQuery()">modifyLimitQuery</a>(mixed query, mixed limit, mixed offset)</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#prefersIdentityColumns()">prefersIdentityColumns</a>()</p><p class="description">Whether the platform prefers identity columns (eg. </p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#prefersSequences()">prefersSequences</a>()</p><p class="description">Whether the platform prefers sequences for ID generation.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#quoteIdentifier()">quoteIdentifier</a>(string str)</p><p class="description">Quotes a string so that it can be safely used as a table or column name,
+even if it is a reserved word of the platform.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#supportsAlterTable()">supportsAlterTable</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsForeignKeyConstraints()">supportsForeignKeyConstraints</a>()</p><p class="description">Does the platform supports foreign key constraints?</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate</a>()</p><p class="description">Does this platform supports onUpdate in foreign key constraints?</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsGettingAffectedRows()">supportsGettingAffectedRows</a>()</p><p class="description">Whether the platform supports getting the affected rows of a recent
+update/delete type query.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsIdentityColumns()">supportsIdentityColumns</a>()</p><p class="description">Whether the platform supports identity columns.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsIndexes()">supportsIndexes</a>()</p><p class="description">Whether the platform supports indexes.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsPrimaryConstraints()">supportsPrimaryConstraints</a>()</p><p class="description">Whether the platform supports primary key constraints.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsSavepoints()">supportsSavepoints</a>()</p><p class="description">Whether the platform supports savepoints.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsSchemas()">supportsSchemas</a>()</p><p class="description">Whether the platform supports database schemas.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsSequences()">supportsSequences</a>()</p><p class="description">Whether the platform supports sequences.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsTransactions()">supportsTransactions</a>()</p><p class="description">Whether the platform supports transactions.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 57</div>
+<h3 id="CREATE_FOREIGNKEYS">CREATE_FOREIGNKEYS</h3>
+<code class="signature">public final  int <strong>CREATE_FOREIGNKEYS</strong> = 2</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 52</div>
+<h3 id="CREATE_INDEXES">CREATE_INDEXES</h3>
+<code class="signature">public final  int <strong>CREATE_INDEXES</strong> = 1</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 77</div>
+<h3 id="TRIM_BOTH">TRIM_BOTH</h3>
+<code class="signature">public final  int <strong>TRIM_BOTH</strong> = 3</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 67</div>
+<h3 id="TRIM_LEADING">TRIM_LEADING</h3>
+<code class="signature">public final  int <strong>TRIM_LEADING</strong> = 1</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 72</div>
+<h3 id="TRIM_TRAILING">TRIM_TRAILING</h3>
+<code class="signature">public final  int <strong>TRIM_TRAILING</strong> = 2</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 62</div>
+<h3 id="TRIM_UNSPECIFIED">TRIM_UNSPECIFIED</h3>
+<code class="signature">public final  int <strong>$TRIM_UNSPECIFIED</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 82</div>
+<h3 id="AbstractPlatform()">AbstractPlatform</h3>
+<code class="signature">public <strong>AbstractPlatform</strong>()</code>
+<div class="details">
+<p>Constructor.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1382</div>
+<h3 id="convertBooleans()">convertBooleans</h3>
+<code class="signature">public  void <strong>convertBooleans</strong>(mixed item)</code>
+<div class="details">
+<p>Some platforms need the boolean values to be converted.</p><p>The default conversion in this implementation converts to integers (false => 0, true => 1).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1696</div>
+<h3 id="createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys</h3>
+<code class="signature">public  bool <strong>createsExplicitIndexForForeignKeys</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1805</div>
+<h3 id="fixSchemaElementName()">fixSchemaElementName</h3>
+<code class="signature">public  string <strong>fixSchemaElementName</strong>(mixed schemaElementName, string schemaName)</code>
+<div class="details">
+<p>Makes any fixes to a name of a schema element (table, sequence, ...) that are required
+by restrictions of the platform, like a maximum length.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 471</div>
+<h3 id="getAcosExpression()">getAcosExpression</h3>
+<code class="signature">public  void <strong>getAcosExpression</strong>(mixed value)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1246</div>
+<h3 id="getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</h3>
+<code class="signature">public  string <strong>getAdvancedForeignKeyOptionsSQL</strong>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey)</code>
+<div class="details">
+<p>Return the FOREIGN KEY query section dealing with non-standard options
+as MATCH, INITIALLY DEFERRED, ON UPDATE, ...</p><dl>
+<dt>Parameters:</dt>
+<dd>foreignKey - foreign key definition</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 829</div>
+<h3 id="getAlterTableSQL()">getAlterTableSQL</h3>
+<code class="signature">public  array <strong>getAlterTableSQL</strong>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> diff)</code>
+<div class="details">
+<p>Gets the sql statements for altering an existing table.</p><p>The method returns an array of sql statements, since some platforms need several statements.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 150</div>
+<h3 id="getAvgExpression()">getAvgExpression</h3>
+<code class="signature">public  string <strong>getAvgExpression</strong>(string column)</code>
+<div class="details">
+<p>Returns the average value of a column</p><dl>
+<dt>Parameters:</dt>
+<dd>column - the column to use</dd>
+<dt>Returns:</dt>
+<dd>generated sql including an AVG aggregate function</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 466</div>
+<h3 id="getBetweenExpression()">getBetweenExpression</h3>
+<code class="signature">public  string <strong>getBetweenExpression</strong>(string expression, string value1, string value2)</code>
+<div class="details">
+<p>Returns SQL that checks if an expression evaluates to a value between
+two values.</p><p>The parameter $expression is checked if it is between $value1 and $value2.</p><p>Note: There is a slight difference in the way BETWEEN works on some databases.
+http://www.w3schools.com/sql/sql_between.asp. If you want complete database
+independence you should avoid using between().</p><dl>
+<dt>Parameters:</dt>
+<dd>expression - the value to compare to</dd>
+<dd>value1 - the lower value to compare with</dd>
+<dd>value2 - the higher value to compare with</dd>
+<dt>Returns:</dt>
+<dd>logical expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1014</div>
+<h3 id="getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</h3>
+<code class="signature">public abstract  string <strong>getBigIntTypeDeclarationSQL</strong>(array columnDef)</code>
+<div class="details">
+<p>Gets the SQL snippet that declares an 8 byte integer column.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 998</div>
+<h3 id="getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</h3>
+<code class="signature">public abstract  string <strong>getBooleanTypeDeclarationSQL</strong>(array columnDef)</code>
+<div class="details">
+<p>Gets the SQL snippet that declares a boolean column.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1063</div>
+<h3 id="getCheckDeclarationSQL()">getCheckDeclarationSQL</h3>
+<code class="signature">public  string <strong>getCheckDeclarationSQL</strong>(array definition)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to set a CHECK constraint
+declaration to be used in statements like CREATE TABLE.</p><dl>
+<dt>Parameters:</dt>
+<dd>definition - check definition</dd>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion needed to set a CHECK constraint</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1778</div>
+<h3 id="getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</h3>
+<code class="signature">public abstract  void <strong>getClobTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p>Gets the SQL snippet used to declare a CLOB column type.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1335</div>
+<h3 id="getColumnCharsetDeclarationSQL()">getColumnCharsetDeclarationSQL</h3>
+<code class="signature">public  string <strong>getColumnCharsetDeclarationSQL</strong>(string charset)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to set the CHARACTER SET
+of a field declaration to be used in statements like CREATE TABLE.</p><dl>
+<dt>Parameters:</dt>
+<dd>charset - name of the charset</dd>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion needed to set the CHARACTER SET of a field declaration.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1348</div>
+<h3 id="getColumnCollationDeclarationSQL()">getColumnCollationDeclarationSQL</h3>
+<code class="signature">public  string <strong>getColumnCollationDeclarationSQL</strong>(string collation)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to set the COLLATION
+of a field declaration to be used in statements like CREATE TABLE.</p><dl>
+<dt>Parameters:</dt>
+<dd>collation - name of the collation</dd>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion needed to set the COLLATION of a field declaration.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 905</div>
+<h3 id="getColumnDeclarationListSQL()">getColumnDeclarationListSQL</h3>
+<code class="signature">public  string <strong>getColumnDeclarationListSQL</strong>(array fields)</code>
+<div class="details">
+<p>Get declaration of a number of fields in bulk</p><dl>
+<dt>Parameters:</dt>
+<dd>fields - a multidimensional associative array. The first dimension determines the field name, while the second dimension is keyed with the name of the properties of the field being declared as array indexes. Currently, the types of supported field properties are as follows: length Integer value that determines the maximum length of the text field. If this argument is missing the field should be declared to have the longest length allowed by the DBMS. default Text value to be used as default for this field. notnull Boolean flag that indicates whether this field is constrained to not be set to null. charset Text value with the default CHARACTER SET for this field. collation Text value with the default COLLATION for this field. unique unique constraint</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 948</div>
+<h3 id="getColumnDeclarationSQL()">getColumnDeclarationSQL</h3>
+<code class="signature">public  string <strong>getColumnDeclarationSQL</strong>(string name, array field)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to declare a generic type
+field to be used in statements like CREATE TABLE.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name the field to be declared.</dd>
+<dd>field - associative array with the name of the properties of the field being declared as array indexes. Currently, the types of supported field properties are as follows: length Integer value that determines the maximum length of the text field. If this argument is missing the field should be declared to have the longest length allowed by the DBMS. default Text value to be used as default for this field. notnull Boolean flag that indicates whether this field is constrained to not be set to null. charset Text value with the default CHARACTER SET for this field. collation Text value with the default COLLATION for this field. unique unique constraint check column check constraint columnDefinition a string that defines the complete column</dd>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion that should be used to declare the column.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 380</div>
+<h3 id="getConcatExpression()">getConcatExpression</h3>
+<code class="signature">public  string <strong>getConcatExpression</strong>(string arg1,)</code>
+<div class="details">
+<p>Returns a series of strings concatinated</p><p>concat() accepts an arbitrary number of parameters. Each parameter
+must contain an expression</p><dl>
+<dt>Parameters:</dt>
+<dd>arg1, - $arg2 ... $argN strings that will be concatinated.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 486</div>
+<h3 id="getCosExpression()">getCosExpression</h3>
+<code class="signature">public  void <strong>getCosExpression</strong>(mixed value)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 164</div>
+<h3 id="getCountExpression()">getCountExpression</h3>
+<code class="signature">public  string <strong>getCountExpression</strong>(string|integer column)</code>
+<div class="details">
+<p>Returns the number of rows (without a NULL value) of a column</p><p>If a '*' is used instead of a column the number of selected rows
+is returned.</p><dl>
+<dt>Parameters:</dt>
+<dd>column - the column to use</dd>
+<dt>Returns:</dt>
+<dd>generated sql including a COUNT aggregate function</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 714</div>
+<h3 id="getCreateConstraintSQL()">getCreateConstraintSQL</h3>
+<code class="signature">public  string <strong>getCreateConstraintSQL</strong>(<a href="../../../doctrine/dbal/schema/constraint.html">Constraint</a> constraint, string|Table table)</code>
+<div class="details">
+<p>Gets the SQL to create a constraint on a table on this platform.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1532</div>
+<h3 id="getCreateDatabaseSQL()">getCreateDatabaseSQL</h3>
+<code class="signature">public  void <strong>getCreateDatabaseSQL</strong>(mixed database)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 810</div>
+<h3 id="getCreateForeignKeySQL()">getCreateForeignKeySQL</h3>
+<code class="signature">public  string <strong>getCreateForeignKeySQL</strong>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey, string|Table table)</code>
+<div class="details">
+<p>Create a new foreign key</p><dl>
+<dt>Parameters:</dt>
+<dd>foreignKey - ForeignKey instance</dd>
+<dd>table - name of the table on which the foreign key is to be created</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 761</div>
+<h3 id="getCreateIndexSQL()">getCreateIndexSQL</h3>
+<code class="signature">public  string <strong>getCreateIndexSQL</strong>(<a href="../../../doctrine/dbal/schema/index.html">Index</a> index, string|Table table)</code>
+<div class="details">
+<p>Gets the SQL to create an index on a table on this platform.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>table - name of the table on which the index is to be created</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 702</div>
+<h3 id="getCreateSequenceSQL()">getCreateSequenceSQL</h3>
+<code class="signature">public  void <strong>getCreateSequenceSQL</strong>(\Doctrine\DBAL\Schema\Sequence sequence)</code>
+<div class="details">
+<p>Gets the SQL to create a sequence on this platform.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../../doctrine/dbal/dbalexception.html">DBALException</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 580</div>
+<h3 id="getCreateTableSQL()">getCreateTableSQL</h3>
+<code class="signature">public  array <strong>getCreateTableSQL</strong>(string table, int createFlags)</code>
+<div class="details">
+<p>Gets the SQL statement(s) to create a table with the specified name, columns and constraints
+on this platform.</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of the table.</dd>
+<dd></dd>
+<dt>Returns:</dt>
+<dd>The sequence of SQL statements.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 691</div>
+<h3 id="getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL</h3>
+<code class="signature">public  void <strong>getCreateTemporaryTableSnippetSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1512</div>
+<h3 id="getCreateViewSQL()">getCreateViewSQL</h3>
+<code class="signature">public  void <strong>getCreateViewSQL</strong>(mixed name, mixed sql)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1415</div>
+<h3 id="getCurrentDateSQL()">getCurrentDateSQL</h3>
+<code class="signature">public  string <strong>getCurrentDateSQL</strong>()</code>
+<div class="details">
+<p>Gets the SQL specific for the platform to get the current date.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1425</div>
+<h3 id="getCurrentTimeSQL()">getCurrentTimeSQL</h3>
+<code class="signature">public  string <strong>getCurrentTimeSQL</strong>()</code>
+<div class="details">
+<p>Gets the SQL specific for the platform to get the current time.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1435</div>
+<h3 id="getCurrentTimestampSQL()">getCurrentTimestampSQL</h3>
+<code class="signature">public  string <strong>getCurrentTimestampSQL</strong>()</code>
+<div class="details">
+<p>Gets the SQL specific for the platform to get the current timestamp</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1136</div>
+<h3 id="getCustomTypeDeclarationSQL()">getCustomTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getCustomTypeDeclarationSQL</strong>(mixed columnDef)</code>
+<div class="details">
+<p>getCustomTypeDeclarationSql
+Obtail SQL code portion needed to create a custom column,
+e.g. when a field has the "columnDefinition" keyword.
+Only "AUTOINCREMENT" and "PRIMARY KEY" are added if appropriate.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1737</div>
+<h3 id="getDateFormatString()">getDateFormatString</h3>
+<code class="signature">public  string <strong>getDateFormatString</strong>()</code>
+<div class="details">
+<p>Gets the format string, as accepted by the date() function, that describes
+the format of a stored date value of this platform.</p><dl>
+<dt>Returns:</dt>
+<dd>The format string.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1726</div>
+<h3 id="getDateTimeFormatString()">getDateTimeFormatString</h3>
+<code class="signature">public  string <strong>getDateTimeFormatString</strong>()</code>
+<div class="details">
+<p>Gets the format string, as accepted by the date() function, that describes
+the format of a stored datetime value of this platform.</p><dl>
+<dt>Returns:</dt>
+<dd>The format string.</dd>
+<dt>Todo:</dt>
+<dd>We need to get the specific format for each dbms and override this function for each platform</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1554</div>
+<h3 id="getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL to be used to create datetime fields in 
+statements like CREATE TABLE</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1566</div>
+<h3 id="getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL to be used to create date fields in statements
+like CREATE TABLE.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 982</div>
+<h3 id="getDecimalTypeDeclarationSQL()">getDecimalTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDecimalTypeDeclarationSQL</strong>(array columnDef)</code>
+<div class="details">
+<p>Gets the SQL snippet that declares a floating point column of arbitrary precision.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1589</div>
+<h3 id="getDefaultTransactionIsolationLevel()">getDefaultTransactionIsolationLevel</h3>
+<code class="signature">public  integer <strong>getDefaultTransactionIsolationLevel</strong>()</code>
+<div class="details">
+<p>Gets the default transaction isolation level of the platform.</p><dl>
+<dt>Returns:</dt>
+<dd>The default isolation level.</dd>
+<dt>See Also:</dt>
+<dd>constants.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1039</div>
+<h3 id="getDefaultValueDeclarationSQL()">getDefaultValueDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDefaultValueDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to set a default value
+declaration to be used in statements like CREATE TABLE.</p><dl>
+<dt>Parameters:</dt>
+<dd>field - field definition array</dd>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion needed to set a default value</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 541</div>
+<h3 id="getDropConstraintSQL()">getDropConstraintSQL</h3>
+<code class="signature">public  string <strong>getDropConstraintSQL</strong>(\Doctrine\DBAL\Schema\Constraint constraint, string|Table table)</code>
+<div class="details">
+<p>Get drop constraint sql</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 496</div>
+<h3 id="getDropDatabaseSQL()">getDropDatabaseSQL</h3>
+<code class="signature">public  void <strong>getDropDatabaseSQL</strong>(mixed database)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 559</div>
+<h3 id="getDropForeignKeySQL()">getDropForeignKeySQL</h3>
+<code class="signature">public  string <strong>getDropForeignKeySQL</strong>(ForeignKeyConstraint|string foreignKey, Table|string table)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 523</div>
+<h3 id="getDropIndexSQL()">getDropIndexSQL</h3>
+<code class="signature">public  string <strong>getDropIndexSQL</strong>(mixed index, string|Table table, Index|string name)</code>
+<div class="details">
+<p>Drop index from a table</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1522</div>
+<h3 id="getDropSequenceSQL()">getDropSequenceSQL</h3>
+<code class="signature">public  void <strong>getDropSequenceSQL</strong>(mixed sequence)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 507</div>
+<h3 id="getDropTableSQL()">getDropTableSQL</h3>
+<code class="signature">public  string <strong>getDropTableSQL</strong>(Table|string table)</code>
+<div class="details">
+<p>Drop a Table</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1517</div>
+<h3 id="getDropViewSQL()">getDropViewSQL</h3>
+<code class="signature">public  void <strong>getDropViewSQL</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1827</div>
+<h3 id="getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</h3>
+<code class="signature">public  string <strong>getEmptyIdentityInsertSQL</strong>(string tableName, string identifierColumnName)</code>
+<div class="details">
+<p>Get the insert sql for an empty insert statement</p><dl>
+<dt>Returns:</dt>
+<dd>$sql</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 491</div>
+<h3 id="getForUpdateSql()">getForUpdateSql</h3>
+<code class="signature">public  void <strong>getForUpdateSql</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1289</div>
+<h3 id="getForeignKeyBaseDeclarationSQL()">getForeignKeyBaseDeclarationSQL</h3>
+<code class="signature">public  string <strong>getForeignKeyBaseDeclarationSQL</strong>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to set the FOREIGN KEY constraint
+of a field declaration to be used in statements like CREATE TABLE.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1231</div>
+<h3 id="getForeignKeyDeclarationSQL()">getForeignKeyDeclarationSQL</h3>
+<code class="signature">public  string <strong>getForeignKeyDeclarationSQL</strong>(mixed foreignKey, array definition)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to set the FOREIGN KEY constraint
+of a field declaration to be used in statements like CREATE TABLE.</p><dl>
+<dt>Parameters:</dt>
+<dd>definition - an associative array with the following structure: name optional constraint name local the local field(s) foreign the foreign reference field(s) foreignTable the name of the foreign table onDelete referential delete action onUpdate referential update action deferred deferred constraint checking The onDelete and onUpdate keys accept the following values: CASCADE: Delete or update the row from the parent table and automatically delete or update the matching rows in the child table. Both ON DELETE CASCADE and ON UPDATE CASCADE are supported. Between two tables, you should not define several ON UPDATE CASCADE clauses that act on the same column in the parent table or in the child table. SET NULL: Delete or update the row from the parent table and set the foreign key column or columns in the child table to NULL. This is valid only if the foreign key columns do not have the NOT NULL qualifier specified. Both ON DELETE SET NULL and ON UPDATE SET NULL clauses are supported. NO ACTION: In standard SQL, NO ACTION means no action in the sense that an attempt to delete or update a primary key value is not allowed to proceed if there is a related foreign key value in the referenced table. RESTRICT: Rejects the delete or update operation for the parent table. NO ACTION and RESTRICT are the same as omitting the ON DELETE or ON UPDATE clause. SET DEFAULT</dd>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion needed to set the FOREIGN KEY constraint of a field declaration.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1266</div>
+<h3 id="getForeignKeyReferentialActionSQL()">getForeignKeyReferentialActionSQL</h3>
+<code class="signature">public  void <strong>getForeignKeyReferentialActionSQL</strong>(string action, string foreign)</code>
+<div class="details">
+<p>returns given referential action in uppercase if valid, otherwise throws
+an exception</p><dl>
+<dt>Throws:</dt>
+<dd>if unknown referential action given</dd>
+<dt>Parameters:</dt>
+<dd>action - foreign key referential action</dd>
+<dd>foreign - key referential action in uppercase</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 89</div>
+<h3 id="getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter</h3>
+<code class="signature">public  string <strong>getIdentifierQuoteCharacter</strong>()</code>
+<div class="details">
+<p>Gets the character used for identifier quoting.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1712</div>
+<h3 id="getIdentityColumnNullInsertSQL()">getIdentityColumnNullInsertSQL</h3>
+<code class="signature">public  void <strong>getIdentityColumnNullInsertSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 416</div>
+<h3 id="getInExpression()">getInExpression</h3>
+<code class="signature">public  string <strong>getInExpression</strong>(string column, string|array(string) values)</code>
+<div class="details">
+<p>Returns the SQL to check if a value is one in a set of
+given values.</p><p>in() accepts an arbitrary number of parameters. The first parameter
+must always specify the value that should be matched against. Successive
+must contain a logical expression or an array with logical expressions.
+These expressions will be matched against the first parameter.</p><dl>
+<dt>Parameters:</dt>
+<dd>column - the value that should be matched against</dd>
+<dd>values - that will be matched against $column</dd>
+<dt>Returns:</dt>
+<dd>logical expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1111</div>
+<h3 id="getIndexDeclarationSQL()">getIndexDeclarationSQL</h3>
+<code class="signature">public  string <strong>getIndexDeclarationSQL</strong>(string name, <a href="../../../doctrine/dbal/schema/index.html">Index</a> index)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to set an index
+declaration to be used in statements like CREATE TABLE.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the index</dd>
+<dd>index - index definition</dd>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion needed to set an index</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1148</div>
+<h3 id="getIndexFieldDeclarationListSQL()">getIndexFieldDeclarationListSQL</h3>
+<code class="signature">public  string <strong>getIndexFieldDeclarationListSQL</strong>(mixed fields)</code>
+<div class="details">
+<p>getIndexFieldDeclarationList
+Obtain DBMS specific SQL code portion needed to set an index
+declaration to be used in statements like CREATE TABLE.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1006</div>
+<h3 id="getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</h3>
+<code class="signature">public abstract  string <strong>getIntegerTypeDeclarationSQL</strong>(array columnDef)</code>
+<div class="details">
+<p>Gets the SQL snippet that declares a 4 byte integer column.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 446</div>
+<h3 id="getIsNotNullExpression()">getIsNotNullExpression</h3>
+<code class="signature">public  string <strong>getIsNotNullExpression</strong>(string expression)</code>
+<div class="details">
+<p>Returns SQL that checks if a expression is not null.</p><dl>
+<dt>Parameters:</dt>
+<dd>expression - the expression that should be compared to null</dd>
+<dt>Returns:</dt>
+<dd>logical expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 435</div>
+<h3 id="getIsNullExpression()">getIsNullExpression</h3>
+<code class="signature">public  string <strong>getIsNullExpression</strong>(string expression)</code>
+<div class="details">
+<p>Returns SQL that checks if a expression is null.</p><dl>
+<dt>Parameters:</dt>
+<dd>expression - the expression that should be compared to null</dd>
+<dt>Returns:</dt>
+<dd>logical expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 223</div>
+<h3 id="getLengthExpression()">getLengthExpression</h3>
+<code class="signature">public  string <strong>getLengthExpression</strong>(mixed column, string expression1, string expression2)</code>
+<div class="details">
+<p>Returns the length of a text field.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1461</div>
+<h3 id="getListDatabasesSQL()">getListDatabasesSQL</h3>
+<code class="signature">public  void <strong>getListDatabasesSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1466</div>
+<h3 id="getListSequencesSQL()">getListSequencesSQL</h3>
+<code class="signature">public  void <strong>getListSequencesSQL</strong>(mixed database)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1476</div>
+<h3 id="getListTableColumnsSQL()">getListTableColumnsSQL</h3>
+<code class="signature">public  void <strong>getListTableColumnsSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1471</div>
+<h3 id="getListTableConstraintsSQL()">getListTableConstraintsSQL</h3>
+<code class="signature">public  void <strong>getListTableConstraintsSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1507</div>
+<h3 id="getListTableForeignKeysSQL()">getListTableForeignKeysSQL</h3>
+<code class="signature">public  void <strong>getListTableForeignKeysSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1502</div>
+<h3 id="getListTableIndexesSQL()">getListTableIndexesSQL</h3>
+<code class="signature">public  void <strong>getListTableIndexesSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1481</div>
+<h3 id="getListTablesSQL()">getListTablesSQL</h3>
+<code class="signature">public  void <strong>getListTablesSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1486</div>
+<h3 id="getListUsersSQL()">getListUsersSQL</h3>
+<code class="signature">public  void <strong>getListUsersSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1497</div>
+<h3 id="getListViewsSQL()">getListViewsSQL</h3>
+<code class="signature">public  string <strong>getListViewsSQL</strong>(string database)</code>
+<div class="details">
+<p>Get the SQL to list all views of a database or user.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 335</div>
+<h3 id="getLocateExpression()">getLocateExpression</h3>
+<code class="signature">public  integer <strong>getLocateExpression</strong>(string str, string substr, mixed startPos, int pos)</code>
+<div class="details">
+<p>returns the position of the first occurrence of substring $substr in string $str</p><dl>
+<dt>Parameters:</dt>
+<dd>substr - literal string to find</dd>
+<dd>str - literal string</dd>
+<dd>pos - position to start at, beginning of string by default</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 322</div>
+<h3 id="getLowerExpression()">getLowerExpression</h3>
+<code class="signature">public  string <strong>getLowerExpression</strong>(string str)</code>
+<div class="details">
+<p>lower
+Returns the string $str with all characters changed to
+lowercase according to the current character set mapping.</p><dl>
+<dt>Parameters:</dt>
+<dd>str - literal string or column name</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 296</div>
+<h3 id="getLtrimExpression()">getLtrimExpression</h3>
+<code class="signature">public  string <strong>getLtrimExpression</strong>(string str)</code>
+<div class="details">
+<p>ltrim
+returns the string $str with leading space characters removed</p><dl>
+<dt>Parameters:</dt>
+<dd>str - literal string or column name</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 175</div>
+<h3 id="getMaxExpression()">getMaxExpression</h3>
+<code class="signature">public  string <strong>getMaxExpression</strong>(string column)</code>
+<div class="details">
+<p>Returns the highest value of a column</p><dl>
+<dt>Parameters:</dt>
+<dd>column - the column to use</dd>
+<dt>Returns:</dt>
+<dd>generated sql including a MAX aggregate function</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1815</div>
+<h3 id="getMaxIdentifierLength()">getMaxIdentifierLength</h3>
+<code class="signature">public  int <strong>getMaxIdentifierLength</strong>()</code>
+<div class="details">
+<p>Maximum length of any given databse identifier, like tables or column names.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 211</div>
+<h3 id="getMd5Expression()">getMd5Expression</h3>
+<code class="signature">public  string <strong>getMd5Expression</strong>(mixed column)</code>
+<div class="details">
+<p>Returns the md5 sum of a field.</p><p>Note: Not SQL92, but common functionality</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 186</div>
+<h3 id="getMinExpression()">getMinExpression</h3>
+<code class="signature">public  string <strong>getMinExpression</strong>(string column)</code>
+<div class="details">
+<p>Returns the lowest value of a column</p><dl>
+<dt>Parameters:</dt>
+<dd>column - the column to use</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 248</div>
+<h3 id="getModExpression()">getModExpression</h3>
+<code class="signature">public  string <strong>getModExpression</strong>(string expression1, string expression2)</code>
+<div class="details">
+<p>Returns the remainder of the division operation
+$expression1 / $expression2.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1785</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public abstract  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of the platform.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 398</div>
+<h3 id="getNotExpression()">getNotExpression</h3>
+<code class="signature">public  string <strong>getNotExpression</strong>(mixed expression)</code>
+<div class="details">
+<p>Returns the SQL for a logical not.</p><p>Example:
+<code>
+$q = new Doctrine_Query();
+$e = $q->expr;
+$q->select('*')->from('table')
+->where($e->eq('id', $e->not('null'));
+</code></p><dl>
+<dt>Returns:</dt>
+<dd>a logical expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 345</div>
+<h3 id="getNowExpression()">getNowExpression</h3>
+<code class="signature">public  string <strong>getNowExpression</strong>()</code>
+<div class="details">
+<p>Returns the current system date.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 481</div>
+<h3 id="getPiExpression()">getPiExpression</h3>
+<code class="signature">public  void <strong>getPiExpression</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 139</div>
+<h3 id="getRegexpExpression()">getRegexpExpression</h3>
+<code class="signature">public  string <strong>getRegexpExpression</strong>()</code>
+<div class="details">
+<p>Returns the regular expression operator.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 235</div>
+<h3 id="getRoundExpression()">getRoundExpression</h3>
+<code class="signature">public  string <strong>getRoundExpression</strong>(mixed column, mixed decimals, string expression1, string expression2)</code>
+<div class="details">
+<p>Rounds a numeric field to the number of decimals specified.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 284</div>
+<h3 id="getRtrimExpression()">getRtrimExpression</h3>
+<code class="signature">public  string <strong>getRtrimExpression</strong>(string str)</code>
+<div class="details">
+<p>rtrim
+returns the string $str with proceeding space characters removed</p><dl>
+<dt>Parameters:</dt>
+<dd>str - literal string or column name</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1793</div>
+<h3 id="getSQLResultCasing()">getSQLResultCasing</h3>
+<code class="signature">public  string <strong>getSQLResultCasing</strong>(string column)</code>
+<div class="details">
+<p>Gets the character casing of a column in an SQL result set of this platform.</p><dl>
+<dt>Parameters:</dt>
+<dd>column - The column name for which to get the correct character casing.</dd>
+<dt>Returns:</dt>
+<dd>The column name in the character casing used in SQL result sets.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1527</div>
+<h3 id="getSequenceNextValSQL()">getSequenceNextValSQL</h3>
+<code class="signature">public  void <strong>getSequenceNextValSQL</strong>(mixed sequenceName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1405</div>
+<h3 id="getSetCharsetSQL()">getSetCharsetSQL</h3>
+<code class="signature">public  string <strong>getSetCharsetSQL</strong>(string charset)</code>
+<div class="details">
+<p>Gets the SQL statement specific for the platform to set the charset.</p><p>This function is MySQL specific and required by
+\Doctrine\DBAL\Connection::setCharset($charset)</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1542</div>
+<h3 id="getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</h3>
+<code class="signature">public  void <strong>getSetTransactionIsolationSQL</strong>(integer level)</code>
+<div class="details">
+<p>Get sql to set the transaction isolation level</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1185</div>
+<h3 id="getShowDatabasesSQL()">getShowDatabasesSQL</h3>
+<code class="signature">public  string <strong>getShowDatabasesSQL</strong>()</code>
+<div class="details">
+<p>Get sql query to show a list of database.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 476</div>
+<h3 id="getSinExpression()">getSinExpression</h3>
+<code class="signature">public  void <strong>getSinExpression</strong>(mixed value)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1022</div>
+<h3 id="getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</h3>
+<code class="signature">public abstract  string <strong>getSmallIntTypeDeclarationSQL</strong>(array columnDef)</code>
+<div class="details">
+<p>Gets the SQL snippet that declares a 2 byte integer column.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 109</div>
+<h3 id="getSqlCommentEndString()">getSqlCommentEndString</h3>
+<code class="signature">public  string <strong>getSqlCommentEndString</strong>()</code>
+<div class="details">
+<p>Gets the string portion that ends an SQL comment.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 99</div>
+<h3 id="getSqlCommentStartString()">getSqlCommentStartString</h3>
+<code class="signature">public  string <strong>getSqlCommentStartString</strong>()</code>
+<div class="details">
+<p>Gets the string portion that starts an SQL comment.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 362</div>
+<h3 id="getSubstringExpression()">getSubstringExpression</h3>
+<code class="signature">public  string <strong>getSubstringExpression</strong>(string value, integer from, integer len)</code>
+<div class="details">
+<p>return string to call a function to get a substring inside an SQL statement</p><p>Note: Not SQL92, but common functionality.</p><p>SQLite only supports the 2 parameter variant of this function</p><dl>
+<dt>Parameters:</dt>
+<dd>value - an sql string literal or column name/alias</dd>
+<dd>from - where to start the substring portion</dd>
+<dd>len - the substring portion length</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 197</div>
+<h3 id="getSumExpression()">getSumExpression</h3>
+<code class="signature">public  string <strong>getSumExpression</strong>(string column)</code>
+<div class="details">
+<p>Returns the total sum of a column</p><dl>
+<dt>Parameters:</dt>
+<dd>column - the column to use</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1175</div>
+<h3 id="getTemporaryTableSQL()">getTemporaryTableSQL</h3>
+<code class="signature">public  string <strong>getTemporaryTableSQL</strong>()</code>
+<div class="details">
+<p>A method to return the required SQL string that fits between CREATE ... TABLE
+to create the table as a temporary table.</p><p>Should be overridden in driver classes to return the correct string for the
+specific database type.</p><p>The default is to return the string "TEMPORARY" - this will result in a
+SQL error for any database that does not support temporary tables, or that
+requires a different SQL command from "CREATE TEMPORARY TABLE".</p><dl>
+<dt>Returns:</dt>
+<dd>The string required to be placed between "CREATE" and "TABLE" to generate a temporary table, if possible.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1748</div>
+<h3 id="getTimeFormatString()">getTimeFormatString</h3>
+<code class="signature">public  string <strong>getTimeFormatString</strong>()</code>
+<div class="details">
+<p>Gets the format string, as accepted by the date() function, that describes
+the format of a stored time value of this platform.</p><dl>
+<dt>Returns:</dt>
+<dd>The format string.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1578</div>
+<h3 id="getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL to be used to create time fields in statements
+like CREATE TABLE.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 261</div>
+<h3 id="getTrimExpression()">getTrimExpression</h3>
+<code class="signature">public  string <strong>getTrimExpression</strong>(string str, int pos, string char)</code>
+<div class="details">
+<p>Trim a string, leading/trailing/both and with a given char which defaults to space.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd></dd>
+<dd>char - has to be quoted already</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1842</div>
+<h3 id="getTruncateTableSQL()">getTruncateTableSQL</h3>
+<code class="signature">public  string <strong>getTruncateTableSQL</strong>(string tableName, bool cascade)</code>
+<div class="details">
+<p>Generate a Truncate Table SQL statement for a given table.</p><p>Cascade is not supported on many platforms but would optionally cascade the truncate by
+following the foreign keys.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1092</div>
+<h3 id="getUniqueConstraintDeclarationSQL()">getUniqueConstraintDeclarationSQL</h3>
+<code class="signature">public  string <strong>getUniqueConstraintDeclarationSQL</strong>(string name, <a href="../../../doctrine/dbal/schema/index.html">Index</a> index)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to set a unique
+constraint declaration to be used in statements like CREATE TABLE.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the unique constraint</dd>
+<dd>index - index definition</dd>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion needed to set a constraint</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1322</div>
+<h3 id="getUniqueFieldDeclarationSQL()">getUniqueFieldDeclarationSQL</h3>
+<code class="signature">public  string <strong>getUniqueFieldDeclarationSQL</strong>()</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to set the UNIQUE constraint
+of a field declaration to be used in statements like CREATE TABLE.</p><dl>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion needed to set the UNIQUE constraint of a field declaration.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 309</div>
+<h3 id="getUpperExpression()">getUpperExpression</h3>
+<code class="signature">public  string <strong>getUpperExpression</strong>(string str)</code>
+<div class="details">
+<p>upper
+Returns the string $str with all characters changed to
+uppercase according to the current character set mapping.</p><dl>
+<dt>Parameters:</dt>
+<dd>str - literal string or column name</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 119</div>
+<h3 id="getVarcharMaxLength()">getVarcharMaxLength</h3>
+<code class="signature">public  integer <strong>getVarcharMaxLength</strong>()</code>
+<div class="details">
+<p>Gets the maximum length of a varchar field.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1771</div>
+<h3 id="getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</h3>
+<code class="signature">public abstract  void <strong>getVarcharTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p>Gets the SQL snippet used to declare a VARCHAR column type.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 129</div>
+<h3 id="getWildcards()">getWildcards</h3>
+<code class="signature">public  array <strong>getWildcards</strong>()</code>
+<div class="details">
+<p>Gets all SQL wildcard characters of the platform.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1753</div>
+<h3 id="modifyLimitQuery()">modifyLimitQuery</h3>
+<code class="signature">public  void <strong>modifyLimitQuery</strong>(mixed query, mixed limit, mixed offset)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1370</div>
+<h3 id="prefersIdentityColumns()">prefersIdentityColumns</h3>
+<code class="signature">public  boolean <strong>prefersIdentityColumns</strong>()</code>
+<div class="details">
+<p>Whether the platform prefers identity columns (eg. autoincrement) for ID generation.
+Subclasses should override this method to return TRUE if they prefer identity columns.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1359</div>
+<h3 id="prefersSequences()">prefersSequences</h3>
+<code class="signature">public  boolean <strong>prefersSequences</strong>()</code>
+<div class="details">
+<p>Whether the platform prefers sequences for ID generation.
+Subclasses should override this method to return TRUE if they prefer sequences.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 796</div>
+<h3 id="quoteIdentifier()">quoteIdentifier</h3>
+<code class="signature">public  string <strong>quoteIdentifier</strong>(string str)</code>
+<div class="details">
+<p>Quotes a string so that it can be safely used as a table or column name,
+even if it is a reserved word of the platform.</p><p>NOTE: Just because you CAN use quoted identifiers doesn't mean
+you SHOULD use them.  In general, they end up causing way more
+problems than they solve.</p><dl>
+<dt>Parameters:</dt>
+<dd>str - identifier name to be quoted</dd>
+<dt>Returns:</dt>
+<dd>quoted identifier string</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1628</div>
+<h3 id="supportsAlterTable()">supportsAlterTable</h3>
+<code class="signature">public  void <strong>supportsAlterTable</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1668</div>
+<h3 id="supportsForeignKeyConstraints()">supportsForeignKeyConstraints</h3>
+<code class="signature">public  boolean <strong>supportsForeignKeyConstraints</strong>()</code>
+<div class="details">
+<p>Does the platform supports foreign key constraints?</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1678</div>
+<h3 id="supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate</h3>
+<code class="signature">public  bool <strong>supportsForeignKeyOnUpdate</strong>()</code>
+<div class="details">
+<p>Does this platform supports onUpdate in foreign key constraints?</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1707</div>
+<h3 id="supportsGettingAffectedRows()">supportsGettingAffectedRows</h3>
+<code class="signature">public  boolean <strong>supportsGettingAffectedRows</strong>()</code>
+<div class="details">
+<p>Whether the platform supports getting the affected rows of a recent
+update/delete type query.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1613</div>
+<h3 id="supportsIdentityColumns()">supportsIdentityColumns</h3>
+<code class="signature">public  boolean <strong>supportsIdentityColumns</strong>()</code>
+<div class="details">
+<p>Whether the platform supports identity columns.
+Identity columns are columns that recieve an auto-generated value from the
+database on insert of a row.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1623</div>
+<h3 id="supportsIndexes()">supportsIndexes</h3>
+<code class="signature">public  boolean <strong>supportsIndexes</strong>()</code>
+<div class="details">
+<p>Whether the platform supports indexes.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1658</div>
+<h3 id="supportsPrimaryConstraints()">supportsPrimaryConstraints</h3>
+<code class="signature">public  boolean <strong>supportsPrimaryConstraints</strong>()</code>
+<div class="details">
+<p>Whether the platform supports primary key constraints.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1648</div>
+<h3 id="supportsSavepoints()">supportsSavepoints</h3>
+<code class="signature">public  boolean <strong>supportsSavepoints</strong>()</code>
+<div class="details">
+<p>Whether the platform supports savepoints.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1688</div>
+<h3 id="supportsSchemas()">supportsSchemas</h3>
+<code class="signature">public  boolean <strong>supportsSchemas</strong>()</code>
+<div class="details">
+<p>Whether the platform supports database schemas.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1601</div>
+<h3 id="supportsSequences()">supportsSequences</h3>
+<code class="signature">public  boolean <strong>supportsSequences</strong>()</code>
+<div class="details">
+<p>Whether the platform supports sequences.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/AbstractPlatform.php at line 1638</div>
+<h3 id="supportsTransactions()">supportsTransactions</h3>
+<code class="signature">public  boolean <strong>supportsTransactions</strong>()</code>
+<div class="details">
+<p>Whether the platform supports transactions.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/abstractplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/mssqlplatform.html b/lib/api/doctrine/dbal/platforms/mssqlplatform.html
new file mode 100644
index 000000000..ace136741
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/mssqlplatform.html
@@ -0,0 +1,548 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>MsSqlPlatform (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/mssqlplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Platforms\MsSqlPlatform</div>
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 37</div>
+
+<h1>Class MsSqlPlatform</h1>
+
+<pre class="tree">Class:MsSqlPlatform - Superclass: AbstractPlatform
+<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a><br>   &lfloor;&nbsp;<strong>MsSqlPlatform</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>MsSqlPlatform</strong><br>extends <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>The MsSqlPlatform provides the behavior, features and SQL dialect of the
+MySQL database platform.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>Todo:</dt>
+<dd>Rename: MsSQLPlatform</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Platforms\AbstractPlatform</th></tr>
+<tr><td><a href="../../../doctrine/dbal/platforms/abstractplatform.html#CREATE_FOREIGNKEYS">CREATE_FOREIGNKEYS</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#CREATE_INDEXES">CREATE_INDEXES</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_BOTH">TRIM_BOTH</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_LEADING">TRIM_LEADING</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_TRAILING">TRIM_TRAILING</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_UNSPECIFIED">TRIM_UNSPECIFIED</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getAlterTableSQL()">getAlterTableSQL</a>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> diff)</p><p class="description">Gets the sql statements for altering an existing table.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>(array field)</p><p class="description">@override</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getConcatExpression()">getConcatExpression</a>(string arg1, string arg2, string values..., string arg1,)</p><p class="description">Returns string to concatenate two or more string parameters</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCreateDatabaseSQL()">getCreateDatabaseSQL</a>(string name, mixed database)</p><p class="description">create a new database</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropDatabaseSQL()">getDropDatabaseSQL</a>(string name, mixed database)</p><p class="description">drop an existing database</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</a>(mixed quotedTableName, mixed quotedIdentifierColumnName, string tableName, string identifierColumnName)</p><p class="description">Get the insert sql for an empty insert statement</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getGuidExpression()">getGuidExpression</a>()</p><p class="description">Returns global unique identifier</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTablesSQL()">getListTablesSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Get the platform name for this instance</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getNowExpression()">getNowExpression</a>(mixed type)</p><p class="description">Return string to call a variable with the current timestamp inside an SQL statement
+There are three special variables for current date and time:
+- CURRENT_TIMESTAMP (date and time, TIMESTAMP type)
+- CURRENT_DATE (date, DATE type)
+- CURRENT_TIME (time, TIME type)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getRegexpExpression()">getRegexpExpression</a>()</p><p class="description">Returns the regular expression operator.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>(integer level)</p><p class="description">Get sql to set the transaction isolation level</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getShowDatabasesSQL()">getShowDatabasesSQL</a>()</p><p class="description">Get sql query to show a list of database.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSubstringExpression()">getSubstringExpression</a>(string value, mixed position, mixed length, integer from, integer len)</p><p class="description">return string to call a function to get a substring inside an SQL statement</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTruncateTableSQL()">getTruncateTableSQL</a>(string tableName, bool cascade)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>(array field)</p><p class="description">Gets the SQL snippet used to declare a VARCHAR column type.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#modifyLimitQuery()">modifyLimitQuery</a>(string query, mixed limit, mixed offset)</p><p class="description">Adds an adapter-specific LIMIT clause to the SELECT statement.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#prefersIdentityColumns()">prefersIdentityColumns</a>()</p><p class="description">Whether the platform prefers identity columns for ID generation.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsIdentityColumns()">supportsIdentityColumns</a>()</p><p class="description">Whether the platform supports identity columns.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsSavepoints()">supportsSavepoints</a>()</p><p class="description">Whether the platform supports savepoints. </p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#writeLimitClause()">writeLimitClause</a>(string query, mixed limit, mixed offset)</p><p class="description">Adds an adapter-specific LIMIT clause to the SELECT statement.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Platforms\AbstractPlatform</th></tr>
+<tr><td><a href="../../../doctrine/dbal/platforms/abstractplatform.html#convertBooleans()">convertBooleans</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#fixSchemaElementName()">fixSchemaElementName</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAcosExpression()">getAcosExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAlterTableSQL()">getAlterTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAvgExpression()">getAvgExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBetweenExpression()">getBetweenExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCheckDeclarationSQL()">getCheckDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnCharsetDeclarationSQL()">getColumnCharsetDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnCollationDeclarationSQL()">getColumnCollationDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationListSQL()">getColumnDeclarationListSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationSQL()">getColumnDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getConcatExpression()">getConcatExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCosExpression()">getCosExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCountExpression()">getCountExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateConstraintSQL()">getCreateConstraintSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateDatabaseSQL()">getCreateDatabaseSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateForeignKeySQL()">getCreateForeignKeySQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateIndexSQL()">getCreateIndexSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateSequenceSQL()">getCreateSequenceSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateTableSQL()">getCreateTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateViewSQL()">getCreateViewSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentDateSQL()">getCurrentDateSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentTimeSQL()">getCurrentTimeSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentTimestampSQL()">getCurrentTimestampSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCustomTypeDeclarationSQL()">getCustomTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateFormatString()">getDateFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTimeFormatString()">getDateTimeFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDecimalTypeDeclarationSQL()">getDecimalTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDefaultTransactionIsolationLevel()">getDefaultTransactionIsolationLevel</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDefaultValueDeclarationSQL()">getDefaultValueDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropConstraintSQL()">getDropConstraintSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropDatabaseSQL()">getDropDatabaseSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropForeignKeySQL()">getDropForeignKeySQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropIndexSQL()">getDropIndexSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropSequenceSQL()">getDropSequenceSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropTableSQL()">getDropTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropViewSQL()">getDropViewSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForUpdateSql()">getForUpdateSql</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyBaseDeclarationSQL()">getForeignKeyBaseDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyDeclarationSQL()">getForeignKeyDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyReferentialActionSQL()">getForeignKeyReferentialActionSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIdentityColumnNullInsertSQL()">getIdentityColumnNullInsertSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getInExpression()">getInExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIndexDeclarationSQL()">getIndexDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIndexFieldDeclarationListSQL()">getIndexFieldDeclarationListSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIsNotNullExpression()">getIsNotNullExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIsNullExpression()">getIsNullExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLengthExpression()">getLengthExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListDatabasesSQL()">getListDatabasesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListSequencesSQL()">getListSequencesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableColumnsSQL()">getListTableColumnsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableConstraintsSQL()">getListTableConstraintsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableForeignKeysSQL()">getListTableForeignKeysSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableIndexesSQL()">getListTableIndexesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTablesSQL()">getListTablesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListUsersSQL()">getListUsersSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListViewsSQL()">getListViewsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLocateExpression()">getLocateExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLowerExpression()">getLowerExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLtrimExpression()">getLtrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMaxExpression()">getMaxExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMaxIdentifierLength()">getMaxIdentifierLength</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMd5Expression()">getMd5Expression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMinExpression()">getMinExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getModExpression()">getModExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getName()">getName</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getNotExpression()">getNotExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getNowExpression()">getNowExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getPiExpression()">getPiExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRegexpExpression()">getRegexpExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRoundExpression()">getRoundExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRtrimExpression()">getRtrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSQLResultCasing()">getSQLResultCasing</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSequenceNextValSQL()">getSequenceNextValSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSetCharsetSQL()">getSetCharsetSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getShowDatabasesSQL()">getShowDatabasesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSinExpression()">getSinExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSqlCommentEndString()">getSqlCommentEndString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSqlCommentStartString()">getSqlCommentStartString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSubstringExpression()">getSubstringExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSumExpression()">getSumExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTemporaryTableSQL()">getTemporaryTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTimeFormatString()">getTimeFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTrimExpression()">getTrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTruncateTableSQL()">getTruncateTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUniqueConstraintDeclarationSQL()">getUniqueConstraintDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUniqueFieldDeclarationSQL()">getUniqueFieldDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUpperExpression()">getUpperExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getVarcharMaxLength()">getVarcharMaxLength</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getWildcards()">getWildcards</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#modifyLimitQuery()">modifyLimitQuery</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#prefersIdentityColumns()">prefersIdentityColumns</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#prefersSequences()">prefersSequences</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#quoteIdentifier()">quoteIdentifier</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsAlterTable()">supportsAlterTable</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyConstraints()">supportsForeignKeyConstraints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsGettingAffectedRows()">supportsGettingAffectedRows</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsIdentityColumns()">supportsIdentityColumns</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsIndexes()">supportsIndexes</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsPrimaryConstraints()">supportsPrimaryConstraints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSavepoints()">supportsSavepoints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSchemas()">supportsSchemas</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSequences()">supportsSequences</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsTransactions()">supportsTransactions</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 94</div>
+<h3 id="getAlterTableSQL()">getAlterTableSQL</h3>
+<code class="signature">public  array <strong>getAlterTableSQL</strong>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> diff)</code>
+<div class="details">
+<p>Gets the sql statements for altering an existing table.</p><p>The method returns an array of sql statements, since some platforms need several statements.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 287</div>
+<h3 id="getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getBigIntTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 364</div>
+<h3 id="getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getBooleanTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 318</div>
+<h3 id="getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</h3>
+<code class="signature">public  void <strong>getClobTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 184</div>
+<h3 id="getConcatExpression()">getConcatExpression</h3>
+<code class="signature">public  string <strong>getConcatExpression</strong>(string arg1, string arg2, string values..., string arg1,)</code>
+<div class="details">
+<p>Returns string to concatenate two or more string parameters</p><dl>
+<dt>Returns:</dt>
+<dd>to concatenate two strings</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 254</div>
+<h3 id="getCreateDatabaseSQL()">getCreateDatabaseSQL</h3>
+<code class="signature">public  string <strong>getCreateDatabaseSQL</strong>(string name, mixed database)</code>
+<div class="details">
+<p>create a new database</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the database that should be created</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 340</div>
+<h3 id="getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 348</div>
+<h3 id="getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 266</div>
+<h3 id="getDropDatabaseSQL()">getDropDatabaseSQL</h3>
+<code class="signature">public  string <strong>getDropDatabaseSQL</strong>(string name, mixed database)</code>
+<div class="details">
+<p>drop an existing database</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the database that should be dropped</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 474</div>
+<h3 id="getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</h3>
+<code class="signature">public  string <strong>getEmptyIdentityInsertSQL</strong>(mixed quotedTableName, mixed quotedIdentifierColumnName, string tableName, string identifierColumnName)</code>
+<div class="details">
+<p>Get the insert sql for an empty insert statement</p><dl>
+<dt>Returns:</dt>
+<dd>$sql</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 196</div>
+<h3 id="getGuidExpression()">getGuidExpression</h3>
+<code class="signature">public  string <strong>getGuidExpression</strong>()</code>
+<div class="details">
+<p>Returns global unique identifier</p><dl>
+<dt>Returns:</dt>
+<dd>to get global unique identifier</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 279</div>
+<h3 id="getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getIntegerTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 242</div>
+<h3 id="getListTablesSQL()">getListTablesSQL</h3>
+<code class="signature">public  void <strong>getListTablesSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 374</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Get the platform name for this instance</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 150</div>
+<h3 id="getNowExpression()">getNowExpression</h3>
+<code class="signature">public  string <strong>getNowExpression</strong>(mixed type)</code>
+<div class="details">
+<p>Return string to call a variable with the current timestamp inside an SQL statement
+There are three special variables for current date and time:
+- CURRENT_TIMESTAMP (date and time, TIMESTAMP type)
+- CURRENT_DATE (date, DATE type)
+- CURRENT_TIME (time, TIME type)</p><dl>
+<dt>Returns:</dt>
+<dd>to call a variable with the current timestamp</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 135</div>
+<h3 id="getRegexpExpression()">getRegexpExpression</h3>
+<code class="signature">public  string <strong>getRegexpExpression</strong>()</code>
+<div class="details">
+<p>Returns the regular expression operator.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 271</div>
+<h3 id="getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</h3>
+<code class="signature">public  void <strong>getSetTransactionIsolationSQL</strong>(integer level)</code>
+<div class="details">
+<p>Get sql to set the transaction isolation level</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 237</div>
+<h3 id="getShowDatabasesSQL()">getShowDatabasesSQL</h3>
+<code class="signature">public  string <strong>getShowDatabasesSQL</strong>()</code>
+<div class="details">
+<p>Get sql query to show a list of database.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 295</div>
+<h3 id="getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getSmallIntTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 167</div>
+<h3 id="getSubstringExpression()">getSubstringExpression</h3>
+<code class="signature">public  string <strong>getSubstringExpression</strong>(string value, mixed position, mixed length, integer from, integer len)</code>
+<div class="details">
+<p>return string to call a function to get a substring inside an SQL statement</p><dl>
+<dt>Returns:</dt>
+<dd>to call a function to get a substring</dd>
+<dt>Override.</dt>
+<dt>Parameters:</dt>
+<dd>value - an sql string literal or column name/alias</dd>
+<dd>from - where to start the substring portion</dd>
+<dd>len - the substring portion length</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 356</div>
+<h3 id="getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 482</div>
+<h3 id="getTruncateTableSQL()">getTruncateTableSQL</h3>
+<code class="signature">public  string <strong>getTruncateTableSQL</strong>(string tableName, bool cascade)</code>
+<div class="details">
+<p></p><dl>
+<dt>Inheritdoc.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 300</div>
+<h3 id="getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</h3>
+<code class="signature">public  void <strong>getVarcharTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p>Gets the SQL snippet used to declare a VARCHAR column type.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 388</div>
+<h3 id="modifyLimitQuery()">modifyLimitQuery</h3>
+<code class="signature">public  string <strong>modifyLimitQuery</strong>(string query, mixed limit, mixed offset)</code>
+<div class="details">
+<p>Adds an adapter-specific LIMIT clause to the SELECT statement.</p><dl>
+<dt>See Also:</dt>
+<dd><code><a href="http://lists.bestpractical.com/pipermail/rt-devel/2005-June/007339.html">http://lists.bestpractical.com/pipermail/rt-devel/2005-June/007339.html</a></code></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 209</div>
+<h3 id="prefersIdentityColumns()">prefersIdentityColumns</h3>
+<code class="signature">public  boolean <strong>prefersIdentityColumns</strong>()</code>
+<div class="details">
+<p>Whether the platform prefers identity columns for ID generation.
+MsSql prefers "autoincrement" identity columns since sequences can only
+be emulated with a table.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 221</div>
+<h3 id="supportsIdentityColumns()">supportsIdentityColumns</h3>
+<code class="signature">public  boolean <strong>supportsIdentityColumns</strong>()</code>
+<div class="details">
+<p>Whether the platform supports identity columns.
+MsSql supports this through AUTO_INCREMENT columns.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 232</div>
+<h3 id="supportsSavepoints()">supportsSavepoints</h3>
+<code class="signature">public  boolean <strong>supportsSavepoints</strong>()</code>
+<div class="details">
+<p>Whether the platform supports savepoints. MsSql does not.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MsSqlPlatform.php at line 50</div>
+<h3 id="writeLimitClause()">writeLimitClause</h3>
+<code class="signature">public  string <strong>writeLimitClause</strong>(string query, mixed limit, mixed offset)</code>
+<div class="details">
+<p>Adds an adapter-specific LIMIT clause to the SELECT statement.
+[ borrowed from Zend Framework ]</p><dl>
+<dt>See Also:</dt>
+<dd><code><a href="http://lists.bestpractical.com/pipermail/rt-devel/2005-June/007339.html">http://lists.bestpractical.com/pipermail/rt-devel/2005-June/007339.html</a></code></dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/mssqlplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/mysqlplatform.html b/lib/api/doctrine/dbal/platforms/mysqlplatform.html
new file mode 100644
index 000000000..fc21953c7
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/mysqlplatform.html
@@ -0,0 +1,661 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>MySqlPlatform (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/mysqlplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Platforms\MySqlPlatform</div>
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 37</div>
+
+<h1>Class MySqlPlatform</h1>
+
+<pre class="tree">Class:MySqlPlatform - Superclass: AbstractPlatform
+<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a><br>   &lfloor;&nbsp;<strong>MySqlPlatform</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>MySqlPlatform</strong><br>extends <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>The MySqlPlatform provides the behavior, features and SQL dialect of the
+MySQL database platform. This platform represents a MySQL 5.0 or greater platform that
+uses the InnoDB storage engine.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>Todo:</dt>
+<dd>Rename: MySQLPlatform</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Platforms\AbstractPlatform</th></tr>
+<tr><td><a href="../../../doctrine/dbal/platforms/abstractplatform.html#CREATE_FOREIGNKEYS">CREATE_FOREIGNKEYS</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#CREATE_INDEXES">CREATE_INDEXES</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_BOTH">TRIM_BOTH</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_LEADING">TRIM_LEADING</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_TRAILING">TRIM_TRAILING</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_UNSPECIFIED">TRIM_UNSPECIFIED</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</a>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey)</p><p class="description">Return the FOREIGN KEY query section dealing with non-standard options
+as MATCH, INITIALLY DEFERRED, ON UPDATE, ...</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#getAlterTableSQL()">getAlterTableSQL</a>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> diff, string name, array changes, boolean check)</p><p class="description">Gets the SQL to alter an existing table.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description">@override</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>(array field)</p><p class="description">@override</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCollationFieldDeclaration()">getCollationFieldDeclaration</a>(string collation)</p><p class="description">Obtain DBMS specific SQL code portion needed to set the COLLATION
+of a field declaration to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getConcatExpression()">getConcatExpression</a>(string|array(string) strings, string arg1,)</p><p class="description">Returns a series of strings concatinatedconcat() accepts an arbitrary number of parameters. </p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCreateDatabaseSQL()">getCreateDatabaseSQL</a>(string name, mixed database)</p><p class="description">create a new database</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateViewSQL()">getCreateViewSQL</a>(mixed name, mixed sql)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropDatabaseSQL()">getDropDatabaseSQL</a>(string name, mixed database)</p><p class="description">drop an existing database</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropIndexSQL()">getDropIndexSQL</a>(<a href="../../../doctrine/dbal/schema/index.html">Index</a> index, string|Table table, Index|string name)</p><p class="description">Gets the SQL to drop an index of a table.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropTableSQL()">getDropTableSQL</a>(string table)</p><p class="description">Gets the SQL to drop a table.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDropViewSQL()">getDropViewSQL</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getGuidExpression()">getGuidExpression</a>()</p><p class="description">Returns global unique identifier</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter</a>()</p><p class="description">Gets the character used for identifier quoting.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>(string field, string name, array columnDef)</p><p class="description">Obtain DBMS specific SQL code portion needed to declare an integer type
+field to be used in statements like CREATE TABLE.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListDatabasesSQL()">getListDatabasesSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableColumnsSQL()">getListTableColumnsSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableConstraintsSQL()">getListTableConstraintsSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableForeignKeysSQL()">getListTableForeignKeysSQL</a>(mixed table, mixed database)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableIndexesSQL()">getListTableIndexesSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTablesSQL()">getListTablesSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getListViewsSQL()">getListViewsSQL</a>(string database)</p><p class="description">Get the SQL to list all views of a database or user.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getLocateExpression()">getLocateExpression</a>(string str, string substr, mixed startPos, int pos)</p><p class="description">returns the position of the first occurrence of substring $substr in string $str</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Get the platform name for this instance.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getRegexpExpression()">getRegexpExpression</a>()</p><p class="description">Returns the regular expression operator.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>(integer level)</p><p class="description">Get sql to set the transaction isolation level</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getShowDatabasesSQL()">getShowDatabasesSQL</a>()</p><p class="description">Get sql query to show a list of database.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description">@override</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>(array field)</p><p class="description">Gets the SQL snippet used to declare a VARCHAR column on the MySql platform.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#prefersIdentityColumns()">prefersIdentityColumns</a>()</p><p class="description">Whether the platform prefers identity columns for ID generation.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsIdentityColumns()">supportsIdentityColumns</a>()</p><p class="description">Whether the platform supports identity columns.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsSavepoints()">supportsSavepoints</a>()</p><p class="description">Whether the platform supports savepoints. </p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Platforms\AbstractPlatform</th></tr>
+<tr><td><a href="../../../doctrine/dbal/platforms/abstractplatform.html#convertBooleans()">convertBooleans</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#fixSchemaElementName()">fixSchemaElementName</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAcosExpression()">getAcosExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAlterTableSQL()">getAlterTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAvgExpression()">getAvgExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBetweenExpression()">getBetweenExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCheckDeclarationSQL()">getCheckDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnCharsetDeclarationSQL()">getColumnCharsetDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnCollationDeclarationSQL()">getColumnCollationDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationListSQL()">getColumnDeclarationListSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationSQL()">getColumnDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getConcatExpression()">getConcatExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCosExpression()">getCosExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCountExpression()">getCountExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateConstraintSQL()">getCreateConstraintSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateDatabaseSQL()">getCreateDatabaseSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateForeignKeySQL()">getCreateForeignKeySQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateIndexSQL()">getCreateIndexSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateSequenceSQL()">getCreateSequenceSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateTableSQL()">getCreateTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateViewSQL()">getCreateViewSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentDateSQL()">getCurrentDateSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentTimeSQL()">getCurrentTimeSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentTimestampSQL()">getCurrentTimestampSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCustomTypeDeclarationSQL()">getCustomTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateFormatString()">getDateFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTimeFormatString()">getDateTimeFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDecimalTypeDeclarationSQL()">getDecimalTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDefaultTransactionIsolationLevel()">getDefaultTransactionIsolationLevel</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDefaultValueDeclarationSQL()">getDefaultValueDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropConstraintSQL()">getDropConstraintSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropDatabaseSQL()">getDropDatabaseSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropForeignKeySQL()">getDropForeignKeySQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropIndexSQL()">getDropIndexSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropSequenceSQL()">getDropSequenceSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropTableSQL()">getDropTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropViewSQL()">getDropViewSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForUpdateSql()">getForUpdateSql</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyBaseDeclarationSQL()">getForeignKeyBaseDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyDeclarationSQL()">getForeignKeyDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyReferentialActionSQL()">getForeignKeyReferentialActionSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIdentityColumnNullInsertSQL()">getIdentityColumnNullInsertSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getInExpression()">getInExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIndexDeclarationSQL()">getIndexDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIndexFieldDeclarationListSQL()">getIndexFieldDeclarationListSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIsNotNullExpression()">getIsNotNullExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIsNullExpression()">getIsNullExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLengthExpression()">getLengthExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListDatabasesSQL()">getListDatabasesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListSequencesSQL()">getListSequencesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableColumnsSQL()">getListTableColumnsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableConstraintsSQL()">getListTableConstraintsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableForeignKeysSQL()">getListTableForeignKeysSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableIndexesSQL()">getListTableIndexesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTablesSQL()">getListTablesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListUsersSQL()">getListUsersSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListViewsSQL()">getListViewsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLocateExpression()">getLocateExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLowerExpression()">getLowerExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLtrimExpression()">getLtrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMaxExpression()">getMaxExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMaxIdentifierLength()">getMaxIdentifierLength</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMd5Expression()">getMd5Expression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMinExpression()">getMinExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getModExpression()">getModExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getName()">getName</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getNotExpression()">getNotExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getNowExpression()">getNowExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getPiExpression()">getPiExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRegexpExpression()">getRegexpExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRoundExpression()">getRoundExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRtrimExpression()">getRtrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSQLResultCasing()">getSQLResultCasing</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSequenceNextValSQL()">getSequenceNextValSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSetCharsetSQL()">getSetCharsetSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getShowDatabasesSQL()">getShowDatabasesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSinExpression()">getSinExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSqlCommentEndString()">getSqlCommentEndString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSqlCommentStartString()">getSqlCommentStartString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSubstringExpression()">getSubstringExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSumExpression()">getSumExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTemporaryTableSQL()">getTemporaryTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTimeFormatString()">getTimeFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTrimExpression()">getTrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTruncateTableSQL()">getTruncateTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUniqueConstraintDeclarationSQL()">getUniqueConstraintDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUniqueFieldDeclarationSQL()">getUniqueFieldDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUpperExpression()">getUpperExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getVarcharMaxLength()">getVarcharMaxLength</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getWildcards()">getWildcards</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#modifyLimitQuery()">modifyLimitQuery</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#prefersIdentityColumns()">prefersIdentityColumns</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#prefersSequences()">prefersSequences</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#quoteIdentifier()">quoteIdentifier</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsAlterTable()">supportsAlterTable</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyConstraints()">supportsForeignKeyConstraints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsGettingAffectedRows()">supportsGettingAffectedRows</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsIdentityColumns()">supportsIdentityColumns</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsIndexes()">supportsIndexes</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsPrimaryConstraints()">supportsPrimaryConstraints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSavepoints()">supportsSavepoints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSchemas()">supportsSchemas</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSequences()">supportsSequences</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsTransactions()">supportsTransactions</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 665</div>
+<h3 id="createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys</h3>
+<code class="signature">public  bool <strong>createsExplicitIndexForForeignKeys</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 599</div>
+<h3 id="getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</h3>
+<code class="signature">public  string <strong>getAdvancedForeignKeyOptionsSQL</strong>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey)</code>
+<div class="details">
+<p>Return the FOREIGN KEY query section dealing with non-standard options
+as MATCH, INITIALLY DEFERRED, ON UPDATE, ...</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 501</div>
+<h3 id="getAlterTableSQL()">getAlterTableSQL</h3>
+<code class="signature">public  boolean <strong>getAlterTableSQL</strong>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> diff, string name, array changes, boolean check)</code>
+<div class="details">
+<p>Gets the SQL to alter an existing table.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name of the table that is intended to be changed.</dd>
+<dd>changes - Associative array that contains the details of each type of change that is intended to be performed. The types of changes that are currently supported are defined as follows: name New name for the table. add Associative array with the names of fields to be added as indexes of the array. The value of each entry of the array should be set to another associative array with the properties of the fields to be added. The properties of the fields should be the same as defined by the Metabase parser. remove Associative array with the names of fields to be removed as indexes of the array. Currently the values assigned to each entry are ignored. An empty array should be used for future compatibility. rename Associative array with the names of fields to be renamed as indexes of the array. The value of each entry of the array should be set to another associative array with the entry named name with the new field name and the entry named Declaration that is expected to contain the portion of the field declaration already in DBMS specific SQL code as it is used in the CREATE TABLE statement. change Associative array with the names of the fields to be changed as indexes of the array. Keep in mind that if it is intended to change either the name of a field and any other properties, the change array entries should have the new names of the fields as array indexes. The value of each entry of the array should be set to another associative array with the properties of the fields to that are meant to be changed as array entries. These entries should be assigned to the new values of the respective properties. The properties of the fields should be the same as defined by the Metabase parser. Example array( 'name' => 'userlist', 'add' => array( 'quota' => array( 'type' => 'integer', 'unsigned' => 1 ) ), 'remove' => array( 'file_limit' => array(), 'time_limit' => array() ), 'change' => array( 'name' => array( 'length' => '20', 'definition' => array( 'type' => 'text', 'length' => 20, ), ) ), 'rename' => array( 'sex' => array( 'name' => 'gender', 'definition' => array( 'type' => 'text', 'length' => 1, 'default' => 'M', ), ) ) )</dd>
+<dd>check - indicates whether the function should just check if the DBMS driver can perform the requested table alterations if the value is true or actually perform them otherwise.</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 568</div>
+<h3 id="getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getBigIntTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 221</div>
+<h3 id="getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getBooleanTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 175</div>
+<h3 id="getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</h3>
+<code class="signature">public  void <strong>getClobTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 234</div>
+<h3 id="getCollationFieldDeclaration()">getCollationFieldDeclaration</h3>
+<code class="signature">public  string <strong>getCollationFieldDeclaration</strong>(string collation)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to set the COLLATION
+of a field declaration to be used in statements like CREATE TABLE.</p><dl>
+<dt>Parameters:</dt>
+<dd>collation - name of the collation</dd>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion needed to set the COLLATION of a field declaration.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 98</div>
+<h3 id="getConcatExpression()">getConcatExpression</h3>
+<code class="signature">public  string <strong>getConcatExpression</strong>(string|array(string) strings, string arg1,)</code>
+<div class="details">
+<p>Returns a series of strings concatinated</p><p>concat() accepts an arbitrary number of parameters. Each parameter
+must contain an expression or an array with expressions.</p><dl>
+<dt>Parameters:</dt>
+<dd>strings - that will be concatinated.</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 297</div>
+<h3 id="getCreateDatabaseSQL()">getCreateDatabaseSQL</h3>
+<code class="signature">public  string <strong>getCreateDatabaseSQL</strong>(string name, mixed database)</code>
+<div class="details">
+<p>create a new database</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the database that should be created</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 142</div>
+<h3 id="getCreateViewSQL()">getCreateViewSQL</h3>
+<code class="signature">public  void <strong>getCreateViewSQL</strong>(mixed name, mixed sql)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 193</div>
+<h3 id="getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 205</div>
+<h3 id="getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 309</div>
+<h3 id="getDropDatabaseSQL()">getDropDatabaseSQL</h3>
+<code class="signature">public  string <strong>getDropDatabaseSQL</strong>(string name, mixed database)</code>
+<div class="details">
+<p>drop an existing database</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the database that should be dropped</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 616</div>
+<h3 id="getDropIndexSQL()">getDropIndexSQL</h3>
+<code class="signature">public  string <strong>getDropIndexSQL</strong>(<a href="../../../doctrine/dbal/schema/index.html">Index</a> index, string|Table table, Index|string name)</code>
+<div class="details">
+<p>Gets the SQL to drop an index of a table.</p><dl>
+<dt>Parameters:</dt>
+<dd>index - name of the index to be dropped</dd>
+<dd>table - name of table that should be used in method</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 639</div>
+<h3 id="getDropTableSQL()">getDropTableSQL</h3>
+<code class="signature">public  string <strong>getDropTableSQL</strong>(string table)</code>
+<div class="details">
+<p>Gets the SQL to drop a table.</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of table to drop.</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 147</div>
+<h3 id="getDropViewSQL()">getDropViewSQL</h3>
+<code class="signature">public  void <strong>getDropViewSQL</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 67</div>
+<h3 id="getGuidExpression()">getGuidExpression</h3>
+<code class="signature">public  string <strong>getGuidExpression</strong>()</code>
+<div class="details">
+<p>Returns global unique identifier</p><dl>
+<dt>Returns:</dt>
+<dd>to get global unique identifier</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 45</div>
+<h3 id="getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter</h3>
+<code class="signature">public  string <strong>getIdentifierQuoteCharacter</strong>()</code>
+<div class="details">
+<p>Gets the character used for identifier quoting.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 562</div>
+<h3 id="getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getIntegerTypeDeclarationSQL</strong>(string field, string name, array columnDef)</code>
+<div class="details">
+<p>Obtain DBMS specific SQL code portion needed to declare an integer type
+field to be used in statements like CREATE TABLE.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name the field to be declared.</dd>
+<dd>field - associative array with the name of the properties of the field being declared as array indexes. Currently, the types of supported field properties are as follows: unsigned Boolean flag that indicates whether the field should be declared as unsigned integer if possible. default Integer value to be used as default for this field. notnull Boolean flag that indicates whether this field is constrained to not be set to null.</dd>
+<dt>Returns:</dt>
+<dd>DBMS specific SQL code portion that should be used to declare the specified field.</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 104</div>
+<h3 id="getListDatabasesSQL()">getListDatabasesSQL</h3>
+<code class="signature">public  void <strong>getListDatabasesSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 285</div>
+<h3 id="getListTableColumnsSQL()">getListTableColumnsSQL</h3>
+<code class="signature">public  void <strong>getListTableColumnsSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 109</div>
+<h3 id="getListTableConstraintsSQL()">getListTableConstraintsSQL</h3>
+<code class="signature">public  void <strong>getListTableConstraintsSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 124</div>
+<h3 id="getListTableForeignKeysSQL()">getListTableForeignKeysSQL</h3>
+<code class="signature">public  void <strong>getListTableForeignKeysSQL</strong>(mixed table, mixed database)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 114</div>
+<h3 id="getListTableIndexesSQL()">getListTableIndexesSQL</h3>
+<code class="signature">public  void <strong>getListTableIndexesSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 280</div>
+<h3 id="getListTablesSQL()">getListTablesSQL</h3>
+<code class="signature">public  void <strong>getListTablesSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 119</div>
+<h3 id="getListViewsSQL()">getListViewsSQL</h3>
+<code class="signature">public  string <strong>getListViewsSQL</strong>(string database)</code>
+<div class="details">
+<p>Get the SQL to list all views of a database or user.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 80</div>
+<h3 id="getLocateExpression()">getLocateExpression</h3>
+<code class="signature">public  integer <strong>getLocateExpression</strong>(string str, string substr, mixed startPos, int pos)</code>
+<div class="details">
+<p>returns the position of the first occurrence of substring $substr in string $str</p><dl>
+<dt>Parameters:</dt>
+<dd>substr - literal string to find</dd>
+<dd>str - literal string</dd>
+<dd>pos - position to start at, beginning of string by default</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 660</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Get the platform name for this instance.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 56</div>
+<h3 id="getRegexpExpression()">getRegexpExpression</h3>
+<code class="signature">public  string <strong>getRegexpExpression</strong>()</code>
+<div class="details">
+<p>Returns the regular expression operator.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 650</div>
+<h3 id="getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</h3>
+<code class="signature">public  void <strong>getSetTransactionIsolationSQL</strong>(integer level)</code>
+<div class="details">
+<p>Get sql to set the transaction isolation level</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 275</div>
+<h3 id="getShowDatabasesSQL()">getShowDatabasesSQL</h3>
+<code class="signature">public  string <strong>getShowDatabasesSQL</strong>()</code>
+<div class="details">
+<p>Get sql query to show a list of database.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 574</div>
+<h3 id="getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getSmallIntTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 213</div>
+<h3 id="getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 157</div>
+<h3 id="getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</h3>
+<code class="signature">public  void <strong>getVarcharTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p>Gets the SQL snippet used to declare a VARCHAR column on the MySql platform.</p><dl>
+<dt>Params:</dt>
+<dd>array $field</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 247</div>
+<h3 id="prefersIdentityColumns()">prefersIdentityColumns</h3>
+<code class="signature">public  boolean <strong>prefersIdentityColumns</strong>()</code>
+<div class="details">
+<p>Whether the platform prefers identity columns for ID generation.
+MySql prefers "autoincrement" identity columns since sequences can only
+be emulated with a table.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 259</div>
+<h3 id="supportsIdentityColumns()">supportsIdentityColumns</h3>
+<code class="signature">public  boolean <strong>supportsIdentityColumns</strong>()</code>
+<div class="details">
+<p>Whether the platform supports identity columns.
+MySql supports this through AUTO_INCREMENT columns.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/MySqlPlatform.php at line 270</div>
+<h3 id="supportsSavepoints()">supportsSavepoints</h3>
+<code class="signature">public  boolean <strong>supportsSavepoints</strong>()</code>
+<div class="details">
+<p>Whether the platform supports savepoints. MySql does not.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/mysqlplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/oracleplatform.html b/lib/api/doctrine/dbal/platforms/oracleplatform.html
new file mode 100644
index 000000000..c77d6e570
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/oracleplatform.html
@@ -0,0 +1,743 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>OraclePlatform (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/oracleplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Platforms\OraclePlatform</div>
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 34</div>
+
+<h1>Class OraclePlatform</h1>
+
+<pre class="tree">Class:OraclePlatform - Superclass: AbstractPlatform
+<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a><br>   &lfloor;&nbsp;<strong>OraclePlatform</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OraclePlatform</strong><br>extends <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>OraclePlatform.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)</dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Todo:</dt>
+<dd>Remove any unnecessary methods.</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Platforms\AbstractPlatform</th></tr>
+<tr><td><a href="../../../doctrine/dbal/platforms/abstractplatform.html#CREATE_FOREIGNKEYS">CREATE_FOREIGNKEYS</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#CREATE_INDEXES">CREATE_INDEXES</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_BOTH">TRIM_BOTH</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_LEADING">TRIM_LEADING</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_TRAILING">TRIM_TRAILING</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_UNSPECIFIED">TRIM_UNSPECIFIED</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#fixSchemaElementName()">fixSchemaElementName</a>(mixed schemaElementName, string schemaName)</p><p class="description">Makes any fixes to a name of a schema element (table, sequence, ...) that are required
+by restrictions of the platform, like a maximum length.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getAlterTableSQL()">getAlterTableSQL</a>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> diff, string diff->name, array changes, boolean check)</p><p class="description">Gets the sql statements for altering an existing table.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>(array field)</p><p class="description">@override</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateAutoincrementSql()">getCreateAutoincrementSql</a>(mixed name, mixed table, mixed start)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCreateSequenceSQL()">getCreateSequenceSQL</a>(\Doctrine\DBAL\Schema\Sequence sequence)</p><p class="description">Gets the SQL used to create a sequence that starts with a given value
+and increments by the given allocation size.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateViewSQL()">getCreateViewSQL</a>(mixed name, mixed sql)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTimeFormatString()">getDateTimeFormatString</a>()</p><p class="description">Gets the format string, as accepted by the date() function, that describes
+the format of a stored datetime value of this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDropAutoincrementSql()">getDropAutoincrementSql</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDropDatabaseSQL()">getDropDatabaseSQL</a>(mixed database)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropForeignKeySQL()">getDropForeignKeySQL</a>(ForeignKeyConstraint|string foreignKey, Table|string table)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropSequenceSQL()">getDropSequenceSQL</a>(\Doctrine\DBAL\Schema\Sequence sequence)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDropViewSQL()">getDropViewSQL</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getGuidExpression()">getGuidExpression</a>()</p><p class="description">Returns global unique identifier</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListDatabasesSQL()">getListDatabasesSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListSequencesSQL()">getListSequencesSQL</a>(mixed database)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableColumnsSQL()">getListTableColumnsSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableConstraintsSQL()">getListTableConstraintsSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableForeignKeysSQL()">getListTableForeignKeysSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getListTableIndexesSQL()">getListTableIndexesSQL</a>(string table)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTablesSQL()">getListTablesSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getListViewsSQL()">getListViewsSQL</a>(string database)</p><p class="description">Get the SQL to list all views of a database or user.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getLocateExpression()">getLocateExpression</a>(string str, string substr, mixed startPos, int pos)</p><p class="description">returns the position of the first occurrence of substring $substr in string $str</p></td>
+</tr>
+<tr>
+<td class="type"> int</td>
+<td class="description"><p class="name"><a href="#getMaxIdentifierLength()">getMaxIdentifierLength</a>()</p><p class="description">Maximum length of any given databse identifier, like tables or column names.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Get the platform name for this instance</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getNowExpression()">getNowExpression</a>(mixed type)</p><p class="description">Return string to call a variable with the current timestamp inside an SQL statement
+There are three special variables for current date and time:
+- CURRENT_TIMESTAMP (date and time, TIMESTAMP type)
+- CURRENT_DATE (date, DATE type)
+- CURRENT_TIME (time, TIME type)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSQLResultCasing()">getSQLResultCasing</a>(string column)</p><p class="description">Gets the character casing of a column in an SQL result set of this platform.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSequenceNextValSQL()">getSequenceNextValSQL</a>(string sequenceName)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>(integer level)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSubstringExpression()">getSubstringExpression</a>(string value, integer position, integer length, integer from, integer len)</p><p class="description">return string to call a function to get a substring inside an SQL statementNote: Not SQL92, but common functionality.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTruncateTableSQL()">getTruncateTableSQL</a>(string tableName, bool cascade)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>(array field)</p><p class="description">Gets the SQL snippet used to declare a VARCHAR column on the Oracle platform.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#modifyLimitQuery()">modifyLimitQuery</a>(string query, integer limit, integer offset)</p><p class="description">Adds an driver-specific LIMIT clause to the query</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#prefersSequences()">prefersSequences</a>()</p><p class="description">Whether the platform prefers sequences for ID generation.</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate</a>()</p><p class="description">Does this platform supports onUpdate in foreign key constraints?</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsSequences()">supportsSequences</a>()</p><p class="description">Whether the platform supports sequences.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Platforms\AbstractPlatform</th></tr>
+<tr><td><a href="../../../doctrine/dbal/platforms/abstractplatform.html#convertBooleans()">convertBooleans</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#fixSchemaElementName()">fixSchemaElementName</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAcosExpression()">getAcosExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAlterTableSQL()">getAlterTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAvgExpression()">getAvgExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBetweenExpression()">getBetweenExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCheckDeclarationSQL()">getCheckDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnCharsetDeclarationSQL()">getColumnCharsetDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnCollationDeclarationSQL()">getColumnCollationDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationListSQL()">getColumnDeclarationListSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationSQL()">getColumnDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getConcatExpression()">getConcatExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCosExpression()">getCosExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCountExpression()">getCountExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateConstraintSQL()">getCreateConstraintSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateDatabaseSQL()">getCreateDatabaseSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateForeignKeySQL()">getCreateForeignKeySQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateIndexSQL()">getCreateIndexSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateSequenceSQL()">getCreateSequenceSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateTableSQL()">getCreateTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateViewSQL()">getCreateViewSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentDateSQL()">getCurrentDateSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentTimeSQL()">getCurrentTimeSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentTimestampSQL()">getCurrentTimestampSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCustomTypeDeclarationSQL()">getCustomTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateFormatString()">getDateFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTimeFormatString()">getDateTimeFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDecimalTypeDeclarationSQL()">getDecimalTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDefaultTransactionIsolationLevel()">getDefaultTransactionIsolationLevel</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDefaultValueDeclarationSQL()">getDefaultValueDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropConstraintSQL()">getDropConstraintSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropDatabaseSQL()">getDropDatabaseSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropForeignKeySQL()">getDropForeignKeySQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropIndexSQL()">getDropIndexSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropSequenceSQL()">getDropSequenceSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropTableSQL()">getDropTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropViewSQL()">getDropViewSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForUpdateSql()">getForUpdateSql</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyBaseDeclarationSQL()">getForeignKeyBaseDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyDeclarationSQL()">getForeignKeyDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyReferentialActionSQL()">getForeignKeyReferentialActionSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIdentityColumnNullInsertSQL()">getIdentityColumnNullInsertSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getInExpression()">getInExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIndexDeclarationSQL()">getIndexDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIndexFieldDeclarationListSQL()">getIndexFieldDeclarationListSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIsNotNullExpression()">getIsNotNullExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIsNullExpression()">getIsNullExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLengthExpression()">getLengthExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListDatabasesSQL()">getListDatabasesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListSequencesSQL()">getListSequencesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableColumnsSQL()">getListTableColumnsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableConstraintsSQL()">getListTableConstraintsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableForeignKeysSQL()">getListTableForeignKeysSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableIndexesSQL()">getListTableIndexesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTablesSQL()">getListTablesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListUsersSQL()">getListUsersSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListViewsSQL()">getListViewsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLocateExpression()">getLocateExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLowerExpression()">getLowerExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLtrimExpression()">getLtrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMaxExpression()">getMaxExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMaxIdentifierLength()">getMaxIdentifierLength</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMd5Expression()">getMd5Expression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMinExpression()">getMinExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getModExpression()">getModExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getName()">getName</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getNotExpression()">getNotExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getNowExpression()">getNowExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getPiExpression()">getPiExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRegexpExpression()">getRegexpExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRoundExpression()">getRoundExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRtrimExpression()">getRtrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSQLResultCasing()">getSQLResultCasing</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSequenceNextValSQL()">getSequenceNextValSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSetCharsetSQL()">getSetCharsetSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getShowDatabasesSQL()">getShowDatabasesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSinExpression()">getSinExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSqlCommentEndString()">getSqlCommentEndString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSqlCommentStartString()">getSqlCommentStartString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSubstringExpression()">getSubstringExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSumExpression()">getSumExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTemporaryTableSQL()">getTemporaryTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTimeFormatString()">getTimeFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTrimExpression()">getTrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTruncateTableSQL()">getTruncateTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUniqueConstraintDeclarationSQL()">getUniqueConstraintDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUniqueFieldDeclarationSQL()">getUniqueFieldDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUpperExpression()">getUpperExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getVarcharMaxLength()">getVarcharMaxLength</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getWildcards()">getWildcards</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#modifyLimitQuery()">modifyLimitQuery</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#prefersIdentityColumns()">prefersIdentityColumns</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#prefersSequences()">prefersSequences</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#quoteIdentifier()">quoteIdentifier</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsAlterTable()">supportsAlterTable</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyConstraints()">supportsForeignKeyConstraints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsGettingAffectedRows()">supportsGettingAffectedRows</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsIdentityColumns()">supportsIdentityColumns</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsIndexes()">supportsIndexes</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsPrimaryConstraints()">supportsPrimaryConstraints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSavepoints()">supportsSavepoints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSchemas()">supportsSchemas</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSequences()">supportsSequences</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsTransactions()">supportsTransactions</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 612</div>
+<h3 id="fixSchemaElementName()">fixSchemaElementName</h3>
+<code class="signature">public  string <strong>fixSchemaElementName</strong>(mixed schemaElementName, string schemaName)</code>
+<div class="details">
+<p>Makes any fixes to a name of a schema element (table, sequence, ...) that are required
+by restrictions of the platform, like a maximum length.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 493</div>
+<h3 id="getAlterTableSQL()">getAlterTableSQL</h3>
+<code class="signature">public  array <strong>getAlterTableSQL</strong>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> diff, string diff->name, array changes, boolean check)</code>
+<div class="details">
+<p>Gets the sql statements for altering an existing table.</p><p>The method returns an array of sql statements, since some platforms need several statements.</p><dl>
+<dt>Parameters:</dt>
+<dd>diff->name - name of the table that is intended to be changed.</dd>
+<dd>changes - associative array that contains the details of each type *</dd>
+<dd>check - indicates whether the function should just check if the DBMS driver can perform the requested table alterations if the value is true or actually perform them otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 180</div>
+<h3 id="getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getBigIntTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 164</div>
+<h3 id="getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getBooleanTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 249</div>
+<h3 id="getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</h3>
+<code class="signature">public  void <strong>getClobTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 338</div>
+<h3 id="getCreateAutoincrementSql()">getCreateAutoincrementSql</h3>
+<code class="signature">public  void <strong>getCreateAutoincrementSql</strong>(mixed name, mixed table, mixed start)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 116</div>
+<h3 id="getCreateSequenceSQL()">getCreateSequenceSQL</h3>
+<code class="signature">public  string <strong>getCreateSequenceSQL</strong>(\Doctrine\DBAL\Schema\Sequence sequence)</code>
+<div class="details">
+<p>Gets the SQL used to create a sequence that starts with a given value
+and increments by the given allocation size.</p><p>Need to specifiy minvalue, since start with is hidden in the system and MINVALUE <= START WITH.
+Therefore we can use MINVALUE to be able to get a hint what START WITH was for later introspection
+in listSequences()</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../../doctrine/dbal/dbalexception.html">DBALException</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 602</div>
+<h3 id="getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL</h3>
+<code class="signature">public  void <strong>getCreateTemporaryTableSnippetSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 328</div>
+<h3 id="getCreateViewSQL()">getCreateViewSQL</h3>
+<code class="signature">public  void <strong>getCreateViewSQL</strong>(mixed name, mixed sql)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 607</div>
+<h3 id="getDateTimeFormatString()">getDateTimeFormatString</h3>
+<code class="signature">public  string <strong>getDateTimeFormatString</strong>()</code>
+<div class="details">
+<p>Gets the format string, as accepted by the date() function, that describes
+the format of a stored datetime value of this platform.</p><dl>
+<dt>Returns:</dt>
+<dd>The format string.</dd>
+<dt>Todo:</dt>
+<dd>We need to get the specific format for each dbms and override this function for each platform</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 196</div>
+<h3 id="getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 204</div>
+<h3 id="getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 389</div>
+<h3 id="getDropAutoincrementSql()">getDropAutoincrementSql</h3>
+<code class="signature">public  void <strong>getDropAutoincrementSql</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 476</div>
+<h3 id="getDropDatabaseSQL()">getDropDatabaseSQL</h3>
+<code class="signature">public  void <strong>getDropDatabaseSQL</strong>(mixed database)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 463</div>
+<h3 id="getDropForeignKeySQL()">getDropForeignKeySQL</h3>
+<code class="signature">public  string <strong>getDropForeignKeySQL</strong>(ForeignKeyConstraint|string foreignKey, Table|string table)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 449</div>
+<h3 id="getDropSequenceSQL()">getDropSequenceSQL</h3>
+<code class="signature">public  string <strong>getDropSequenceSQL</strong>(\Doctrine\DBAL\Schema\Sequence sequence)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 333</div>
+<h3 id="getDropViewSQL()">getDropViewSQL</h3>
+<code class="signature">public  void <strong>getDropViewSQL</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 100</div>
+<h3 id="getGuidExpression()">getGuidExpression</h3>
+<code class="signature">public  string <strong>getGuidExpression</strong>()</code>
+<div class="details">
+<p>Returns global unique identifier</p><dl>
+<dt>Returns:</dt>
+<dd>to get global unique identifier</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 172</div>
+<h3 id="getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getIntegerTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 254</div>
+<h3 id="getListDatabasesSQL()">getListDatabasesSQL</h3>
+<code class="signature">public  void <strong>getListDatabasesSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 259</div>
+<h3 id="getListSequencesSQL()">getListSequencesSQL</h3>
+<code class="signature">public  void <strong>getListSequencesSQL</strong>(mixed database)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 438</div>
+<h3 id="getListTableColumnsSQL()">getListTableColumnsSQL</h3>
+<code class="signature">public  void <strong>getListTableColumnsSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 432</div>
+<h3 id="getListTableConstraintsSQL()">getListTableConstraintsSQL</h3>
+<code class="signature">public  void <strong>getListTableConstraintsSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 405</div>
+<h3 id="getListTableForeignKeysSQL()">getListTableForeignKeysSQL</h3>
+<code class="signature">public  void <strong>getListTableForeignKeysSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 304</div>
+<h3 id="getListTableIndexesSQL()">getListTableIndexesSQL</h3>
+<code class="signature">public  string <strong>getListTableIndexesSQL</strong>(string table)</code>
+<div class="details">
+<p></p><dl>
+<dt>License:</dt>
+<dd>New BSD License</dd>
+<dt>See Also:</dt>
+<dd><code><a href="http://ezcomponents.org/docs/api/trunk/DatabaseSchema/ezcDbSchemaOracleReader.html">http://ezcomponents.org/docs/api/trunk/DatabaseSchema/ezcDbSchemaOracleReader.html</a></code></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 318</div>
+<h3 id="getListTablesSQL()">getListTablesSQL</h3>
+<code class="signature">public  void <strong>getListTablesSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 323</div>
+<h3 id="getListViewsSQL()">getListViewsSQL</h3>
+<code class="signature">public  string <strong>getListViewsSQL</strong>(string database)</code>
+<div class="details">
+<p>Get the SQL to list all views of a database or user.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 85</div>
+<h3 id="getLocateExpression()">getLocateExpression</h3>
+<code class="signature">public  integer <strong>getLocateExpression</strong>(string str, string substr, mixed startPos, int pos)</code>
+<div class="details">
+<p>returns the position of the first occurrence of substring $substr in string $str</p><dl>
+<dt>Parameters:</dt>
+<dd>substr - literal string to find</dd>
+<dd>str - literal string</dd>
+<dd>pos - position to start at, beginning of string by default</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 626</div>
+<h3 id="getMaxIdentifierLength()">getMaxIdentifierLength</h3>
+<code class="signature">public  int <strong>getMaxIdentifierLength</strong>()</code>
+<div class="details">
+<p>Maximum length of any given databse identifier, like tables or column names.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 550</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Get the platform name for this instance</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 66</div>
+<h3 id="getNowExpression()">getNowExpression</h3>
+<code class="signature">public  string <strong>getNowExpression</strong>(mixed type)</code>
+<div class="details">
+<p>Return string to call a variable with the current timestamp inside an SQL statement
+There are three special variables for current date and time:
+- CURRENT_TIMESTAMP (date and time, TIMESTAMP type)
+- CURRENT_DATE (date, DATE type)
+- CURRENT_TIME (time, TIME type)</p><dl>
+<dt>Returns:</dt>
+<dd>to call a variable with the current timestamp</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 597</div>
+<h3 id="getSQLResultCasing()">getSQLResultCasing</h3>
+<code class="signature">public  string <strong>getSQLResultCasing</strong>(string column)</code>
+<div class="details">
+<p>Gets the character casing of a column in an SQL result set of this platform.</p><p>Oracle returns all column names in SQL result sets in uppercase.</p><dl>
+<dt>Parameters:</dt>
+<dd>column - The column name for which to get the correct character casing.</dd>
+<dt>Returns:</dt>
+<dd>The column name in the character casing used in SQL result sets.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 130</div>
+<h3 id="getSequenceNextValSQL()">getSequenceNextValSQL</h3>
+<code class="signature">public  void <strong>getSequenceNextValSQL</strong>(string sequenceName)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 141</div>
+<h3 id="getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</h3>
+<code class="signature">public  void <strong>getSetTransactionIsolationSQL</strong>(integer level)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 188</div>
+<h3 id="getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getSmallIntTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 47</div>
+<h3 id="getSubstringExpression()">getSubstringExpression</h3>
+<code class="signature">public  string <strong>getSubstringExpression</strong>(string value, integer position, integer length, integer from, integer len)</code>
+<div class="details">
+<p>return string to call a function to get a substring inside an SQL statement</p><p>Note: Not SQL92, but common functionality.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - an sql string literal or column name/alias</dd>
+<dd>position - where to start the substring portion</dd>
+<dd>length - the substring portion length</dd>
+<dt>Returns:</dt>
+<dd>SQL substring function with given parameters</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 212</div>
+<h3 id="getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 649</div>
+<h3 id="getTruncateTableSQL()">getTruncateTableSQL</h3>
+<code class="signature">public  string <strong>getTruncateTableSQL</strong>(string tableName, bool cascade)</code>
+<div class="details">
+<p></p><dl>
+<dt>Inheritdoc.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 231</div>
+<h3 id="getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</h3>
+<code class="signature">public  void <strong>getVarcharTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p>Gets the SQL snippet used to declare a VARCHAR column on the Oracle platform.</p><dl>
+<dt>Params:</dt>
+<dd>array $field</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 563</div>
+<h3 id="modifyLimitQuery()">modifyLimitQuery</h3>
+<code class="signature">public  string <strong>modifyLimitQuery</strong>(string query, integer limit, integer offset)</code>
+<div class="details">
+<p>Adds an driver-specific LIMIT clause to the query</p><dl>
+<dt>Parameters:</dt>
+<dd>query - query to modify</dd>
+<dd>limit - limit the number of rows</dd>
+<dd>offset - start reading from given offset</dd>
+<dt>Returns:</dt>
+<dd>the modified query</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 540</div>
+<h3 id="prefersSequences()">prefersSequences</h3>
+<code class="signature">public  boolean <strong>prefersSequences</strong>()</code>
+<div class="details">
+<p>Whether the platform prefers sequences for ID generation.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 641</div>
+<h3 id="supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate</h3>
+<code class="signature">public  bool <strong>supportsForeignKeyOnUpdate</strong>()</code>
+<div class="details">
+<p>Does this platform supports onUpdate in foreign key constraints?</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/OraclePlatform.php at line 636</div>
+<h3 id="supportsSequences()">supportsSequences</h3>
+<code class="signature">public  boolean <strong>supportsSequences</strong>()</code>
+<div class="details">
+<p>Whether the platform supports sequences.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/oracleplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/package-frame.html b/lib/api/doctrine/dbal/platforms/package-frame.html
new file mode 100644
index 000000000..84fbb6083
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/package-frame.html
@@ -0,0 +1,31 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Platforms (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Platforms</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/dbal/platforms/abstractplatform.html" target="main">AbstractPlatform</a></li>
+<li><a href="../../../doctrine/dbal/platforms/mssqlplatform.html" target="main">MsSqlPlatform</a></li>
+<li><a href="../../../doctrine/dbal/platforms/mysqlplatform.html" target="main">MySqlPlatform</a></li>
+<li><a href="../../../doctrine/dbal/platforms/oracleplatform.html" target="main">OraclePlatform</a></li>
+<li><a href="../../../doctrine/dbal/platforms/postgresqlplatform.html" target="main">PostgreSqlPlatform</a></li>
+<li><a href="../../../doctrine/dbal/platforms/sqliteplatform.html" target="main">SqlitePlatform</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/package-functions.html b/lib/api/doctrine/dbal/platforms/package-functions.html
new file mode 100644
index 000000000..effc269c0
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/package-globals.html b/lib/api/doctrine/dbal/platforms/package-globals.html
new file mode 100644
index 000000000..8cd9fac59
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/package-summary.html b/lib/api/doctrine/dbal/platforms/package-summary.html
new file mode 100644
index 000000000..f54e11643
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/package-summary.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Platforms (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Platforms</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a></td><td class="description">Base class for all DatabasePlatforms. </td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/platforms/mssqlplatform.html">MsSqlPlatform</a></td><td class="description">The MsSqlPlatform provides the behavior, features and SQL dialect of the
+MySQL database platform.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/platforms/mysqlplatform.html">MySqlPlatform</a></td><td class="description">The MySqlPlatform provides the behavior, features and SQL dialect of the
+MySQL database platform. </td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/platforms/oracleplatform.html">OraclePlatform</a></td><td class="description">OraclePlatform.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/platforms/postgresqlplatform.html">PostgreSqlPlatform</a></td><td class="description">PostgreSqlPlatform.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/platforms/sqliteplatform.html">SqlitePlatform</a></td><td class="description">The SqlitePlatform class describes the specifics and dialects of the SQLite
+database platform.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/package-tree.html b/lib/api/doctrine/dbal/platforms/package-tree.html
new file mode 100644
index 000000000..cc469df84
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/package-tree.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Platforms (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Platforms</h1><ul>
+<li><a href="../../../doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a><ul>
+<li><a href="../../../doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></li>
+<li><a href="../../../doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></li>
+<li><a href="../../../doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></li>
+<li><a href="../../../doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></li>
+<li><a href="../../../doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/postgresqlplatform.html b/lib/api/doctrine/dbal/platforms/postgresqlplatform.html
new file mode 100644
index 000000000..88ae59fa1
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/postgresqlplatform.html
@@ -0,0 +1,731 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PostgreSqlPlatform (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/postgresqlplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Platforms\PostgreSqlPlatform</div>
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 36</div>
+
+<h1>Class PostgreSqlPlatform</h1>
+
+<pre class="tree">Class:PostgreSqlPlatform - Superclass: AbstractPlatform
+<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a><br>   &lfloor;&nbsp;<strong>PostgreSqlPlatform</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>PostgreSqlPlatform</strong><br>extends <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>PostgreSqlPlatform.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)</dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>Todo:</dt>
+<dd>Rename: PostgreSQLPlatform</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Platforms\AbstractPlatform</th></tr>
+<tr><td><a href="../../../doctrine/dbal/platforms/abstractplatform.html#CREATE_FOREIGNKEYS">CREATE_FOREIGNKEYS</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#CREATE_INDEXES">CREATE_INDEXES</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_BOTH">TRIM_BOTH</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_LEADING">TRIM_LEADING</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_TRAILING">TRIM_TRAILING</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_UNSPECIFIED">TRIM_UNSPECIFIED</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#convertBooleans()">convertBooleans</a>(array item)</p><p class="description">Postgres wants boolean values converted to the strings 'true'/'false'.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</a>(\Doctrine\DBAL\Schema\ForeignKeyConstraint foreignKey)</p><p class="description">Return the FOREIGN KEY query section dealing with non-standard options
+as MATCH, INITIALLY DEFERRED, ON UPDATE, ...</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getAlterTableSQL()">getAlterTableSQL</a>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> diff, string name, array changes, boolean check)</p><p class="description">generates the sql for altering an existing table on postgresql</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>(array field)</p><p class="description">@override</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateDatabaseSQL()">getCreateDatabaseSQL</a>(string name, mixed database)</p><p class="description">create a new database</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCreateSequenceSQL()">getCreateSequenceSQL</a>(\Doctrine\DBAL\Schema\Sequence sequence)</p><p class="description">Gets the SQL to create a sequence on this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateViewSQL()">getCreateViewSQL</a>(mixed name, mixed sql)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTimeFormatString()">getDateTimeFormatString</a>()</p><p class="description">Gets the format string, as accepted by the date() function, that describes
+the format of a stored datetime value of this platform.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDropDatabaseSQL()">getDropDatabaseSQL</a>(string name, mixed database)</p><p class="description">drop an existing database</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropForeignKeySQL()">getDropForeignKeySQL</a>(ForeignKeyConstraint|string foreignKey, Table|string table)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDropSequenceSQL()">getDropSequenceSQL</a>(\Doctrine\DBAL\Schema\Sequence sequence)</p><p class="description">Drop existing sequence</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDropViewSQL()">getDropViewSQL</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</a>(mixed quotedTableName, mixed quotedIdentifierColumnName, string tableName, string identifierColumnName)</p><p class="description">Get the insert sql for an empty insert statement</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListDatabasesSQL()">getListDatabasesSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListSequencesSQL()">getListSequencesSQL</a>(mixed database)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableColumnsSQL()">getListTableColumnsSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableConstraintsSQL()">getListTableConstraintsSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableForeignKeysSQL()">getListTableForeignKeysSQL</a>(mixed table, mixed database)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getListTableIndexesSQL()">getListTableIndexesSQL</a>(string table)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTablesSQL()">getListTablesSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getListViewsSQL()">getListViewsSQL</a>(string database)</p><p class="description">Get the SQL to list all views of a database or user.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getLocateExpression()">getLocateExpression</a>(string str, string substr, mixed startPos, int pos)</p><p class="description">returns the position of the first occurrence of substring $substr in string $str</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Get the platform name for this instance</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getNowExpression()">getNowExpression</a>()</p><p class="description">Returns the SQL string to return the current system date and time.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getRegexpExpression()">getRegexpExpression</a>()</p><p class="description">regexp</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSQLResultCasing()">getSQLResultCasing</a>(string column)</p><p class="description">Gets the character casing of a column in an SQL result set.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSequenceNextValSQL()">getSequenceNextValSQL</a>(mixed sequenceName)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>(integer level)</p><p class="description">Get sql to set the transaction isolation level</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSubstringExpression()">getSubstringExpression</a>(string value, int from, int len)</p><p class="description">Returns part of a string.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTruncateTableSQL()">getTruncateTableSQL</a>(string tableName, bool cascade)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>(array field)</p><p class="description">Gets the SQL snippet used to declare a VARCHAR column on the MySql platform.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#prefersSequences()">prefersSequences</a>()</p><p class="description">Whether the platform prefers sequences for ID generation.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsIdentityColumns()">supportsIdentityColumns</a>()</p><p class="description">Whether the platform supports identity columns.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsSchemas()">supportsSchemas</a>()</p><p class="description">Whether the platform supports database schemas.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsSequences()">supportsSequences</a>()</p><p class="description">Whether the platform supports sequences.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Platforms\AbstractPlatform</th></tr>
+<tr><td><a href="../../../doctrine/dbal/platforms/abstractplatform.html#convertBooleans()">convertBooleans</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#fixSchemaElementName()">fixSchemaElementName</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAcosExpression()">getAcosExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAlterTableSQL()">getAlterTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAvgExpression()">getAvgExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBetweenExpression()">getBetweenExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCheckDeclarationSQL()">getCheckDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnCharsetDeclarationSQL()">getColumnCharsetDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnCollationDeclarationSQL()">getColumnCollationDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationListSQL()">getColumnDeclarationListSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationSQL()">getColumnDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getConcatExpression()">getConcatExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCosExpression()">getCosExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCountExpression()">getCountExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateConstraintSQL()">getCreateConstraintSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateDatabaseSQL()">getCreateDatabaseSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateForeignKeySQL()">getCreateForeignKeySQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateIndexSQL()">getCreateIndexSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateSequenceSQL()">getCreateSequenceSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateTableSQL()">getCreateTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateViewSQL()">getCreateViewSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentDateSQL()">getCurrentDateSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentTimeSQL()">getCurrentTimeSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentTimestampSQL()">getCurrentTimestampSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCustomTypeDeclarationSQL()">getCustomTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateFormatString()">getDateFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTimeFormatString()">getDateTimeFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDecimalTypeDeclarationSQL()">getDecimalTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDefaultTransactionIsolationLevel()">getDefaultTransactionIsolationLevel</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDefaultValueDeclarationSQL()">getDefaultValueDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropConstraintSQL()">getDropConstraintSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropDatabaseSQL()">getDropDatabaseSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropForeignKeySQL()">getDropForeignKeySQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropIndexSQL()">getDropIndexSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropSequenceSQL()">getDropSequenceSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropTableSQL()">getDropTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropViewSQL()">getDropViewSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForUpdateSql()">getForUpdateSql</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyBaseDeclarationSQL()">getForeignKeyBaseDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyDeclarationSQL()">getForeignKeyDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyReferentialActionSQL()">getForeignKeyReferentialActionSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIdentityColumnNullInsertSQL()">getIdentityColumnNullInsertSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getInExpression()">getInExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIndexDeclarationSQL()">getIndexDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIndexFieldDeclarationListSQL()">getIndexFieldDeclarationListSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIsNotNullExpression()">getIsNotNullExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIsNullExpression()">getIsNullExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLengthExpression()">getLengthExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListDatabasesSQL()">getListDatabasesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListSequencesSQL()">getListSequencesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableColumnsSQL()">getListTableColumnsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableConstraintsSQL()">getListTableConstraintsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableForeignKeysSQL()">getListTableForeignKeysSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableIndexesSQL()">getListTableIndexesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTablesSQL()">getListTablesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListUsersSQL()">getListUsersSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListViewsSQL()">getListViewsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLocateExpression()">getLocateExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLowerExpression()">getLowerExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLtrimExpression()">getLtrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMaxExpression()">getMaxExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMaxIdentifierLength()">getMaxIdentifierLength</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMd5Expression()">getMd5Expression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMinExpression()">getMinExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getModExpression()">getModExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getName()">getName</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getNotExpression()">getNotExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getNowExpression()">getNowExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getPiExpression()">getPiExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRegexpExpression()">getRegexpExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRoundExpression()">getRoundExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRtrimExpression()">getRtrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSQLResultCasing()">getSQLResultCasing</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSequenceNextValSQL()">getSequenceNextValSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSetCharsetSQL()">getSetCharsetSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getShowDatabasesSQL()">getShowDatabasesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSinExpression()">getSinExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSqlCommentEndString()">getSqlCommentEndString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSqlCommentStartString()">getSqlCommentStartString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSubstringExpression()">getSubstringExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSumExpression()">getSumExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTemporaryTableSQL()">getTemporaryTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTimeFormatString()">getTimeFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTrimExpression()">getTrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTruncateTableSQL()">getTruncateTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUniqueConstraintDeclarationSQL()">getUniqueConstraintDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUniqueFieldDeclarationSQL()">getUniqueFieldDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUpperExpression()">getUpperExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getVarcharMaxLength()">getVarcharMaxLength</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getWildcards()">getWildcards</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#modifyLimitQuery()">modifyLimitQuery</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#prefersIdentityColumns()">prefersIdentityColumns</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#prefersSequences()">prefersSequences</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#quoteIdentifier()">quoteIdentifier</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsAlterTable()">supportsAlterTable</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyConstraints()">supportsForeignKeyConstraints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsGettingAffectedRows()">supportsGettingAffectedRows</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsIdentityColumns()">supportsIdentityColumns</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsIndexes()">supportsIndexes</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsPrimaryConstraints()">supportsPrimaryConstraints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSavepoints()">supportsSavepoints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSchemas()">supportsSchemas</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSequences()">supportsSequences</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsTransactions()">supportsTransactions</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 427</div>
+<h3 id="convertBooleans()">convertBooleans</h3>
+<code class="signature">public  void <strong>convertBooleans</strong>(array item)</code>
+<div class="details">
+<p>Postgres wants boolean values converted to the strings 'true'/'false'.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 268</div>
+<h3 id="getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</h3>
+<code class="signature">public  string <strong>getAdvancedForeignKeyOptionsSQL</strong>(\Doctrine\DBAL\Schema\ForeignKeyConstraint foreignKey)</code>
+<div class="details">
+<p>Return the FOREIGN KEY query section dealing with non-standard options
+as MATCH, INITIALLY DEFERRED, ON UPDATE, ...</p><dl>
+<dt>Parameters:</dt>
+<dd>foreignKey - foreign key definition</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 300</div>
+<h3 id="getAlterTableSQL()">getAlterTableSQL</h3>
+<code class="signature">public  array <strong>getAlterTableSQL</strong>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> diff, string name, array changes, boolean check)</code>
+<div class="details">
+<p>generates the sql for altering an existing table on postgresql</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the table that is intended to be changed.</dd>
+<dd>changes - associative array that contains the details of each type *</dd>
+<dd>check - indicates whether the function should just check if the DBMS driver can perform the requested table alterations if the value is true or actually perform them otherwise.</dd>
+<dt>See Also:</dt>
+<dd>Doctrine_Export::alterTable()</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 477</div>
+<h3 id="getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getBigIntTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 457</div>
+<h3 id="getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getBooleanTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 549</div>
+<h3 id="getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</h3>
+<code class="signature">public  void <strong>getClobTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 243</div>
+<h3 id="getCreateDatabaseSQL()">getCreateDatabaseSQL</h3>
+<code class="signature">public  void <strong>getCreateDatabaseSQL</strong>(string name, mixed database)</code>
+<div class="details">
+<p>create a new database</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the database that should be created</dd>
+<dt>Throws:</dt>
+<dd>PDOException</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 354</div>
+<h3 id="getCreateSequenceSQL()">getCreateSequenceSQL</h3>
+<code class="signature">public  string <strong>getCreateSequenceSQL</strong>(\Doctrine\DBAL\Schema\Sequence sequence)</code>
+<div class="details">
+<p>Gets the SQL to create a sequence on this platform.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../../doctrine/dbal/dbalexception.html">DBALException</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 204</div>
+<h3 id="getCreateViewSQL()">getCreateViewSQL</h3>
+<code class="signature">public  void <strong>getCreateViewSQL</strong>(mixed name, mixed sql)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 577</div>
+<h3 id="getDateTimeFormatString()">getDateTimeFormatString</h3>
+<code class="signature">public  string <strong>getDateTimeFormatString</strong>()</code>
+<div class="details">
+<p>Gets the format string, as accepted by the date() function, that describes
+the format of a stored datetime value of this platform.</p><dl>
+<dt>Returns:</dt>
+<dd>The format string.</dd>
+<dt>Todo:</dt>
+<dd>We need to get the specific format for each dbms and override this function for each platform</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 496</div>
+<h3 id="getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 504</div>
+<h3 id="getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 255</div>
+<h3 id="getDropDatabaseSQL()">getDropDatabaseSQL</h3>
+<code class="signature">public  void <strong>getDropDatabaseSQL</strong>(string name, mixed database)</code>
+<div class="details">
+<p>drop an existing database</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the database that should be dropped</dd>
+<dt>Throws:</dt>
+<dd>PDOException</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 380</div>
+<h3 id="getDropForeignKeySQL()">getDropForeignKeySQL</h3>
+<code class="signature">public  string <strong>getDropForeignKeySQL</strong>(ForeignKeyConstraint|string foreignKey, Table|string table)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 367</div>
+<h3 id="getDropSequenceSQL()">getDropSequenceSQL</h3>
+<code class="signature">public  string <strong>getDropSequenceSQL</strong>(\Doctrine\DBAL\Schema\Sequence sequence)</code>
+<div class="details">
+<p>Drop existing sequence</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 209</div>
+<h3 id="getDropViewSQL()">getDropViewSQL</h3>
+<code class="signature">public  void <strong>getDropViewSQL</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 589</div>
+<h3 id="getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</h3>
+<code class="signature">public  string <strong>getEmptyIdentityInsertSQL</strong>(mixed quotedTableName, mixed quotedIdentifierColumnName, string tableName, string identifierColumnName)</code>
+<div class="details">
+<p>Get the insert sql for an empty insert statement</p><dl>
+<dt>Returns:</dt>
+<dd>$sql</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 465</div>
+<h3 id="getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getIntegerTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 151</div>
+<h3 id="getListDatabasesSQL()">getListDatabasesSQL</h3>
+<code class="signature">public  void <strong>getListDatabasesSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 156</div>
+<h3 id="getListSequencesSQL()">getListSequencesSQL</h3>
+<code class="signature">public  void <strong>getListSequencesSQL</strong>(mixed database)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 230</div>
+<h3 id="getListTableColumnsSQL()">getListTableColumnsSQL</h3>
+<code class="signature">public  void <strong>getListTableColumnsSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 214</div>
+<h3 id="getListTableConstraintsSQL()">getListTableConstraintsSQL</h3>
+<code class="signature">public  void <strong>getListTableConstraintsSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 190</div>
+<h3 id="getListTableForeignKeysSQL()">getListTableForeignKeysSQL</h3>
+<code class="signature">public  void <strong>getListTableForeignKeysSQL</strong>(mixed table, mixed database)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 225</div>
+<h3 id="getListTableIndexesSQL()">getListTableIndexesSQL</h3>
+<code class="signature">public  string <strong>getListTableIndexesSQL</strong>(string table)</code>
+<div class="details">
+<p></p><dl>
+<dt>License:</dt>
+<dd>New BSD License</dd>
+<dt>See Also:</dt>
+<dd><code><a href="http://ezcomponents.org/docs/api/trunk/DatabaseSchema/ezcDbSchemaPgsqlReader.html">http://ezcomponents.org/docs/api/trunk/DatabaseSchema/ezcDbSchemaPgsqlReader.html</a></code></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 167</div>
+<h3 id="getListTablesSQL()">getListTablesSQL</h3>
+<code class="signature">public  void <strong>getListTablesSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 185</div>
+<h3 id="getListViewsSQL()">getListViewsSQL</h3>
+<code class="signature">public  string <strong>getListViewsSQL</strong>(string database)</code>
+<div class="details">
+<p>Get the SQL to list all views of a database or user.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 87</div>
+<h3 id="getLocateExpression()">getLocateExpression</h3>
+<code class="signature">public  integer <strong>getLocateExpression</strong>(string str, string substr, mixed startPos, int pos)</code>
+<div class="details">
+<p>returns the position of the first occurrence of substring $substr in string $str</p><dl>
+<dt>Parameters:</dt>
+<dd>substr - literal string to find</dd>
+<dd>str - literal string</dd>
+<dd>pos - position to start at, beginning of string by default</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 559</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Get the platform name for this instance</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 63</div>
+<h3 id="getNowExpression()">getNowExpression</h3>
+<code class="signature">public  string <strong>getNowExpression</strong>()</code>
+<div class="details">
+<p>Returns the SQL string to return the current system date and time.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 74</div>
+<h3 id="getRegexpExpression()">getRegexpExpression</h3>
+<code class="signature">public  string <strong>getRegexpExpression</strong>()</code>
+<div class="details">
+<p>regexp</p><dl>
+<dt>Returns:</dt>
+<dd>the regular expression operator</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 572</div>
+<h3 id="getSQLResultCasing()">getSQLResultCasing</h3>
+<code class="signature">public  string <strong>getSQLResultCasing</strong>(string column)</code>
+<div class="details">
+<p>Gets the character casing of a column in an SQL result set.</p><p>PostgreSQL returns all column names in SQL result sets in lowercase.</p><dl>
+<dt>Parameters:</dt>
+<dd>column - The column name for which to get the correct character casing.</dd>
+<dt>Returns:</dt>
+<dd>The column name in the character casing used in SQL result sets.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 443</div>
+<h3 id="getSequenceNextValSQL()">getSequenceNextValSQL</h3>
+<code class="signature">public  void <strong>getSequenceNextValSQL</strong>(mixed sequenceName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 448</div>
+<h3 id="getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</h3>
+<code class="signature">public  void <strong>getSetTransactionIsolationSQL</strong>(integer level)</code>
+<div class="details">
+<p>Get sql to set the transaction isolation level</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 488</div>
+<h3 id="getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getSmallIntTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 49</div>
+<h3 id="getSubstringExpression()">getSubstringExpression</h3>
+<code class="signature">public  string <strong>getSubstringExpression</strong>(string value, int from, int len)</code>
+<div class="details">
+<p>Returns part of a string.</p><p>Note: Not SQL92, but common functionality.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - the target $value the string or the string column.</dd>
+<dd>from - extract from this characeter.</dd>
+<dd>len - extract this amount of characters.</dd>
+<dt>Returns:</dt>
+<dd>sql that extracts part of a string.</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 512</div>
+<h3 id="getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 597</div>
+<h3 id="getTruncateTableSQL()">getTruncateTableSQL</h3>
+<code class="signature">public  string <strong>getTruncateTableSQL</strong>(string tableName, bool cascade)</code>
+<div class="details">
+<p></p><dl>
+<dt>Inheritdoc.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 531</div>
+<h3 id="getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</h3>
+<code class="signature">public  void <strong>getVarcharTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p>Gets the SQL snippet used to declare a VARCHAR column on the MySql platform.</p><dl>
+<dt>Params:</dt>
+<dd>array $field</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 146</div>
+<h3 id="prefersSequences()">prefersSequences</h3>
+<code class="signature">public  boolean <strong>prefersSequences</strong>()</code>
+<div class="details">
+<p>Whether the platform prefers sequences for ID generation.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 136</div>
+<h3 id="supportsIdentityColumns()">supportsIdentityColumns</h3>
+<code class="signature">public  boolean <strong>supportsIdentityColumns</strong>()</code>
+<div class="details">
+<p>Whether the platform supports identity columns.
+Postgres supports these through the SERIAL keyword.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 125</div>
+<h3 id="supportsSchemas()">supportsSchemas</h3>
+<code class="signature">public  boolean <strong>supportsSchemas</strong>()</code>
+<div class="details">
+<p>Whether the platform supports database schemas.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/PostgreSqlPlatform.php at line 115</div>
+<h3 id="supportsSequences()">supportsSequences</h3>
+<code class="signature">public  boolean <strong>supportsSequences</strong>()</code>
+<div class="details">
+<p>Whether the platform supports sequences.
+Postgres has native support for sequences.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/postgresqlplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/platforms/sqliteplatform.html b/lib/api/doctrine/dbal/platforms/sqliteplatform.html
new file mode 100644
index 000000000..911352c31
--- /dev/null
+++ b/lib/api/doctrine/dbal/platforms/sqliteplatform.html
@@ -0,0 +1,563 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SqlitePlatform (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/sqliteplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Platforms\SqlitePlatform</div>
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 35</div>
+
+<h1>Class SqlitePlatform</h1>
+
+<pre class="tree">Class:SqlitePlatform - Superclass: AbstractPlatform
+<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a><br>   &lfloor;&nbsp;<strong>SqlitePlatform</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SqlitePlatform</strong><br>extends <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>The SqlitePlatform class describes the specifics and dialects of the SQLite
+database platform.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>Todo:</dt>
+<dd>Rename: SQLitePlatform</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Platforms\AbstractPlatform</th></tr>
+<tr><td><a href="../../../doctrine/dbal/platforms/abstractplatform.html#CREATE_FOREIGNKEYS">CREATE_FOREIGNKEYS</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#CREATE_INDEXES">CREATE_INDEXES</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_BOTH">TRIM_BOTH</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_LEADING">TRIM_LEADING</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_TRAILING">TRIM_TRAILING</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#TRIM_UNSPECIFIED">TRIM_UNSPECIFIED</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>(array field)</p><p class="description">Gets the SQL snippet used to declare a CLOB column type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getCreateViewSQL()">getCreateViewSQL</a>(mixed name, mixed sql)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDropViewSQL()">getDropViewSQL</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableColumnsSQL()">getListTableColumnsSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableConstraintsSQL()">getListTableConstraintsSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTableIndexesSQL()">getListTableIndexesSQL</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getListTablesSQL()">getListTablesSQL</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getListViewsSQL()">getListViewsSQL</a>(string database)</p><p class="description">Get the SQL to list all views of a database or user.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getLocateExpression()">getLocateExpression</a>(string str, string substr, mixed startPos, int pos)</p><p class="description">returns the position of the first occurrence of substring $substr in string $str</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getMediumIntTypeDeclarationSql()">getMediumIntTypeDeclarationSql</a>(mixed field)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Get the platform name for this instance</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getNowExpression()">getNowExpression</a>(mixed type)</p><p class="description">Return string to call a variable with the current timestamp inside an SQL statement
+There are three special variables for current date and time.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getRegexpExpression()">getRegexpExpression</a>()</p><p class="description">returns the regular expression operator</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>(integer level)</p><p class="description">Get sql to set the transaction isolation level</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>(mixed field, array columnDef)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSubstringExpression()">getSubstringExpression</a>(string value, integer position, integer length, integer from, integer len)</p><p class="description">return string to call a function to get a substring inside an SQL statementNote: Not SQL92, but common functionality.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>(array fieldDeclaration)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getTinyIntTypeDeclarationSql()">getTinyIntTypeDeclarationSql</a>(mixed field)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTrimExpression()">getTrimExpression</a>(string str, int pos, string char)</p><p class="description">Trim a string, leading/trailing/both and with a given char which defaults to space.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTruncateTableSQL()">getTruncateTableSQL</a>(string tableName, bool cascade)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>(array field)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#prefersIdentityColumns()">prefersIdentityColumns</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#supportsAlterTable()">supportsAlterTable</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#supportsForeignKeyConstraints()">supportsForeignKeyConstraints</a>()</p><p class="description">SQLite does support foreign key constraints, but only in CREATE TABLE statements...
+</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#udfLocate()">udfLocate</a>(string str, string substr, int offset)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#udfMod()">udfMod</a>(mixed a, mixed b)</p><p class="description">User-defined function for Sqlite that implements MOD(a, b)</p></td>
+</tr>
+<tr>
+<td class="type">static  float</td>
+<td class="description"><p class="name"><a href="#udfSqrt()">udfSqrt</a>(int|float value)</p><p class="description">User-defined function for Sqlite that is used with PDO::sqliteCreateFunction()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Platforms\AbstractPlatform</th></tr>
+<tr><td><a href="../../../doctrine/dbal/platforms/abstractplatform.html#convertBooleans()">convertBooleans</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#fixSchemaElementName()">fixSchemaElementName</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAcosExpression()">getAcosExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAlterTableSQL()">getAlterTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getAvgExpression()">getAvgExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBetweenExpression()">getBetweenExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCheckDeclarationSQL()">getCheckDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnCharsetDeclarationSQL()">getColumnCharsetDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnCollationDeclarationSQL()">getColumnCollationDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationListSQL()">getColumnDeclarationListSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationSQL()">getColumnDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getConcatExpression()">getConcatExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCosExpression()">getCosExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCountExpression()">getCountExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateConstraintSQL()">getCreateConstraintSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateDatabaseSQL()">getCreateDatabaseSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateForeignKeySQL()">getCreateForeignKeySQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateIndexSQL()">getCreateIndexSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateSequenceSQL()">getCreateSequenceSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateTableSQL()">getCreateTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCreateViewSQL()">getCreateViewSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentDateSQL()">getCurrentDateSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentTimeSQL()">getCurrentTimeSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCurrentTimestampSQL()">getCurrentTimestampSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getCustomTypeDeclarationSQL()">getCustomTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateFormatString()">getDateFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTimeFormatString()">getDateTimeFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDecimalTypeDeclarationSQL()">getDecimalTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDefaultTransactionIsolationLevel()">getDefaultTransactionIsolationLevel</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDefaultValueDeclarationSQL()">getDefaultValueDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropConstraintSQL()">getDropConstraintSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropDatabaseSQL()">getDropDatabaseSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropForeignKeySQL()">getDropForeignKeySQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropIndexSQL()">getDropIndexSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropSequenceSQL()">getDropSequenceSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropTableSQL()">getDropTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getDropViewSQL()">getDropViewSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForUpdateSql()">getForUpdateSql</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyBaseDeclarationSQL()">getForeignKeyBaseDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyDeclarationSQL()">getForeignKeyDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getForeignKeyReferentialActionSQL()">getForeignKeyReferentialActionSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIdentityColumnNullInsertSQL()">getIdentityColumnNullInsertSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getInExpression()">getInExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIndexDeclarationSQL()">getIndexDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIndexFieldDeclarationListSQL()">getIndexFieldDeclarationListSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIsNotNullExpression()">getIsNotNullExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getIsNullExpression()">getIsNullExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLengthExpression()">getLengthExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListDatabasesSQL()">getListDatabasesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListSequencesSQL()">getListSequencesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableColumnsSQL()">getListTableColumnsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableConstraintsSQL()">getListTableConstraintsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableForeignKeysSQL()">getListTableForeignKeysSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTableIndexesSQL()">getListTableIndexesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListTablesSQL()">getListTablesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListUsersSQL()">getListUsersSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getListViewsSQL()">getListViewsSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLocateExpression()">getLocateExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLowerExpression()">getLowerExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getLtrimExpression()">getLtrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMaxExpression()">getMaxExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMaxIdentifierLength()">getMaxIdentifierLength</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMd5Expression()">getMd5Expression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getMinExpression()">getMinExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getModExpression()">getModExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getName()">getName</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getNotExpression()">getNotExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getNowExpression()">getNowExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getPiExpression()">getPiExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRegexpExpression()">getRegexpExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRoundExpression()">getRoundExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getRtrimExpression()">getRtrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSQLResultCasing()">getSQLResultCasing</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSequenceNextValSQL()">getSequenceNextValSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSetCharsetSQL()">getSetCharsetSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getShowDatabasesSQL()">getShowDatabasesSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSinExpression()">getSinExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSqlCommentEndString()">getSqlCommentEndString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSqlCommentStartString()">getSqlCommentStartString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSubstringExpression()">getSubstringExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getSumExpression()">getSumExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTemporaryTableSQL()">getTemporaryTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTimeFormatString()">getTimeFormatString</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTrimExpression()">getTrimExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getTruncateTableSQL()">getTruncateTableSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUniqueConstraintDeclarationSQL()">getUniqueConstraintDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUniqueFieldDeclarationSQL()">getUniqueFieldDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getUpperExpression()">getUpperExpression</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getVarcharMaxLength()">getVarcharMaxLength</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#getWildcards()">getWildcards</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#modifyLimitQuery()">modifyLimitQuery</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#prefersIdentityColumns()">prefersIdentityColumns</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#prefersSequences()">prefersSequences</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#quoteIdentifier()">quoteIdentifier</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsAlterTable()">supportsAlterTable</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyConstraints()">supportsForeignKeyConstraints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsGettingAffectedRows()">supportsGettingAffectedRows</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsIdentityColumns()">supportsIdentityColumns</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsIndexes()">supportsIndexes</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsPrimaryConstraints()">supportsPrimaryConstraints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSavepoints()">supportsSavepoints</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSchemas()">supportsSchemas</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsSequences()">supportsSequences</a>, <a href="../../../doctrine/dbal/platforms/abstractplatform.html#supportsTransactions()">supportsTransactions</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 176</div>
+<h3 id="getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getBigIntTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 160</div>
+<h3 id="getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getBooleanTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 321</div>
+<h3 id="getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL</h3>
+<code class="signature">public  void <strong>getClobTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p>Gets the SQL snippet used to declare a CLOB column type.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 353</div>
+<h3 id="getCreateViewSQL()">getCreateViewSQL</h3>
+<code class="signature">public  void <strong>getCreateViewSQL</strong>(mixed name, mixed sql)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 208</div>
+<h3 id="getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 216</div>
+<h3 id="getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getDateTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 358</div>
+<h3 id="getDropViewSQL()">getDropViewSQL</h3>
+<code class="signature">public  void <strong>getDropViewSQL</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 168</div>
+<h3 id="getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getIntegerTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 331</div>
+<h3 id="getListTableColumnsSQL()">getListTableColumnsSQL</h3>
+<code class="signature">public  void <strong>getListTableColumnsSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 326</div>
+<h3 id="getListTableConstraintsSQL()">getListTableConstraintsSQL</h3>
+<code class="signature">public  void <strong>getListTableConstraintsSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 336</div>
+<h3 id="getListTableIndexesSQL()">getListTableIndexesSQL</h3>
+<code class="signature">public  void <strong>getListTableIndexesSQL</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 341</div>
+<h3 id="getListTablesSQL()">getListTablesSQL</h3>
+<code class="signature">public  void <strong>getListTablesSQL</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 348</div>
+<h3 id="getListViewsSQL()">getListViewsSQL</h3>
+<code class="signature">public  string <strong>getListViewsSQL</strong>(string database)</code>
+<div class="details">
+<p>Get the SQL to list all views of a database or user.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 121</div>
+<h3 id="getLocateExpression()">getLocateExpression</h3>
+<code class="signature">public  integer <strong>getLocateExpression</strong>(string str, string substr, mixed startPos, int pos)</code>
+<div class="details">
+<p>returns the position of the first occurrence of substring $substr in string $str</p><dl>
+<dt>Parameters:</dt>
+<dd>substr - literal string to find</dd>
+<dd>str - literal string</dd>
+<dd>pos - position to start at, beginning of string by default</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 200</div>
+<h3 id="getMediumIntTypeDeclarationSql()">getMediumIntTypeDeclarationSql</h3>
+<code class="signature">public  void <strong>getMediumIntTypeDeclarationSql</strong>(mixed field)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 386</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Get the platform name for this instance</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 55</div>
+<h3 id="getNowExpression()">getNowExpression</h3>
+<code class="signature">public  string <strong>getNowExpression</strong>(mixed type)</code>
+<div class="details">
+<p>Return string to call a variable with the current timestamp inside an SQL statement
+There are three special variables for current date and time.</p><dl>
+<dt>Returns:</dt>
+<dd>sqlite function as string</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 43</div>
+<h3 id="getRegexpExpression()">getRegexpExpression</h3>
+<code class="signature">public  string <strong>getRegexpExpression</strong>()</code>
+<div class="details">
+<p>returns the regular expression operator</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 144</div>
+<h3 id="getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL</h3>
+<code class="signature">public  void <strong>getSetTransactionIsolationSQL</strong>(integer level)</code>
+<div class="details">
+<p>Get sql to set the transaction isolation level</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 192</div>
+<h3 id="getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getSmallIntTypeDeclarationSQL</strong>(mixed field, array columnDef)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 105</div>
+<h3 id="getSubstringExpression()">getSubstringExpression</h3>
+<code class="signature">public  string <strong>getSubstringExpression</strong>(string value, integer position, integer length, integer from, integer len)</code>
+<div class="details">
+<p>return string to call a function to get a substring inside an SQL statement</p><p>Note: Not SQL92, but common functionality.</p><p>SQLite only supports the 2 parameter variant of this function</p><dl>
+<dt>Parameters:</dt>
+<dd>value - an sql string literal or column name/alias</dd>
+<dd>position - where to start the substring portion</dd>
+<dd>length - the substring portion length</dd>
+<dt>Returns:</dt>
+<dd>SQL substring function with given parameters</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 224</div>
+<h3 id="getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL</h3>
+<code class="signature">public  string <strong>getTimeTypeDeclarationSQL</strong>(array fieldDeclaration)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 184</div>
+<h3 id="getTinyIntTypeDeclarationSql()">getTinyIntTypeDeclarationSql</h3>
+<code class="signature">public  void <strong>getTinyIntTypeDeclarationSql</strong>(mixed field)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 76</div>
+<h3 id="getTrimExpression()">getTrimExpression</h3>
+<code class="signature">public  string <strong>getTrimExpression</strong>(string str, int pos, string char)</code>
+<div class="details">
+<p>Trim a string, leading/trailing/both and with a given char which defaults to space.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 394</div>
+<h3 id="getTruncateTableSQL()">getTruncateTableSQL</h3>
+<code class="signature">public  string <strong>getTruncateTableSQL</strong>(string tableName, bool cascade)</code>
+<div class="details">
+<p></p><dl>
+<dt>Inheritdoc.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 305</div>
+<h3 id="getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL</h3>
+<code class="signature">public  void <strong>getVarcharTypeDeclarationSQL</strong>(array field)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 152</div>
+<h3 id="prefersIdentityColumns()">prefersIdentityColumns</h3>
+<code class="signature">public  boolean <strong>prefersIdentityColumns</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 376</div>
+<h3 id="supportsAlterTable()">supportsAlterTable</h3>
+<code class="signature">public  void <strong>supportsAlterTable</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 371</div>
+<h3 id="supportsForeignKeyConstraints()">supportsForeignKeyConstraints</h3>
+<code class="signature">public  boolean <strong>supportsForeignKeyConstraints</strong>()</code>
+<div class="details">
+<p>SQLite does support foreign key constraints, but only in CREATE TABLE statements...
+This really limits their usefulness and requires SQLite specific handling, so
+we simply say that SQLite does NOT support foreign keys for now...</p><dl>
+<dt>Returns:</dt>
+<dd>FALSE</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 423</div>
+<h3 id="udfLocate()">udfLocate</h3>
+<code class="signature">public static  void <strong>udfLocate</strong>(string str, string substr, int offset)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 413</div>
+<h3 id="udfMod()">udfMod</h3>
+<code class="signature">public static  void <strong>udfMod</strong>(mixed a, mixed b)</code>
+<div class="details">
+<p>User-defined function for Sqlite that implements MOD(a, b)</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Platforms/SqlitePlatform.php at line 405</div>
+<h3 id="udfSqrt()">udfSqrt</h3>
+<code class="signature">public static  float <strong>udfSqrt</strong>(int|float value)</code>
+<div class="details">
+<p>User-defined function for Sqlite that is used with PDO::sqliteCreateFunction()</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/platforms/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/platforms/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/platforms/sqliteplatform.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/abstractasset.html b/lib/api/doctrine/dbal/schema/abstractasset.html
new file mode 100644
index 000000000..819f29ae7
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/abstractasset.html
@@ -0,0 +1,127 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AbstractAsset (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/abstractasset.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\AbstractAsset</div>
+<div class="location">/Doctrine/DBAL/Schema/AbstractAsset.php at line 36</div>
+
+<h1>Class AbstractAsset</h1>
+
+<pre class="tree"><strong>AbstractAsset</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractAsset</strong></p>
+
+<div class="comment" id="overview_description"><p>The abstract asset allows to reset the name of all assets without publishing this to the public userland.</p><p>This encapsulation hack is necessary to keep a consistent state of the database schema. Say we have a list of tables
+array($tableName => Table($tableName)); if you want to rename the table, you have to make sure</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_name">$_name</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Return name of this schema asset.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/AbstractAsset.php at line 41</div>
+<h3 id="_name">_name</h3>
+<code class="signature">protected  string <strong>$_name</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/AbstractAsset.php at line 58</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Return name of this schema asset.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/abstractasset.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/abstractschemamanager.html b/lib/api/doctrine/dbal/schema/abstractschemamanager.html
new file mode 100644
index 000000000..d344c84aa
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/abstractschemamanager.html
@@ -0,0 +1,689 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AbstractSchemaManager (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/abstractschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\AbstractSchemaManager</div>
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 41</div>
+
+<h1>Class AbstractSchemaManager</h1>
+
+<pre class="tree"><strong>AbstractSchemaManager</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractSchemaManager</strong></p>
+
+<div class="comment" id="overview_description"><p>Base class for schema managers. Schema managers are used to inspect and/or
+modify the database schema/structure.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Author:</dt>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)</dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  \Doctrine\DBAL\Connection</td>
+<td class="description"><p class="name"><a href="#_conn">$_conn</a></p><p class="description">Holds instance of the Doctrine connection for this schema manager</p></td>
+</tr>
+<tr>
+<td class="type">protected  \Doctrine\DBAL\Platforms\AbstractPlatform</td>
+<td class="description"><p class="name"><a href="#_platform">$_platform</a></p><p class="description">Holds instance of the database platform used for this schema manager</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AbstractSchemaManager()">AbstractSchemaManager</a>(\Doctrine\DBAL\Connection conn)</p><p class="description">Constructor. </p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#alterTable()">alterTable</a>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> tableDiff)</p><p class="description">Alter an existing tables schema</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createConstraint()">createConstraint</a>(<a href="../../../doctrine/dbal/schema/constraint.html">Constraint</a> constraint, string|Table table)</p><p class="description">Create a constraint on a table</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createDatabase()">createDatabase</a>(string database)</p><p class="description">Creates a new database.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createForeignKey()">createForeignKey</a>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey, string|Table table)</p><p class="description">Create a new foreign key</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createIndex()">createIndex</a>(<a href="../../../doctrine/dbal/schema/index.html">Index</a> index, string table)</p><p class="description">Create a new index on a table</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/schema.html">Schema</a></td>
+<td class="description"><p class="name"><a href="#createSchema()">createSchema</a>()</p><p class="description">Create a schema instance for the current database.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a></td>
+<td class="description"><p class="name"><a href="#createSchemaConfig()">createSchemaConfig</a>()</p><p class="description">Create the configuration for this schema.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createSequence()">createSequence</a>(<a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</p><p class="description">Create a new sequence</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createTable()">createTable</a>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> table, int createFlags)</p><p class="description">Create a new table.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createView()">createView</a>(<a href="../../../doctrine/dbal/schema/view.html">View</a> view)</p><p class="description">Create a new view</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropAndCreateConstraint()">dropAndCreateConstraint</a>(<a href="../../../doctrine/dbal/schema/constraint.html">Constraint</a> constraint, string table)</p><p class="description">Drop and create a constraint</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropAndCreateDatabase()">dropAndCreateDatabase</a>(string database)</p><p class="description">Drop and creates a new database.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropAndCreateForeignKey()">dropAndCreateForeignKey</a>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey, string|Table table)</p><p class="description">Drop and create a new foreign key</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropAndCreateIndex()">dropAndCreateIndex</a>(<a href="../../../doctrine/dbal/schema/index.html">Index</a> index, string|Table table)</p><p class="description">Drop and create a new index on a table</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropAndCreateSequence()">dropAndCreateSequence</a>(<a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</p><p class="description">Drop and create a new sequence</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropAndCreateTable()">dropAndCreateTable</a>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> table)</p><p class="description">Drop and create a new table.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropAndCreateView()">dropAndCreateView</a>(<a href="../../../doctrine/dbal/schema/view.html">View</a> view)</p><p class="description">Drop and create a new view</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropConstraint()">dropConstraint</a>(<a href="../../../doctrine/dbal/schema/constraint.html">Constraint</a> constraint, string table)</p><p class="description">Drop the constraint from the given table</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropDatabase()">dropDatabase</a>(string database)</p><p class="description">Drops a database.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#dropForeignKey()">dropForeignKey</a>(mixed foreignKey, ForeignKeyConstraint|string table, Table|string name)</p><p class="description">Drops a foreign key from a table.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropIndex()">dropIndex</a>(Index|string index, string|Table table)</p><p class="description">Drop the index from the given table</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropSequence()">dropSequence</a>(string name)</p><p class="description">Drops a sequence with a given name.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropTable()">dropTable</a>(string table)</p><p class="description">Drop the given table</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#dropView()">dropView</a>(string name)</p><p class="description">Drop a view</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\DBAL\Platform\AbstractPlatform</td>
+<td class="description"><p class="name"><a href="#getDatabasePlatform()">getDatabasePlatform</a>()</p><p class="description">Return associated platform.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#listDatabases()">listDatabases</a>()</p><p class="description">List the available databases for this connection</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/sequence.html">Sequence[]</a></td>
+<td class="description"><p class="name"><a href="#listSequences()">listSequences</a>(mixed database)</p><p class="description">List the available sequences for this connection</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column[]</a></td>
+<td class="description"><p class="name"><a href="#listTableColumns()">listTableColumns</a>(string table)</p><p class="description">List the columns for a given table.
+</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#listTableDetails()">listTableDetails</a>(string tableName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint[]</a></td>
+<td class="description"><p class="name"><a href="#listTableForeignKeys()">listTableForeignKeys</a>(string table, mixed database)</p><p class="description">List the foreign keys for the given table</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/index.html">Index[]</a></td>
+<td class="description"><p class="name"><a href="#listTableIndexes()">listTableIndexes</a>(string table)</p><p class="description">List the indexes for a given table returning an array of Index instances.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#listTableNames()">listTableNames</a>()</p><p class="description">Return a list of all tables in the current database</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table[]</a></td>
+<td class="description"><p class="name"><a href="#listTables()">listTables</a>()</p><p class="description">List the tables for this connection</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/view.html">View[]</a></td>
+<td class="description"><p class="name"><a href="#listViews()">listViews</a>()</p><p class="description">List the views this connection has</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#renameTable()">renameTable</a>(string name, string newName)</p><p class="description">Rename a given table to another name</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#tryMethod()">tryMethod</a>()</p><p class="description">Try any method on the schema manager. </p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 48</div>
+<h3 id="_conn">_conn</h3>
+<code class="signature">protected  \Doctrine\DBAL\Connection <strong>$_conn</strong></code>
+<div class="details">
+<p>Holds instance of the Doctrine connection for this schema manager</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 55</div>
+<h3 id="_platform">_platform</h3>
+<code class="signature">protected  \Doctrine\DBAL\Platforms\AbstractPlatform <strong>$_platform</strong></code>
+<div class="details">
+<p>Holds instance of the database platform used for this schema manager</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 62</div>
+<h3 id="AbstractSchemaManager()">AbstractSchemaManager</h3>
+<code class="signature">public <strong>AbstractSchemaManager</strong>(\Doctrine\DBAL\Connection conn)</code>
+<div class="details">
+<p>Constructor. Accepts the Connection instance to manage the schema for</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 512</div>
+<h3 id="alterTable()">alterTable</h3>
+<code class="signature">public  void <strong>alterTable</strong>(<a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> tableDiff)</code>
+<div class="details">
+<p>Alter an existing tables schema</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 383</div>
+<h3 id="createConstraint()">createConstraint</h3>
+<code class="signature">public  void <strong>createConstraint</strong>(<a href="../../../doctrine/dbal/schema/constraint.html">Constraint</a> constraint, string|Table table)</code>
+<div class="details">
+<p>Create a constraint on a table</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 349</div>
+<h3 id="createDatabase()">createDatabase</h3>
+<code class="signature">public  void <strong>createDatabase</strong>(string database)</code>
+<div class="details">
+<p>Creates a new database.</p><dl>
+<dt>Parameters:</dt>
+<dd>database - The name of the database to create.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 405</div>
+<h3 id="createForeignKey()">createForeignKey</h3>
+<code class="signature">public  void <strong>createForeignKey</strong>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey, string|Table table)</code>
+<div class="details">
+<p>Create a new foreign key</p><dl>
+<dt>Parameters:</dt>
+<dd>foreignKey - ForeignKey instance</dd>
+<dd>table - name of the table on which the foreign key is to be created</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 394</div>
+<h3 id="createIndex()">createIndex</h3>
+<code class="signature">public  void <strong>createIndex</strong>(<a href="../../../doctrine/dbal/schema/index.html">Index</a> index, string table)</code>
+<div class="details">
+<p>Create a new index on a table</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>table - name of the table on which the index is to be created</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 750</div>
+<h3 id="createSchema()">createSchema</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/schema.html">Schema</a> <strong>createSchema</strong>()</code>
+<div class="details">
+<p>Create a schema instance for the current database.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 766</div>
+<h3 id="createSchemaConfig()">createSchemaConfig</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a> <strong>createSchemaConfig</strong>()</code>
+<div class="details">
+<p>Create the configuration for this schema.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 372</div>
+<h3 id="createSequence()">createSequence</h3>
+<code class="signature">public  void <strong>createSequence</strong>(<a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</code>
+<div class="details">
+<p>Create a new sequence</p><dl>
+<dt>Throws:</dt>
+<dd>if something fails at database level</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 360</div>
+<h3 id="createTable()">createTable</h3>
+<code class="signature">public  void <strong>createTable</strong>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> table, int createFlags)</code>
+<div class="details">
+<p>Create a new table.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 415</div>
+<h3 id="createView()">createView</h3>
+<code class="signature">public  void <strong>createView</strong>(<a href="../../../doctrine/dbal/schema/view.html">View</a> view)</code>
+<div class="details">
+<p>Create a new view</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 430</div>
+<h3 id="dropAndCreateConstraint()">dropAndCreateConstraint</h3>
+<code class="signature">public  void <strong>dropAndCreateConstraint</strong>(<a href="../../../doctrine/dbal/schema/constraint.html">Constraint</a> constraint, string table)</code>
+<div class="details">
+<p>Drop and create a constraint</p><dl>
+<dt>See Also:</dt>
+<dd>dropConstraint()</dd>
+<dd>createConstraint()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 488</div>
+<h3 id="dropAndCreateDatabase()">dropAndCreateDatabase</h3>
+<code class="signature">public  void <strong>dropAndCreateDatabase</strong>(string database)</code>
+<div class="details">
+<p>Drop and creates a new database.</p><dl>
+<dt>Parameters:</dt>
+<dd>database - The name of the database to create.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 454</div>
+<h3 id="dropAndCreateForeignKey()">dropAndCreateForeignKey</h3>
+<code class="signature">public  void <strong>dropAndCreateForeignKey</strong>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> foreignKey, string|Table table)</code>
+<div class="details">
+<p>Drop and create a new foreign key</p><dl>
+<dt>Parameters:</dt>
+<dd>foreignKey - associative array that defines properties of the foreign key to be created.</dd>
+<dd>table - name of the table on which the foreign key is to be created</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 442</div>
+<h3 id="dropAndCreateIndex()">dropAndCreateIndex</h3>
+<code class="signature">public  void <strong>dropAndCreateIndex</strong>(<a href="../../../doctrine/dbal/schema/index.html">Index</a> index, string|Table table)</code>
+<div class="details">
+<p>Drop and create a new index on a table</p><dl>
+<dt>Parameters:</dt>
+<dd>table - name of the table on which the index is to be created</dd>
+<dd></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 466</div>
+<h3 id="dropAndCreateSequence()">dropAndCreateSequence</h3>
+<code class="signature">public  void <strong>dropAndCreateSequence</strong>(<a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</code>
+<div class="details">
+<p>Drop and create a new sequence</p><dl>
+<dt>Throws:</dt>
+<dd>if something fails at database level</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 477</div>
+<h3 id="dropAndCreateTable()">dropAndCreateTable</h3>
+<code class="signature">public  void <strong>dropAndCreateTable</strong>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> table)</code>
+<div class="details">
+<p>Drop and create a new table.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 499</div>
+<h3 id="dropAndCreateView()">dropAndCreateView</h3>
+<code class="signature">public  void <strong>dropAndCreateView</strong>(<a href="../../../doctrine/dbal/schema/view.html">View</a> view)</code>
+<div class="details">
+<p>Drop and create a new view</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 304</div>
+<h3 id="dropConstraint()">dropConstraint</h3>
+<code class="signature">public  void <strong>dropConstraint</strong>(<a href="../../../doctrine/dbal/schema/constraint.html">Constraint</a> constraint, string table)</code>
+<div class="details">
+<p>Drop the constraint from the given table</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>table - The name of the table</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 268</div>
+<h3 id="dropDatabase()">dropDatabase</h3>
+<code class="signature">public  void <strong>dropDatabase</strong>(string database)</code>
+<div class="details">
+<p>Drops a database.</p><p>NOTE: You can not drop the database this SchemaManager is currently connected to.</p><dl>
+<dt>Parameters:</dt>
+<dd>database - The name of the database to drop</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 316</div>
+<h3 id="dropForeignKey()">dropForeignKey</h3>
+<code class="signature">public  boolean <strong>dropForeignKey</strong>(mixed foreignKey, ForeignKeyConstraint|string table, Table|string name)</code>
+<div class="details">
+<p>Drops a foreign key from a table.</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of the table with the foreign key.</dd>
+<dd>name - The name of the foreign key.</dd>
+<dt>Returns:</dt>
+<dd>$result</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 289</div>
+<h3 id="dropIndex()">dropIndex</h3>
+<code class="signature">public  void <strong>dropIndex</strong>(Index|string index, string|Table table)</code>
+<div class="details">
+<p>Drop the index from the given table</p><dl>
+<dt>Parameters:</dt>
+<dd>index - The name of the index</dd>
+<dd>table - The name of the table</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 326</div>
+<h3 id="dropSequence()">dropSequence</h3>
+<code class="signature">public  void <strong>dropSequence</strong>(string name)</code>
+<div class="details">
+<p>Drops a sequence with a given name.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name of the sequence to drop.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 278</div>
+<h3 id="dropTable()">dropTable</h3>
+<code class="signature">public  void <strong>dropTable</strong>(string table)</code>
+<div class="details">
+<p>Drop the given table</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of the table to drop</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 337</div>
+<h3 id="dropView()">dropView</h3>
+<code class="signature">public  boolean <strong>dropView</strong>(string name)</code>
+<div class="details">
+<p>Drop a view</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name of the view</dd>
+<dt>Returns:</dt>
+<dd>$result</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 73</div>
+<h3 id="getDatabasePlatform()">getDatabasePlatform</h3>
+<code class="signature">public  \Doctrine\DBAL\Platform\AbstractPlatform <strong>getDatabasePlatform</strong>()</code>
+<div class="details">
+<p>Return associated platform.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 109</div>
+<h3 id="listDatabases()">listDatabases</h3>
+<code class="signature">public  array <strong>listDatabases</strong>()</code>
+<div class="details">
+<p>List the available databases for this connection</p><dl>
+<dt>Returns:</dt>
+<dd>$databases</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 123</div>
+<h3 id="listSequences()">listSequences</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/sequence.html">Sequence[]</a> <strong>listSequences</strong>(mixed database)</code>
+<div class="details">
+<p>List the available sequences for this connection</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 148</div>
+<h3 id="listTableColumns()">listTableColumns</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column[]</a> <strong>listTableColumns</strong>(string table)</code>
+<div class="details">
+<p>List the columns for a given table.</p><p>In contrast to other libraries and to the old version of Doctrine,
+this column definition does try to contain the 'primary' field for
+the reason that it is not portable accross different RDBMS. Use
+listTableIndexes($tableName) to retrieve the primary key
+of a table. We're a RDBMS specifies more details these are held
+in the platformDetails array.</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of the table.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 209</div>
+<h3 id="listTableDetails()">listTableDetails</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>listTableDetails</strong>(string tableName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 248</div>
+<h3 id="listTableForeignKeys()">listTableForeignKeys</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint[]</a> <strong>listTableForeignKeys</strong>(string table, mixed database)</code>
+<div class="details">
+<p>List the foreign keys for the given table</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of the table</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 165</div>
+<h3 id="listTableIndexes()">listTableIndexes</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/index.html">Index[]</a> <strong>listTableIndexes</strong>(string table)</code>
+<div class="details">
+<p>List the indexes for a given table returning an array of Index instances.</p><p>Keys of the portable indexes list are all lower-cased.</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of the table</dd>
+<dt>Returns:</dt>
+<dd>$tableIndexes</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 179</div>
+<h3 id="listTableNames()">listTableNames</h3>
+<code class="signature">public  array <strong>listTableNames</strong>()</code>
+<div class="details">
+<p>Return a list of all tables in the current database</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 193</div>
+<h3 id="listTables()">listTables</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table[]</a> <strong>listTables</strong>()</code>
+<div class="details">
+<p>List the tables for this connection</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 233</div>
+<h3 id="listViews()">listViews</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/view.html">View[]</a> <strong>listViews</strong>()</code>
+<div class="details">
+<p>List the views this connection has</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 528</div>
+<h3 id="renameTable()">renameTable</h3>
+<code class="signature">public  void <strong>renameTable</strong>(string name, string newName)</code>
+<div class="details">
+<p>Rename a given table to another name</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The current name of the table</dd>
+<dd>newName - The new name of the table</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/AbstractSchemaManager.php at line 90</div>
+<h3 id="tryMethod()">tryMethod</h3>
+<code class="signature">public  mixed <strong>tryMethod</strong>()</code>
+<div class="details">
+<p>Try any method on the schema manager. Normally a method throws an 
+exception when your DBMS doesn't support it or if an error occurs.
+This method allows you to try and method on your SchemaManager
+instance and will return false if it does not work or is not supported.</p><p><code>
+$result = $sm->tryMethod('dropView', 'view_name');
+</code></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/abstractschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/column.html b/lib/api/doctrine/dbal/schema/column.html
new file mode 100644
index 000000000..8e4ea5e97
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/column.html
@@ -0,0 +1,561 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Column (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/column.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Column</div>
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 36</div>
+
+<h1>Class Column</h1>
+
+<pre class="tree">Class:Column - Superclass: AbstractAsset
+<a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a><br>   &lfloor;&nbsp;<strong>Column</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Column</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Object representation of a database column</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_columnDefinition">$_columnDefinition</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_default">$_default</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  bool</td>
+<td class="description"><p class="name"><a href="#_fixed">$_fixed</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  int</td>
+<td class="description"><p class="name"><a href="#_length">$_length</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  bool</td>
+<td class="description"><p class="name"><a href="#_notnull">$_notnull</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_platformOptions">$_platformOptions</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  int</td>
+<td class="description"><p class="name"><a href="#_precision">$_precision</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  int</td>
+<td class="description"><p class="name"><a href="#_scale">$_scale</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  \Doctrine\DBAL\Types\Type</td>
+<td class="description"><p class="name"><a href="#_type">$_type</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  bool</td>
+<td class="description"><p class="name"><a href="#_unsigned">$_unsigned</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#_name">_name</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Column()">Column</a>(string columnName, Doctrine\DBAL\Types\Type type, mixed options, int length, bool notNull, mixed default, bool unsigned, bool fixed, int precision, int scale, array platformOptions)</p><p class="description">Create a new Column</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getColumnDefinition()">getColumnDefinition</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDefault()">getDefault</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getFixed()">getFixed</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getLength()">getLength</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getNotnull()">getNotnull</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getPlatformOption()">getPlatformOption</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getPlatformOptions()">getPlatformOptions</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getPrecision()">getPrecision</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getScale()">getScale</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getType()">getType</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getUnsigned()">getUnsigned</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#hasPlatformOption()">hasPlatformOption</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setColumnDefinition()">setColumnDefinition</a>(mixed value, string )</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setDefault()">setDefault</a>(mixed default)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setFixed()">setFixed</a>(bool fixed)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setLength()">setLength</a>(int length)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setNotnull()">setNotnull</a>(bool notnull)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setOptions()">setOptions</a>(array options)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setPlatformOption()">setPlatformOption</a>(string name, mixed value)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setPlatformOptions()">setPlatformOptions</a>(array platformOptions)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setPrecision()">setPrecision</a>(int precision)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setScale()">setScale</a>(int scale)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setType()">setType</a>(<a href="../../../doctrine/dbal/types/type.html">Type</a> type)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#setUnsigned()">setUnsigned</a>(bool unsigned)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#toArray()">toArray</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#visit()">visit</a>(<a href="../../../doctrine/dbal/schema/visitor/visitor.html">Visitor</a> visitor)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#getName()">getName</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 86</div>
+<h3 id="_columnDefinition">_columnDefinition</h3>
+<code class="signature">protected  string <strong>$_columnDefinition</strong> = null</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 76</div>
+<h3 id="_default">_default</h3>
+<code class="signature">protected  string <strong>$_default</strong> = null</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 66</div>
+<h3 id="_fixed">_fixed</h3>
+<code class="signature">protected  bool <strong>$_fixed</strong> = false</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 46</div>
+<h3 id="_length">_length</h3>
+<code class="signature">protected  int <strong>$_length</strong> = 255</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 71</div>
+<h3 id="_notnull">_notnull</h3>
+<code class="signature">protected  bool <strong>$_notnull</strong> = true</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 81</div>
+<h3 id="_platformOptions">_platformOptions</h3>
+<code class="signature">protected  array <strong>$_platformOptions</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 51</div>
+<h3 id="_precision">_precision</h3>
+<code class="signature">protected  int <strong>$_precision</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 56</div>
+<h3 id="_scale">_scale</h3>
+<code class="signature">protected  int <strong>$_scale</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 41</div>
+<h3 id="_type">_type</h3>
+<code class="signature">protected  \Doctrine\DBAL\Types\Type <strong>$_type</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 61</div>
+<h3 id="_unsigned">_unsigned</h3>
+<code class="signature">protected  bool <strong>$_unsigned</strong> = false</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 102</div>
+<h3 id="Column()">Column</h3>
+<code class="signature">public <strong>Column</strong>(string columnName, Doctrine\DBAL\Types\Type type, mixed options, int length, bool notNull, mixed default, bool unsigned, bool fixed, int precision, int scale, array platformOptions)</code>
+<div class="details">
+<p>Create a new Column</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 300</div>
+<h3 id="getColumnDefinition()">getColumnDefinition</h3>
+<code class="signature">public  void <strong>getColumnDefinition</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 280</div>
+<h3 id="getDefault()">getDefault</h3>
+<code class="signature">public  void <strong>getDefault</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 270</div>
+<h3 id="getFixed()">getFixed</h3>
+<code class="signature">public  void <strong>getFixed</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 250</div>
+<h3 id="getLength()">getLength</h3>
+<code class="signature">public  void <strong>getLength</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 275</div>
+<h3 id="getNotnull()">getNotnull</h3>
+<code class="signature">public  void <strong>getNotnull</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 295</div>
+<h3 id="getPlatformOption()">getPlatformOption</h3>
+<code class="signature">public  void <strong>getPlatformOption</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 285</div>
+<h3 id="getPlatformOptions()">getPlatformOptions</h3>
+<code class="signature">public  void <strong>getPlatformOptions</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 255</div>
+<h3 id="getPrecision()">getPrecision</h3>
+<code class="signature">public  void <strong>getPrecision</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 260</div>
+<h3 id="getScale()">getScale</h3>
+<code class="signature">public  void <strong>getScale</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 245</div>
+<h3 id="getType()">getType</h3>
+<code class="signature">public  void <strong>getType</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 265</div>
+<h3 id="getUnsigned()">getUnsigned</h3>
+<code class="signature">public  void <strong>getUnsigned</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 290</div>
+<h3 id="hasPlatformOption()">hasPlatformOption</h3>
+<code class="signature">public  void <strong>hasPlatformOption</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 239</div>
+<h3 id="setColumnDefinition()">setColumnDefinition</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setColumnDefinition</strong>(mixed value, string )</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 205</div>
+<h3 id="setDefault()">setDefault</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setDefault</strong>(mixed default)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 184</div>
+<h3 id="setFixed()">setFixed</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setFixed</strong>(bool fixed)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 138</div>
+<h3 id="setLength()">setLength</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setLength</strong>(int length)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 194</div>
+<h3 id="setNotnull()">setNotnull</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setNotnull</strong>(bool notnull)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 113</div>
+<h3 id="setOptions()">setOptions</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setOptions</strong>(array options)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 228</div>
+<h3 id="setPlatformOption()">setPlatformOption</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setPlatformOption</strong>(string name, mixed value)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 216</div>
+<h3 id="setPlatformOptions()">setPlatformOptions</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setPlatformOptions</strong>(array platformOptions)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 152</div>
+<h3 id="setPrecision()">setPrecision</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setPrecision</strong>(int precision)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 162</div>
+<h3 id="setScale()">setScale</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setScale</strong>(int scale)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 128</div>
+<h3 id="setType()">setType</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setType</strong>(<a href="../../../doctrine/dbal/types/type.html">Type</a> type)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 173</div>
+<h3 id="setUnsigned()">setUnsigned</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>setUnsigned</strong>(bool unsigned)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 316</div>
+<h3 id="toArray()">toArray</h3>
+<code class="signature">public  array <strong>toArray</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Column.php at line 308</div>
+<h3 id="visit()">visit</h3>
+<code class="signature">public  void <strong>visit</strong>(<a href="../../../doctrine/dbal/schema/visitor/visitor.html">Visitor</a> visitor)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/column.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/columndiff.html b/lib/api/doctrine/dbal/schema/columndiff.html
new file mode 100644
index 000000000..0dfa510bc
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/columndiff.html
@@ -0,0 +1,166 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ColumnDiff (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/columndiff.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\ColumnDiff</div>
+<div class="location">/Doctrine/DBAL/Schema/ColumnDiff.php at line 33</div>
+
+<h1>Class ColumnDiff</h1>
+
+<pre class="tree"><strong>ColumnDiff</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ColumnDiff</strong></p>
+
+<div class="comment" id="overview_description"><p>Represent the change of a column</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#changedProperties">$changedProperties</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#column">$column</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#oldColumnName">$oldColumnName</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ColumnDiff()">ColumnDiff</a>(mixed oldColumnName, mixed column, mixed changedProperties)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#hasChanged()">hasChanged</a>(mixed propertyName)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/ColumnDiff.php at line 45</div>
+<h3 id="changedProperties">changedProperties</h3>
+<code class="signature">public  array <strong>$changedProperties</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ColumnDiff.php at line 40</div>
+<h3 id="column">column</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>$column</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ColumnDiff.php at line 35</div>
+<h3 id="oldColumnName">oldColumnName</h3>
+<code class="signature">public  mixed <strong>$oldColumnName</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/ColumnDiff.php at line 47</div>
+<h3 id="ColumnDiff()">ColumnDiff</h3>
+<code class="signature">public <strong>ColumnDiff</strong>(mixed oldColumnName, mixed column, mixed changedProperties)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/ColumnDiff.php at line 54</div>
+<h3 id="hasChanged()">hasChanged</h3>
+<code class="signature">public  void <strong>hasChanged</strong>(mixed propertyName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/columndiff.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/comparator.html b/lib/api/doctrine/dbal/schema/comparator.html
new file mode 100644
index 000000000..1bc6ef204
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/comparator.html
@@ -0,0 +1,204 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Comparator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/comparator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Comparator</div>
+<div class="location">/Doctrine/DBAL/Schema/Comparator.php at line 35</div>
+
+<h1>Class Comparator</h1>
+
+<pre class="tree"><strong>Comparator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Comparator</strong></p>
+
+<div class="comment" id="overview_description"><p>Compare to Schemas and return an instance of SchemaDiff</p></div>
+
+<dl>
+<dt>Copyright:</dt>
+<dd>Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.</dd>
+<dt>License:</dt>
+<dd>http://ez.no/licenses/new_bsd New BSD License</dd>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addColumnPlatformOptionCheck()">addColumnPlatformOptionCheck</a>(string optionName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/schemadiff.html">SchemaDiff</a></td>
+<td class="description"><p class="name"><a href="#compare()">compare</a>(<a href="../../../doctrine/dbal/schema/schema.html">Schema</a> fromSchema, <a href="../../../doctrine/dbal/schema/schema.html">Schema</a> toSchema)</p><p class="description">Returns a SchemaDiff object containing the differences between the schemas $fromSchema and $toSchema.
+</p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemadiff.html">SchemaDiff</a></td>
+<td class="description"><p class="name"><a href="#compareSchemas()">compareSchemas</a>(<a href="../../../doctrine/dbal/schema/schema.html">Schema</a> fromSchema, <a href="../../../doctrine/dbal/schema/schema.html">Schema</a> toSchema)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#diffColumn()">diffColumn</a>(<a href="../../../doctrine/dbal/schema/column.html">Column</a> column1, <a href="../../../doctrine/dbal/schema/column.html">Column</a> column2)</p><p class="description">Returns the difference between the fields $field1 and $field2.
+</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#diffForeignKey()">diffForeignKey</a>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> key1, <a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> key2)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#diffIndex()">diffIndex</a>(<a href="../../../doctrine/dbal/schema/index.html">Index</a> index1, <a href="../../../doctrine/dbal/schema/index.html">Index</a> index2)</p><p class="description">Finds the difference between the indexes $index1 and $index2.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#diffSequence()">diffSequence</a>(<a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence1, <a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence2)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> bool|TableDiff</td>
+<td class="description"><p class="name"><a href="#diffTable()">diffTable</a>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> table1, <a href="../../../doctrine/dbal/schema/table.html">Table</a> table2)</p><p class="description">Returns the difference between the tables $table1 and $table2.
+</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Comparator.php at line 45</div>
+<h3 id="addColumnPlatformOptionCheck()">addColumnPlatformOptionCheck</h3>
+<code class="signature">public  void <strong>addColumnPlatformOptionCheck</strong>(string optionName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Comparator.php at line 73</div>
+<h3 id="compare()">compare</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/schemadiff.html">SchemaDiff</a> <strong>compare</strong>(<a href="../../../doctrine/dbal/schema/schema.html">Schema</a> fromSchema, <a href="../../../doctrine/dbal/schema/schema.html">Schema</a> toSchema)</code>
+<div class="details">
+<p>Returns a SchemaDiff object containing the differences between the schemas $fromSchema and $toSchema.</p><p>The returned diferences are returned in such a way that they contain the
+operations to change the schema stored in $fromSchema to the schema that is
+stored in $toSchema.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Comparator.php at line 55</div>
+<h3 id="compareSchemas()">compareSchemas</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemadiff.html">SchemaDiff</a> <strong>compareSchemas</strong>(<a href="../../../doctrine/dbal/schema/schema.html">Schema</a> fromSchema, <a href="../../../doctrine/dbal/schema/schema.html">Schema</a> toSchema)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Comparator.php at line 305</div>
+<h3 id="diffColumn()">diffColumn</h3>
+<code class="signature">public  array <strong>diffColumn</strong>(<a href="../../../doctrine/dbal/schema/column.html">Column</a> column1, <a href="../../../doctrine/dbal/schema/column.html">Column</a> column2)</code>
+<div class="details">
+<p>Returns the difference between the fields $field1 and $field2.</p><p>If there are differences this method returns $field2, otherwise the
+boolean false.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Comparator.php at line 273</div>
+<h3 id="diffForeignKey()">diffForeignKey</h3>
+<code class="signature">public  bool <strong>diffForeignKey</strong>(<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> key1, <a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> key2)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Comparator.php at line 366</div>
+<h3 id="diffIndex()">diffIndex</h3>
+<code class="signature">public  bool <strong>diffIndex</strong>(<a href="../../../doctrine/dbal/schema/index.html">Index</a> index1, <a href="../../../doctrine/dbal/schema/index.html">Index</a> index2)</code>
+<div class="details">
+<p>Finds the difference between the indexes $index1 and $index2.</p><p>Compares $index1 with $index2 and returns $index2 if there are any
+differences or false in case there are no differences.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Comparator.php at line 140</div>
+<h3 id="diffSequence()">diffSequence</h3>
+<code class="signature">public  void <strong>diffSequence</strong>(<a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence1, <a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence2)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Comparator.php at line 163</div>
+<h3 id="diffTable()">diffTable</h3>
+<code class="signature">public  bool|TableDiff <strong>diffTable</strong>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> table1, <a href="../../../doctrine/dbal/schema/table.html">Table</a> table2)</code>
+<div class="details">
+<p>Returns the difference between the tables $table1 and $table2.</p><p>If there are no differences this method returns the boolean false.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/comparator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/constraint.html b/lib/api/doctrine/dbal/schema/constraint.html
new file mode 100644
index 000000000..1ea5080de
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/constraint.html
@@ -0,0 +1,121 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Constraint (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/constraint.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Constraint</div>
+<div class="location">/Doctrine/DBAL/Schema/Constraint.php at line 33</div>
+
+<h1>Interface Constraint</h1>
+
+<pre class="tree"><strong>Constraint</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>Constraint</strong></p>
+
+<div class="comment" id="overview_description"><p>Marker interface for contraints</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getColumns()">getColumns</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Constraint.php at line 37</div>
+<h3 id="getColumns()">getColumns</h3>
+<code class="signature">public  void <strong>getColumns</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Constraint.php at line 35</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  void <strong>getName</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/constraint.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/foreignkeyconstraint.html b/lib/api/doctrine/dbal/schema/foreignkeyconstraint.html
new file mode 100644
index 000000000..58ebb6d7d
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/foreignkeyconstraint.html
@@ -0,0 +1,327 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ForeignKeyConstraint (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\ForeignKeyConstraint</div>
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 26</div>
+
+<h1>Class ForeignKeyConstraint</h1>
+
+<pre class="tree">Class:ForeignKeyConstraint - Superclass: AbstractAsset
+<a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a><br>   &lfloor;&nbsp;<strong>ForeignKeyConstraint</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Constraint </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>ForeignKeyConstraint</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>The abstract asset allows to reset the name of all assets without publishing this to the public userland.</p><p>This encapsulation hack is necessary to keep a consistent state of the database schema. Say we have a list of tables
+array($tableName => Table($tableName)); if you want to rename the table, you have to make sure</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_cascade">$_cascade</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_foreignColumnNames">$_foreignColumnNames</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_foreignTableName">$_foreignTableName</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_localColumnNames">$_localColumnNames</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#_localTable">$_localTable</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_options">$_options</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#_name">_name</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ForeignKeyConstraint()">ForeignKeyConstraint</a>(array localColumnNames, string foreignTableName, array foreignColumnNames, string|null name, mixed options, string cascade)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getColumns()">getColumns</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getForeignColumns()">getForeignColumns</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getForeignTableName()">getForeignTableName</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getLocalColumns()">getLocalColumns</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getLocalTableName()">getLocalTableName</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getOption()">getOption</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#hasOption()">hasOption</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> string|null</td>
+<td class="description"><p class="name"><a href="#onDelete()">onDelete</a>()</p><p class="description">Foreign Key onDelete status</p></td>
+</tr>
+<tr>
+<td class="type"> string|null</td>
+<td class="description"><p class="name"><a href="#onUpdate()">onUpdate</a>()</p><p class="description">Foreign Key onUpdate status</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setLocalTable()">setLocalTable</a>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> table)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#getName()">getName</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 51</div>
+<h3 id="_cascade">_cascade</h3>
+<code class="signature">protected  string <strong>$_cascade</strong> = ''</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 46</div>
+<h3 id="_foreignColumnNames">_foreignColumnNames</h3>
+<code class="signature">protected  array <strong>$_foreignColumnNames</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 41</div>
+<h3 id="_foreignTableName">_foreignTableName</h3>
+<code class="signature">protected  string <strong>$_foreignTableName</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 36</div>
+<h3 id="_localColumnNames">_localColumnNames</h3>
+<code class="signature">protected  array <strong>$_localColumnNames</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 31</div>
+<h3 id="_localTable">_localTable</h3>
+<code class="signature">protected  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>$_localTable</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 56</div>
+<h3 id="_options">_options</h3>
+<code class="signature">protected  array <strong>$_options</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 66</div>
+<h3 id="ForeignKeyConstraint()">ForeignKeyConstraint</h3>
+<code class="signature">public <strong>ForeignKeyConstraint</strong>(array localColumnNames, string foreignTableName, array foreignColumnNames, string|null name, mixed options, string cascade)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 99</div>
+<h3 id="getColumns()">getColumns</h3>
+<code class="signature">public  void <strong>getColumns</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 115</div>
+<h3 id="getForeignColumns()">getForeignColumns</h3>
+<code class="signature">public  array <strong>getForeignColumns</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 107</div>
+<h3 id="getForeignTableName()">getForeignTableName</h3>
+<code class="signature">public  string <strong>getForeignTableName</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 94</div>
+<h3 id="getLocalColumns()">getLocalColumns</h3>
+<code class="signature">public  array <strong>getLocalColumns</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 78</div>
+<h3 id="getLocalTableName()">getLocalTableName</h3>
+<code class="signature">public  string <strong>getLocalTableName</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 125</div>
+<h3 id="getOption()">getOption</h3>
+<code class="signature">public  void <strong>getOption</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 120</div>
+<h3 id="hasOption()">hasOption</h3>
+<code class="signature">public  void <strong>hasOption</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 145</div>
+<h3 id="onDelete()">onDelete</h3>
+<code class="signature">public  string|null <strong>onDelete</strong>()</code>
+<div class="details">
+<p>Foreign Key onDelete status</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 135</div>
+<h3 id="onUpdate()">onUpdate</h3>
+<code class="signature">public  string|null <strong>onUpdate</strong>()</code>
+<div class="details">
+<p>Foreign Key onUpdate status</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/ForeignKeyConstraint.php at line 86</div>
+<h3 id="setLocalTable()">setLocalTable</h3>
+<code class="signature">public  void <strong>setLocalTable</strong>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> table)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/index.html b/lib/api/doctrine/dbal/schema/index.html
new file mode 100644
index 000000000..57c836381
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/index.html
@@ -0,0 +1,219 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Index (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/index.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Index</div>
+<div class="location">/Doctrine/DBAL/Schema/Index.php at line 26</div>
+
+<h1>Class Index</h1>
+
+<pre class="tree">Class:Index - Superclass: AbstractAsset
+<a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a><br>   &lfloor;&nbsp;<strong>Index</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Constraint </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>Index</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>The abstract asset allows to reset the name of all assets without publishing this to the public userland.</p><p>This encapsulation hack is necessary to keep a consistent state of the database schema. Say we have a list of tables
+array($tableName => Table($tableName)); if you want to rename the table, you have to make sure</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_columns">$_columns</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  bool</td>
+<td class="description"><p class="name"><a href="#_isPrimary">$_isPrimary</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  bool</td>
+<td class="description"><p class="name"><a href="#_isUnique">$_isUnique</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#_name">_name</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Index()">Index</a>(string indexName, mixed columns, bool isUnique, bool isPrimary, array column)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getColumns()">getColumns</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#hasColumnAtPosition()">hasColumnAtPosition</a>(string columnName, int pos)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#isPrimary()">isPrimary</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#isUnique()">isUnique</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#getName()">getName</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Index.php at line 31</div>
+<h3 id="_columns">_columns</h3>
+<code class="signature">protected  array <strong>$_columns</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Index.php at line 41</div>
+<h3 id="_isPrimary">_isPrimary</h3>
+<code class="signature">protected  bool <strong>$_isPrimary</strong> = false</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Index.php at line 36</div>
+<h3 id="_isUnique">_isUnique</h3>
+<code class="signature">protected  bool <strong>$_isUnique</strong> = false</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Index.php at line 49</div>
+<h3 id="Index()">Index</h3>
+<code class="signature">public <strong>Index</strong>(string indexName, mixed columns, bool isUnique, bool isPrimary, array column)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Index.php at line 77</div>
+<h3 id="getColumns()">getColumns</h3>
+<code class="signature">public  array <strong>getColumns</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Index.php at line 103</div>
+<h3 id="hasColumnAtPosition()">hasColumnAtPosition</h3>
+<code class="signature">public  bool <strong>hasColumnAtPosition</strong>(string columnName, int pos)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Index.php at line 93</div>
+<h3 id="isPrimary()">isPrimary</h3>
+<code class="signature">public  bool <strong>isPrimary</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Index.php at line 85</div>
+<h3 id="isUnique()">isUnique</h3>
+<code class="signature">public  bool <strong>isUnique</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/index.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/mssqlschemamanager.html b/lib/api/doctrine/dbal/schema/mssqlschemamanager.html
new file mode 100644
index 000000000..afc9ebdaa
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/mssqlschemamanager.html
@@ -0,0 +1,301 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>MsSqlSchemaManager (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/mssqlschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\MsSqlSchemaManager</div>
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 33</div>
+
+<h1>Class MsSqlSchemaManager</h1>
+
+<pre class="tree">Class:MsSqlSchemaManager - Superclass: AbstractSchemaManager
+<a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a><br>   &lfloor;&nbsp;<strong>MsSqlSchemaManager</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>MsSqlSchemaManager</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>xxx</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Author:</dt>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractSchemaManager</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractschemamanager.html#_conn">_conn</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#_platform">_platform</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#alterTable()">alterTable</a>(string name, array changes, boolean check, <a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> tableDiff)</p><p class="description">alter an existing table</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createDatabase()">createDatabase</a>(string name, string database)</p><p class="description">create a new database</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createSequence()">createSequence</a>(mixed seqName, mixed start, mixed allocationSize, <a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropDatabase()">dropDatabase</a>(string name, string database)</p><p class="description">drop an existing database</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropSequenceSql()">dropSequenceSql</a>(string seqName)</p><p class="description">This function drops an existing sequence</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#listSequences()">listSequences</a>(string|null database)</p><p class="description">lists all database sequences</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#listTableColumns()">listTableColumns</a>(string table)</p><p class="description">lists table constraints</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#listTableIndexes()">listTableIndexes</a>(string table)</p><p class="description">lists table constraints</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#listTableTriggers()">listTableTriggers</a>(string table)</p><p class="description">lists table triggers</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#listTableViews()">listTableViews</a>(string table)</p><p class="description">lists table views</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#listTables()">listTables</a>(string|null database)</p><p class="description">lists tables</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#listTriggers()">listTriggers</a>(mixed database)</p><p class="description">lists all triggers</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#listViews()">listViews</a>(string|null database)</p><p class="description">lists database views</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractSchemaManager</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractschemamanager.html#alterTable()">alterTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createConstraint()">createConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createDatabase()">createDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createForeignKey()">createForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createIndex()">createIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSchema()">createSchema</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSchemaConfig()">createSchemaConfig</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSequence()">createSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createTable()">createTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createView()">createView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateConstraint()">dropAndCreateConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateDatabase()">dropAndCreateDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateForeignKey()">dropAndCreateForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateIndex()">dropAndCreateIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateSequence()">dropAndCreateSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateTable()">dropAndCreateTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateView()">dropAndCreateView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropConstraint()">dropConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropDatabase()">dropDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropForeignKey()">dropForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropIndex()">dropIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropSequence()">dropSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropTable()">dropTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropView()">dropView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#getDatabasePlatform()">getDatabasePlatform</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listDatabases()">listDatabases</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listSequences()">listSequences</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableColumns()">listTableColumns</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableDetails()">listTableDetails</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableForeignKeys()">listTableForeignKeys</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableIndexes()">listTableIndexes</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableNames()">listTableNames</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTables()">listTables</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listViews()">listViews</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#renameTable()">renameTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#tryMethod()">tryMethod</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 151</div>
+<h3 id="alterTable()">alterTable</h3>
+<code class="signature">public  void <strong>alterTable</strong>(string name, array changes, boolean check, <a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a> tableDiff)</code>
+<div class="details">
+<p>alter an existing table</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the table that is intended to be changed.</dd>
+<dd>changes - associative array that contains the details of each type of change that is intended to be performed. The types of changes that are currently supported are defined as follows: name New name for the table. add Associative array with the names of fields to be added as indexes of the array. The value of each entry of the array should be set to another associative array with the properties of the fields to be added. The properties of the fields should be the same as defined by the Metabase parser. remove Associative array with the names of fields to be removed as indexes of the array. Currently the values assigned to each entry are ignored. An empty array should be used for future compatibility. rename Associative array with the names of fields to be renamed as indexes of the array. The value of each entry of the array should be set to another associative array with the entry named name with the new field name and the entry named Declaration that is expected to contain the portion of the field declaration already in DBMS specific SQL code as it is used in the CREATE TABLE statement. change Associative array with the names of the fields to be changed as indexes of the array. Keep in mind that if it is intended to change either the name of a field and any other properties, the change array entries should have the new names of the fields as array indexes. The value of each entry of the array should be set to another associative array with the properties of the fields to that are meant to be changed as array entries. These entries should be assigned to the new values of the respective properties. The properties of the fields should be the same as defined by the Metabase parser. Example array( 'name' => 'userlist', 'add' => array( 'quota' => array( 'type' => 'integer', 'unsigned' => 1 ) ), 'remove' => array( 'file_limit' => array(), 'time_limit' => array() ), 'change' => array( 'name' => array( 'length' => '20', 'definition' => array( 'type' => 'text', 'length' => 20, ), ) ), 'rename' => array( 'sex' => array( 'name' => 'gender', 'definition' => array( 'type' => 'text', 'length' => 1, 'default' => 'M', ), ) ) )</dd>
+<dd>check - indicates whether the function should just check if the DBMS driver can perform the requested table alterations if the value is true or actually perform them otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 41</div>
+<h3 id="createDatabase()">createDatabase</h3>
+<code class="signature">public  void <strong>createDatabase</strong>(string name, string database)</code>
+<div class="details">
+<p>create a new database</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the database that should be created</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 196</div>
+<h3 id="createSequence()">createSequence</h3>
+<code class="signature">public  void <strong>createSequence</strong>(mixed seqName, mixed start, mixed allocationSize, <a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</code>
+<div class="details">
+<p></p><dl>
+<dt>Throws:</dt>
+<dd>if something fails at database level</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 58</div>
+<h3 id="dropDatabase()">dropDatabase</h3>
+<code class="signature">public  void <strong>dropDatabase</strong>(string name, string database)</code>
+<div class="details">
+<p>drop an existing database</p><dl>
+<dt>Parameters:</dt>
+<dd>name - name of the database that should be dropped</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 224</div>
+<h3 id="dropSequenceSql()">dropSequenceSql</h3>
+<code class="signature">public  void <strong>dropSequenceSql</strong>(string seqName)</code>
+<div class="details">
+<p>This function drops an existing sequence</p><dl>
+<dt>Parameters:</dt>
+<dd>seqName - name of the sequence to be dropped</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 235</div>
+<h3 id="listSequences()">listSequences</h3>
+<code class="signature">public  array <strong>listSequences</strong>(string|null database)</code>
+<div class="details">
+<p>lists all database sequences</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 249</div>
+<h3 id="listTableColumns()">listTableColumns</h3>
+<code class="signature">public  array <strong>listTableColumns</strong>(string table)</code>
+<div class="details">
+<p>lists table constraints</p><dl>
+<dt>Parameters:</dt>
+<dd>table - database table name</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 297</div>
+<h3 id="listTableIndexes()">listTableIndexes</h3>
+<code class="signature">public  array <strong>listTableIndexes</strong>(string table)</code>
+<div class="details">
+<p>lists table constraints</p><dl>
+<dt>Parameters:</dt>
+<dd>table - database table name</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 335</div>
+<h3 id="listTableTriggers()">listTableTriggers</h3>
+<code class="signature">public  array <strong>listTableTriggers</strong>(string table)</code>
+<div class="details">
+<p>lists table triggers</p><dl>
+<dt>Parameters:</dt>
+<dd>table - database table name</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 351</div>
+<h3 id="listTableViews()">listTableViews</h3>
+<code class="signature">public  array <strong>listTableViews</strong>(string table)</code>
+<div class="details">
+<p>lists table views</p><dl>
+<dt>Parameters:</dt>
+<dd>table - database table name</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 308</div>
+<h3 id="listTables()">listTables</h3>
+<code class="signature">public  array <strong>listTables</strong>(string|null database)</code>
+<div class="details">
+<p>lists tables</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 320</div>
+<h3 id="listTriggers()">listTriggers</h3>
+<code class="signature">public  array <strong>listTriggers</strong>(mixed database)</code>
+<div class="details">
+<p>lists all triggers</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/MsSqlSchemaManager.php at line 388</div>
+<h3 id="listViews()">listViews</h3>
+<code class="signature">public  array <strong>listViews</strong>(string|null database)</code>
+<div class="details">
+<p>lists database views</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/mssqlschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/mysqlschemamanager.html b/lib/api/doctrine/dbal/schema/mysqlschemamanager.html
new file mode 100644
index 000000000..45e24161a
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/mysqlschemamanager.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>MySqlSchemaManager (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/mysqlschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\MySqlSchemaManager</div>
+<div class="location">/Doctrine/DBAL/Schema/MySqlSchemaManager.php at line 35</div>
+
+<h1>Class MySqlSchemaManager</h1>
+
+<pre class="tree">Class:MySqlSchemaManager - Superclass: AbstractSchemaManager
+<a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a><br>   &lfloor;&nbsp;<strong>MySqlSchemaManager</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>MySqlSchemaManager</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Schema manager for the MySql RDBMS.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Author:</dt>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)</dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractSchemaManager</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractschemamanager.html#_conn">_conn</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#_platform">_platform</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractSchemaManager</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractschemamanager.html#alterTable()">alterTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createConstraint()">createConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createDatabase()">createDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createForeignKey()">createForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createIndex()">createIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSchema()">createSchema</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSchemaConfig()">createSchemaConfig</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSequence()">createSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createTable()">createTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createView()">createView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateConstraint()">dropAndCreateConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateDatabase()">dropAndCreateDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateForeignKey()">dropAndCreateForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateIndex()">dropAndCreateIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateSequence()">dropAndCreateSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateTable()">dropAndCreateTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateView()">dropAndCreateView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropConstraint()">dropConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropDatabase()">dropDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropForeignKey()">dropForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropIndex()">dropIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropSequence()">dropSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropTable()">dropTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropView()">dropView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#getDatabasePlatform()">getDatabasePlatform</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listDatabases()">listDatabases</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listSequences()">listSequences</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableColumns()">listTableColumns</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableDetails()">listTableDetails</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableForeignKeys()">listTableForeignKeys</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableIndexes()">listTableIndexes</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableNames()">listTableNames</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTables()">listTables</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listViews()">listViews</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#renameTable()">renameTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#tryMethod()">tryMethod</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/mysqlschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/oracleschemamanager.html b/lib/api/doctrine/dbal/schema/oracleschemamanager.html
new file mode 100644
index 000000000..aca8d1f28
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/oracleschemamanager.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>OracleSchemaManager (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/oracleschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\OracleSchemaManager</div>
+<div class="location">/Doctrine/DBAL/Schema/OracleSchemaManager.php at line 34</div>
+
+<h1>Class OracleSchemaManager</h1>
+
+<pre class="tree">Class:OracleSchemaManager - Superclass: AbstractSchemaManager
+<a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a><br>   &lfloor;&nbsp;<strong>OracleSchemaManager</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OracleSchemaManager</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Oracle Schema Manager</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Author:</dt>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)</dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractSchemaManager</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractschemamanager.html#_conn">_conn</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#_platform">_platform</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createDatabase()">createDatabase</a>(string database)</p><p class="description">Creates a new database.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropAutoincrement()">dropAutoincrement</a>(mixed table)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropTable()">dropTable</a>(mixed name, string table)</p><p class="description">Drop the given table</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractSchemaManager</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractschemamanager.html#alterTable()">alterTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createConstraint()">createConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createDatabase()">createDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createForeignKey()">createForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createIndex()">createIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSchema()">createSchema</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSchemaConfig()">createSchemaConfig</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSequence()">createSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createTable()">createTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createView()">createView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateConstraint()">dropAndCreateConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateDatabase()">dropAndCreateDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateForeignKey()">dropAndCreateForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateIndex()">dropAndCreateIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateSequence()">dropAndCreateSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateTable()">dropAndCreateTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateView()">dropAndCreateView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropConstraint()">dropConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropDatabase()">dropDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropForeignKey()">dropForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropIndex()">dropIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropSequence()">dropSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropTable()">dropTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropView()">dropView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#getDatabasePlatform()">getDatabasePlatform</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listDatabases()">listDatabases</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listSequences()">listSequences</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableColumns()">listTableColumns</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableDetails()">listTableDetails</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableForeignKeys()">listTableForeignKeys</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableIndexes()">listTableIndexes</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableNames()">listTableNames</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTables()">listTables</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listViews()">listViews</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#renameTable()">renameTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#tryMethod()">tryMethod</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/OracleSchemaManager.php at line 245</div>
+<h3 id="createDatabase()">createDatabase</h3>
+<code class="signature">public  void <strong>createDatabase</strong>(string database)</code>
+<div class="details">
+<p>Creates a new database.</p><dl>
+<dt>Parameters:</dt>
+<dd>database - The name of the database to create.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/OracleSchemaManager.php at line 264</div>
+<h3 id="dropAutoincrement()">dropAutoincrement</h3>
+<code class="signature">public  void <strong>dropAutoincrement</strong>(mixed table)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/OracleSchemaManager.php at line 274</div>
+<h3 id="dropTable()">dropTable</h3>
+<code class="signature">public  void <strong>dropTable</strong>(mixed name, string table)</code>
+<div class="details">
+<p>Drop the given table</p><dl>
+<dt>Parameters:</dt>
+<dd>table - The name of the table to drop</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/oracleschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/package-frame.html b/lib/api/doctrine/dbal/schema/package-frame.html
new file mode 100644
index 000000000..15b048733
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/package-frame.html
@@ -0,0 +1,50 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Schema (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Schema</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/dbal/schema/abstractasset.html" target="main">AbstractAsset</a></li>
+<li><a href="../../../doctrine/dbal/schema/abstractschemamanager.html" target="main">AbstractSchemaManager</a></li>
+<li><a href="../../../doctrine/dbal/schema/column.html" target="main">Column</a></li>
+<li><a href="../../../doctrine/dbal/schema/columndiff.html" target="main">ColumnDiff</a></li>
+<li><a href="../../../doctrine/dbal/schema/comparator.html" target="main">Comparator</a></li>
+<li><a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html" target="main">ForeignKeyConstraint</a></li>
+<li><a href="../../../doctrine/dbal/schema/index.html" target="main">Index</a></li>
+<li><a href="../../../doctrine/dbal/schema/mssqlschemamanager.html" target="main">MsSqlSchemaManager</a></li>
+<li><a href="../../../doctrine/dbal/schema/mysqlschemamanager.html" target="main">MySqlSchemaManager</a></li>
+<li><a href="../../../doctrine/dbal/schema/oracleschemamanager.html" target="main">OracleSchemaManager</a></li>
+<li><a href="../../../doctrine/dbal/schema/postgresqlschemamanager.html" target="main">PostgreSqlSchemaManager</a></li>
+<li><a href="../../../doctrine/dbal/schema/schema.html" target="main">Schema</a></li>
+<li><a href="../../../doctrine/dbal/schema/schemaconfig.html" target="main">SchemaConfig</a></li>
+<li><a href="../../../doctrine/dbal/schema/schemadiff.html" target="main">SchemaDiff</a></li>
+<li><a href="../../../doctrine/dbal/schema/schemaexception.html" target="main">SchemaException</a></li>
+<li><a href="../../../doctrine/dbal/schema/sequence.html" target="main">Sequence</a></li>
+<li><a href="../../../doctrine/dbal/schema/sqliteschemamanager.html" target="main">SqliteSchemaManager</a></li>
+<li><a href="../../../doctrine/dbal/schema/table.html" target="main">Table</a></li>
+<li><a href="../../../doctrine/dbal/schema/tablediff.html" target="main">TableDiff</a></li>
+<li><a href="../../../doctrine/dbal/schema/view.html" target="main">View</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../../doctrine/dbal/schema/constraint.html" target="main">Constraint</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/package-functions.html b/lib/api/doctrine/dbal/schema/package-functions.html
new file mode 100644
index 000000000..276bd476e
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/package-globals.html b/lib/api/doctrine/dbal/schema/package-globals.html
new file mode 100644
index 000000000..e11ca8cc2
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/package-summary.html b/lib/api/doctrine/dbal/schema/package-summary.html
new file mode 100644
index 000000000..1b78438d2
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/package-summary.html
@@ -0,0 +1,91 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Schema (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Schema</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a></td><td class="description">The abstract asset allows to reset the name of all assets without publishing this to the public userland.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a></td><td class="description">Base class for schema managers. </td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/column.html">Column</a></td><td class="description">Object representation of a database column</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/columndiff.html">ColumnDiff</a></td><td class="description">Represent the change of a column</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/comparator.html">Comparator</a></td><td class="description">Compare to Schemas and return an instance of SchemaDiff</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a></td><td class="description">The abstract asset allows to reset the name of all assets without publishing this to the public userland.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/index.html">Index</a></td><td class="description">The abstract asset allows to reset the name of all assets without publishing this to the public userland.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/mssqlschemamanager.html">MsSqlSchemaManager</a></td><td class="description">xxx</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/mysqlschemamanager.html">MySqlSchemaManager</a></td><td class="description">Schema manager for the MySql RDBMS.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/oracleschemamanager.html">OracleSchemaManager</a></td><td class="description">Oracle Schema Manager</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/postgresqlschemamanager.html">PostgreSqlSchemaManager</a></td><td class="description">xxx</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/schema.html">Schema</a></td><td class="description">Object representation of a database schema</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a></td><td class="description">Configuration for a Schema</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/schemadiff.html">SchemaDiff</a></td><td class="description">Schema Diff</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a></td><td class="description">Sequence Structure</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/sqliteschemamanager.html">SqliteSchemaManager</a></td><td class="description">SqliteSchemaManager</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/table.html">Table</a></td><td class="description">Object Representation of a table</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/tablediff.html">TableDiff</a></td><td class="description">Table Diff</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/view.html">View</a></td><td class="description">Representation of a Database View</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/schema/constraint.html">Constraint</a></td><td class="description">Marker interface for contraints</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/package-tree.html b/lib/api/doctrine/dbal/schema/package-tree.html
new file mode 100644
index 000000000..33dd946b1
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/package-tree.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Schema (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Schema</h1><ul>
+<li><a href="../../../doctrine/dbal/schema/abstractasset.html">Doctrine\DBAL\Schema\AbstractAsset</a><ul>
+<li><a href="../../../doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></li>
+<li><a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></li>
+<li><a href="../../../doctrine/dbal/schema/index.html">Doctrine\DBAL\Schema\Index</a></li>
+<li><a href="../../../doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></li>
+<li><a href="../../../doctrine/dbal/schema/sequence.html">Doctrine\DBAL\Schema\Sequence</a></li>
+<li><a href="../../../doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></li>
+<li><a href="../../../doctrine/dbal/schema/view.html">Doctrine\DBAL\Schema\View</a></li>
+</ul>
+</li>
+<li><a href="../../../doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a><ul>
+<li><a href="../../../doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></li>
+<li><a href="../../../doctrine/dbal/schema/mysqlschemamanager.html">Doctrine\DBAL\Schema\MySqlSchemaManager</a></li>
+<li><a href="../../../doctrine/dbal/schema/oracleschemamanager.html">Doctrine\DBAL\Schema\OracleSchemaManager</a></li>
+<li><a href="../../../doctrine/dbal/schema/postgresqlschemamanager.html">Doctrine\DBAL\Schema\PostgreSqlSchemaManager</a></li>
+<li><a href="../../../doctrine/dbal/schema/sqliteschemamanager.html">Doctrine\DBAL\Schema\SqliteSchemaManager</a></li>
+</ul>
+</li>
+<li><a href="../../../doctrine/dbal/schema/columndiff.html">Doctrine\DBAL\Schema\ColumnDiff</a></li>
+<li><a href="../../../doctrine/dbal/schema/comparator.html">Doctrine\DBAL\Schema\Comparator</a></li>
+<li><a href="../../../doctrine/dbal/schema/schemaconfig.html">Doctrine\DBAL\Schema\SchemaConfig</a></li>
+<li><a href="../../../doctrine/dbal/schema/schemadiff.html">Doctrine\DBAL\Schema\SchemaDiff</a></li>
+<li><a href="../../../doctrine/dbal/schema/tablediff.html">Doctrine\DBAL\Schema\TableDiff</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/postgresqlschemamanager.html b/lib/api/doctrine/dbal/schema/postgresqlschemamanager.html
new file mode 100644
index 000000000..f2fee7ef4
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/postgresqlschemamanager.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PostgreSqlSchemaManager (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/postgresqlschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\PostgreSqlSchemaManager</div>
+<div class="location">/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php at line 34</div>
+
+<h1>Class PostgreSqlSchemaManager</h1>
+
+<pre class="tree">Class:PostgreSqlSchemaManager - Superclass: AbstractSchemaManager
+<a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a><br>   &lfloor;&nbsp;<strong>PostgreSqlSchemaManager</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>PostgreSqlSchemaManager</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>xxx</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Author:</dt>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)</dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractSchemaManager</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractschemamanager.html#_conn">_conn</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#_platform">_platform</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createDatabase()">createDatabase</a>(string database)</p><p class="description">Creates a new database.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropDatabase()">dropDatabase</a>(string database)</p><p class="description">Drops a database.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractSchemaManager</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractschemamanager.html#alterTable()">alterTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createConstraint()">createConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createDatabase()">createDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createForeignKey()">createForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createIndex()">createIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSchema()">createSchema</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSchemaConfig()">createSchemaConfig</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSequence()">createSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createTable()">createTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createView()">createView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateConstraint()">dropAndCreateConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateDatabase()">dropAndCreateDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateForeignKey()">dropAndCreateForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateIndex()">dropAndCreateIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateSequence()">dropAndCreateSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateTable()">dropAndCreateTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateView()">dropAndCreateView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropConstraint()">dropConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropDatabase()">dropDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropForeignKey()">dropForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropIndex()">dropIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropSequence()">dropSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropTable()">dropTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropView()">dropView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#getDatabasePlatform()">getDatabasePlatform</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listDatabases()">listDatabases</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listSequences()">listSequences</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableColumns()">listTableColumns</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableDetails()">listTableDetails</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableForeignKeys()">listTableForeignKeys</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableIndexes()">listTableIndexes</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableNames()">listTableNames</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTables()">listTables</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listViews()">listViews</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#renameTable()">renameTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#tryMethod()">tryMethod</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php at line 76</div>
+<h3 id="createDatabase()">createDatabase</h3>
+<code class="signature">public  void <strong>createDatabase</strong>(string database)</code>
+<div class="details">
+<p>Creates a new database.</p><dl>
+<dt>Parameters:</dt>
+<dd>database - The name of the database to create.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/PostgreSqlSchemaManager.php at line 60</div>
+<h3 id="dropDatabase()">dropDatabase</h3>
+<code class="signature">public  void <strong>dropDatabase</strong>(string database)</code>
+<div class="details">
+<p>Drops a database.</p><p>NOTE: You can not drop the database this SchemaManager is currently connected to.</p><dl>
+<dt>Parameters:</dt>
+<dd>database - The name of the database to drop</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/postgresqlschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/schema.html b/lib/api/doctrine/dbal/schema/schema.html
new file mode 100644
index 000000000..b9f425d5a
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/schema.html
@@ -0,0 +1,373 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Schema (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/schema.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Schema</div>
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 37</div>
+
+<h1>Class Schema</h1>
+
+<pre class="tree">Class:Schema - Superclass: AbstractAsset
+<a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a><br>   &lfloor;&nbsp;<strong>Schema</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Schema</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Object representation of a database schema</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  <a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a></td>
+<td class="description"><p class="name"><a href="#_schemaConfig">$_schemaConfig</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_sequences">$_sequences</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_tables">$_tables</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#_name">_name</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Schema()">Schema</a>(array tables, <a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a> schemaConfig, array sequences, array views, array triggers)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a></td>
+<td class="description"><p class="name"><a href="#createSequence()">createSequence</a>(string sequenceName, int allocationSize, int initialValue)</p><p class="description">Create a new sequence</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#createTable()">createTable</a>(string tableName)</p><p class="description">Create a new table</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/schema.html">Schema</a></td>
+<td class="description"><p class="name"><a href="#dropSequence()">dropSequence</a>(string sequenceName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/schema.html">Schema</a></td>
+<td class="description"><p class="name"><a href="#dropTable()">dropTable</a>(string tableName)</p><p class="description">Drop a table from the schema.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getMigrateFromSql()">getMigrateFromSql</a>(<a href="../../../doctrine/dbal/schema/schema.html">Schema</a> fromSchema, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getMigrateToSql()">getMigrateToSql</a>(<a href="../../../doctrine/dbal/schema/schema.html">Schema</a> toSchema, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Schema\Sequence</td>
+<td class="description"><p class="name"><a href="#getSequence()">getSequence</a>(string sequenceName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Schema\Sequence[]</td>
+<td class="description"><p class="name"><a href="#getSequences()">getSequences</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#getTable()">getTable</a>(string tableName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getTables()">getTables</a>()</p><p class="description">Get all tables of this schema.</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#hasExplicitForeignKeyIndexes()">hasExplicitForeignKeyIndexes</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#hasSequence()">hasSequence</a>(string sequenceName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/schema.html">Schema</a></td>
+<td class="description"><p class="name"><a href="#hasTable()">hasTable</a>(string tableName)</p><p class="description">Does this schema have a table with the given name?</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/schema.html">Schema</a></td>
+<td class="description"><p class="name"><a href="#renameTable()">renameTable</a>(string oldTableName, string newTableName)</p><p class="description">Rename a table</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#toDropSql()">toDropSql</a>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Return an array of necessary sql queries to drop the schema on the given platform.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#toSql()">toSql</a>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Return an array of necessary sql queries to create the schema on the given platform.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#visit()">visit</a>(<a href="../../../doctrine/dbal/schema/visitor/visitor.html">Visitor</a> visitor)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#getName()">getName</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 52</div>
+<h3 id="_schemaConfig">_schemaConfig</h3>
+<code class="signature">protected  <a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a> <strong>$_schemaConfig</strong> = false</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 47</div>
+<h3 id="_sequences">_sequences</h3>
+<code class="signature">protected  array <strong>$_sequences</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 42</div>
+<h3 id="_tables">_tables</h3>
+<code class="signature">protected  array <strong>$_tables</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 61</div>
+<h3 id="Schema()">Schema</h3>
+<code class="signature">public <strong>Schema</strong>(array tables, <a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a> schemaConfig, array sequences, array views, array triggers)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 230</div>
+<h3 id="createSequence()">createSequence</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/sequence.html">Sequence</a> <strong>createSequence</strong>(string sequenceName, int allocationSize, int initialValue)</code>
+<div class="details">
+<p>Create a new sequence</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 184</div>
+<h3 id="createTable()">createTable</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>createTable</strong>(string tableName)</code>
+<div class="details">
+<p>Create a new table</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 241</div>
+<h3 id="dropSequence()">dropSequence</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/schema.html">Schema</a> <strong>dropSequence</strong>(string sequenceName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 214</div>
+<h3 id="dropTable()">dropTable</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/schema.html">Schema</a> <strong>dropTable</strong>(string tableName)</code>
+<div class="details">
+<p>Drop a table from the schema.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 291</div>
+<h3 id="getMigrateFromSql()">getMigrateFromSql</h3>
+<code class="signature">public  void <strong>getMigrateFromSql</strong>(<a href="../../../doctrine/dbal/schema/schema.html">Schema</a> fromSchema, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 280</div>
+<h3 id="getMigrateToSql()">getMigrateToSql</h3>
+<code class="signature">public  void <strong>getMigrateToSql</strong>(<a href="../../../doctrine/dbal/schema/schema.html">Schema</a> toSchema, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 161</div>
+<h3 id="getSequence()">getSequence</h3>
+<code class="signature">public  Doctrine\DBAL\Schema\Sequence <strong>getSequence</strong>(string sequenceName)</code>
+<div class="details">
+<p></p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 173</div>
+<h3 id="getSequences()">getSequences</h3>
+<code class="signature">public  Doctrine\DBAL\Schema\Sequence[] <strong>getSequences</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 124</div>
+<h3 id="getTable()">getTable</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>getTable</strong>(string tableName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 115</div>
+<h3 id="getTables()">getTables</h3>
+<code class="signature">public  array <strong>getTables</strong>()</code>
+<div class="details">
+<p>Get all tables of this schema.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 79</div>
+<h3 id="hasExplicitForeignKeyIndexes()">hasExplicitForeignKeyIndexes</h3>
+<code class="signature">public  bool <strong>hasExplicitForeignKeyIndexes</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 150</div>
+<h3 id="hasSequence()">hasSequence</h3>
+<code class="signature">public  bool <strong>hasSequence</strong>(string sequenceName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 140</div>
+<h3 id="hasTable()">hasTable</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/schema.html">Schema</a> <strong>hasTable</strong>(string tableName)</code>
+<div class="details">
+<p>Does this schema have a table with the given name?</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 198</div>
+<h3 id="renameTable()">renameTable</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/schema.html">Schema</a> <strong>renameTable</strong>(string oldTableName, string newTableName)</code>
+<div class="details">
+<p>Rename a table</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 268</div>
+<h3 id="toDropSql()">toDropSql</h3>
+<code class="signature">public  array <strong>toDropSql</strong>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Return an array of necessary sql queries to drop the schema on the given platform.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 254</div>
+<h3 id="toSql()">toSql</h3>
+<code class="signature">public  array <strong>toSql</strong>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Return an array of necessary sql queries to create the schema on the given platform.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Schema.php at line 301</div>
+<h3 id="visit()">visit</h3>
+<code class="signature">public  void <strong>visit</strong>(<a href="../../../doctrine/dbal/schema/visitor/visitor.html">Visitor</a> visitor)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/schema.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/schemaconfig.html b/lib/api/doctrine/dbal/schema/schemaconfig.html
new file mode 100644
index 000000000..f4f5ca86d
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/schemaconfig.html
@@ -0,0 +1,174 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SchemaConfig (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/schemaconfig.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\SchemaConfig</div>
+<div class="location">/Doctrine/DBAL/Schema/SchemaConfig.php at line 33</div>
+
+<h1>Class SchemaConfig</h1>
+
+<pre class="tree"><strong>SchemaConfig</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SchemaConfig</strong></p>
+
+<div class="comment" id="overview_description"><p>Configuration for a Schema</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  bool</td>
+<td class="description"><p class="name"><a href="#_hasExplicitForeignKeyIndexes">$_hasExplicitForeignKeyIndexes</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  int</td>
+<td class="description"><p class="name"><a href="#_maxIdentifierLength">$_maxIdentifierLength</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> int</td>
+<td class="description"><p class="name"><a href="#getMaxIdentifierLength()">getMaxIdentifierLength</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#hasExplicitForeignKeyIndexes()">hasExplicitForeignKeyIndexes</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setExplicitForeignKeyIndexes()">setExplicitForeignKeyIndexes</a>(bool flag)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setMaxIdentifierLength()">setMaxIdentifierLength</a>(int length)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/SchemaConfig.php at line 38</div>
+<h3 id="_hasExplicitForeignKeyIndexes">_hasExplicitForeignKeyIndexes</h3>
+<code class="signature">protected  bool <strong>$_hasExplicitForeignKeyIndexes</strong> = false</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaConfig.php at line 43</div>
+<h3 id="_maxIdentifierLength">_maxIdentifierLength</h3>
+<code class="signature">protected  int <strong>$_maxIdentifierLength</strong> = 63</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/SchemaConfig.php at line 72</div>
+<h3 id="getMaxIdentifierLength()">getMaxIdentifierLength</h3>
+<code class="signature">public  int <strong>getMaxIdentifierLength</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaConfig.php at line 48</div>
+<h3 id="hasExplicitForeignKeyIndexes()">hasExplicitForeignKeyIndexes</h3>
+<code class="signature">public  bool <strong>hasExplicitForeignKeyIndexes</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaConfig.php at line 56</div>
+<h3 id="setExplicitForeignKeyIndexes()">setExplicitForeignKeyIndexes</h3>
+<code class="signature">public  void <strong>setExplicitForeignKeyIndexes</strong>(bool flag)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaConfig.php at line 64</div>
+<h3 id="setMaxIdentifierLength()">setMaxIdentifierLength</h3>
+<code class="signature">public  void <strong>setMaxIdentifierLength</strong>(int length)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/schemaconfig.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/schemadiff.html b/lib/api/doctrine/dbal/schema/schemadiff.html
new file mode 100644
index 000000000..752191e28
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/schemadiff.html
@@ -0,0 +1,231 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SchemaDiff (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/schemadiff.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\SchemaDiff</div>
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 37</div>
+
+<h1>Class SchemaDiff</h1>
+
+<pre class="tree"><strong>SchemaDiff</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SchemaDiff</strong></p>
+
+<div class="comment" id="overview_description"><p>Schema Diff</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dd>http://ez.no/licenses/new_bsd New BSD License</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Copyright:</dt>
+<dd>Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#changedSequences">$changedSequences</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array(string=>ezcDbSchemaTableDiff)</td>
+<td class="description"><p class="name"><a href="#changedTables">$changedTables</a></p><p class="description">All changed tables</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#newSequences">$newSequences</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array(string=>ezcDbSchemaTable)</td>
+<td class="description"><p class="name"><a href="#newTables">$newTables</a></p><p class="description">All added tables</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#orphanedForeignKeys">$orphanedForeignKeys</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#removedSequences">$removedSequences</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array(string=>Table)</td>
+<td class="description"><p class="name"><a href="#removedTables">$removedTables</a></p><p class="description">All removed tables</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SchemaDiff()">SchemaDiff</a>(array(string=>Table) newTables, array(string=>TableDiff) changedTables, array(string=>bool) removedTables)</p><p class="description">Constructs an SchemaDiff object.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#toSaveSql()">toSaveSql</a>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">The to save sql mode ensures that the following things don't happen:1. </p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#toSql()">toSql</a>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 68</div>
+<h3 id="changedSequences">changedSequences</h3>
+<code class="signature">public  array <strong>$changedSequences</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 51</div>
+<h3 id="changedTables">changedTables</h3>
+<code class="signature">public  array(string=>ezcDbSchemaTableDiff) <strong>$changedTables</strong> = array()</code>
+<div class="details">
+<p>All changed tables</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 63</div>
+<h3 id="newSequences">newSequences</h3>
+<code class="signature">public  array <strong>$newSequences</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 44</div>
+<h3 id="newTables">newTables</h3>
+<code class="signature">public  array(string=>ezcDbSchemaTable) <strong>$newTables</strong> = array()</code>
+<div class="details">
+<p>All added tables</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 78</div>
+<h3 id="orphanedForeignKeys">orphanedForeignKeys</h3>
+<code class="signature">public  array <strong>$orphanedForeignKeys</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 73</div>
+<h3 id="removedSequences">removedSequences</h3>
+<code class="signature">public  array <strong>$removedSequences</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 58</div>
+<h3 id="removedTables">removedTables</h3>
+<code class="signature">public  array(string=>Table) <strong>$removedTables</strong> = array()</code>
+<div class="details">
+<p>All removed tables</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 87</div>
+<h3 id="SchemaDiff()">SchemaDiff</h3>
+<code class="signature">public <strong>SchemaDiff</strong>(array(string=>Table) newTables, array(string=>TableDiff) changedTables, array(string=>bool) removedTables)</code>
+<div class="details">
+<p>Constructs an SchemaDiff object.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 106</div>
+<h3 id="toSaveSql()">toSaveSql</h3>
+<code class="signature">public  array <strong>toSaveSql</strong>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>The to save sql mode ensures that the following things don't happen:</p><p>1. Tables are deleted
+2. Sequences are deleted
+3. Foreign Keys which reference tables that would otherwise be deleted.</p><p>This way it is ensured that assets are deleted which might not be relevant to the metadata schema at all.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaDiff.php at line 115</div>
+<h3 id="toSql()">toSql</h3>
+<code class="signature">public  array <strong>toSql</strong>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/schemadiff.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/schemaexception.html b/lib/api/doctrine/dbal/schema/schemaexception.html
new file mode 100644
index 000000000..1e78540d0
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/schemaexception.html
@@ -0,0 +1,355 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SchemaException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/schemaexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\SchemaException</div>
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 5</div>
+
+<h1>Class SchemaException</h1>
+
+<pre class="tree">Class:SchemaException - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>SchemaException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SchemaException</strong><br>extends Doctrine
+
+</p>
+
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#COLUMN_ALREADY_EXISTS">COLUMN_ALREADY_EXISTS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#COLUMN_DOESNT_EXIST">COLUMN_DOESNT_EXIST</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#FOREIGNKEY_DOESNT_EXIST">FOREIGNKEY_DOESNT_EXIST</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#INDEX_ALREADY_EXISTS">INDEX_ALREADY_EXISTS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#INDEX_DOESNT_EXIST">INDEX_DOESNT_EXIST</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#INDEX_INVALID_NAME">INDEX_INVALID_NAME</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#SEQUENCE_ALREADY_EXISTS">SEQUENCE_ALREADY_EXISTS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#SEQUENCE_DOENST_EXIST">SEQUENCE_DOENST_EXIST</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TABLE_ALREADY_EXISTS">TABLE_ALREADY_EXISTS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TABLE_DOESNT_EXIST">TABLE_DOESNT_EXIST</a></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#alterTableChangeNotSupported()">alterTableChangeNotSupported</a>(mixed changeName)</p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td>
+<td class="description"><p class="name"><a href="#columnAlreadyExists()">columnAlreadyExists</a>(string tableName, string columnName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td>
+<td class="description"><p class="name"><a href="#columnDoesNotExist()">columnDoesNotExist</a>(string columnName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td>
+<td class="description"><p class="name"><a href="#foreignKeyDoesNotExist()">foreignKeyDoesNotExist</a>(string fkName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td>
+<td class="description"><p class="name"><a href="#indexAlreadyExists()">indexAlreadyExists</a>(string indexName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td>
+<td class="description"><p class="name"><a href="#indexDoesNotExist()">indexDoesNotExist</a>(string indexName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td>
+<td class="description"><p class="name"><a href="#indexNameInvalid()">indexNameInvalid</a>(string indexName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#namedForeignKeyRequired()">namedForeignKeyRequired</a>(mixed localTable, mixed foreignKey)</p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td>
+<td class="description"><p class="name"><a href="#sequenceAlreadyExists()">sequenceAlreadyExists</a>(string sequenceName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td>
+<td class="description"><p class="name"><a href="#sequenceDoesNotExist()">sequenceDoesNotExist</a>(string sequenceName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td>
+<td class="description"><p class="name"><a href="#tableAlreadyExists()">tableAlreadyExists</a>(string tableName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a></td>
+<td class="description"><p class="name"><a href="#tableDoesNotExist()">tableDoesNotExist</a>(string tableName)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 10</div>
+<h3 id="COLUMN_ALREADY_EXISTS">COLUMN_ALREADY_EXISTS</h3>
+<code class="signature">public final  int <strong>COLUMN_ALREADY_EXISTS</strong> = 40</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 9</div>
+<h3 id="COLUMN_DOESNT_EXIST">COLUMN_DOESNT_EXIST</h3>
+<code class="signature">public final  int <strong>COLUMN_DOESNT_EXIST</strong> = 30</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 16</div>
+<h3 id="FOREIGNKEY_DOESNT_EXIST">FOREIGNKEY_DOESNT_EXIST</h3>
+<code class="signature">public final  int <strong>FOREIGNKEY_DOESNT_EXIST</strong> = 100</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 12</div>
+<h3 id="INDEX_ALREADY_EXISTS">INDEX_ALREADY_EXISTS</h3>
+<code class="signature">public final  int <strong>INDEX_ALREADY_EXISTS</strong> = 60</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 11</div>
+<h3 id="INDEX_DOESNT_EXIST">INDEX_DOESNT_EXIST</h3>
+<code class="signature">public final  int <strong>INDEX_DOESNT_EXIST</strong> = 50</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 15</div>
+<h3 id="INDEX_INVALID_NAME">INDEX_INVALID_NAME</h3>
+<code class="signature">public final  int <strong>INDEX_INVALID_NAME</strong> = 90</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 14</div>
+<h3 id="SEQUENCE_ALREADY_EXISTS">SEQUENCE_ALREADY_EXISTS</h3>
+<code class="signature">public final  int <strong>SEQUENCE_ALREADY_EXISTS</strong> = 80</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 13</div>
+<h3 id="SEQUENCE_DOENST_EXIST">SEQUENCE_DOENST_EXIST</h3>
+<code class="signature">public final  int <strong>SEQUENCE_DOENST_EXIST</strong> = 70</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 8</div>
+<h3 id="TABLE_ALREADY_EXISTS">TABLE_ALREADY_EXISTS</h3>
+<code class="signature">public final  int <strong>TABLE_ALREADY_EXISTS</strong> = 20</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 7</div>
+<h3 id="TABLE_DOESNT_EXIST">TABLE_DOESNT_EXIST</h3>
+<code class="signature">public final  int <strong>TABLE_DOESNT_EXIST</strong> = 10</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 123</div>
+<h3 id="alterTableChangeNotSupported()">alterTableChangeNotSupported</h3>
+<code class="signature">public static  void <strong>alterTableChangeNotSupported</strong>(mixed changeName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 79</div>
+<h3 id="columnAlreadyExists()">columnAlreadyExists</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a> <strong>columnAlreadyExists</strong>(string tableName, string columnName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 58</div>
+<h3 id="columnDoesNotExist()">columnDoesNotExist</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a> <strong>columnDoesNotExist</strong>(string columnName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 108</div>
+<h3 id="foreignKeyDoesNotExist()">foreignKeyDoesNotExist</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a> <strong>foreignKeyDoesNotExist</strong>(string fkName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 49</div>
+<h3 id="indexAlreadyExists()">indexAlreadyExists</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a> <strong>indexAlreadyExists</strong>(string indexName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 40</div>
+<h3 id="indexDoesNotExist()">indexDoesNotExist</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a> <strong>indexDoesNotExist</strong>(string indexName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 31</div>
+<h3 id="indexNameInvalid()">indexNameInvalid</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a> <strong>indexNameInvalid</strong>(string indexName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 113</div>
+<h3 id="namedForeignKeyRequired()">namedForeignKeyRequired</h3>
+<code class="signature">public static  void <strong>namedForeignKeyRequired</strong>(mixed localTable, mixed foreignKey)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 90</div>
+<h3 id="sequenceAlreadyExists()">sequenceAlreadyExists</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a> <strong>sequenceAlreadyExists</strong>(string sequenceName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 99</div>
+<h3 id="sequenceDoesNotExist()">sequenceDoesNotExist</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a> <strong>sequenceDoesNotExist</strong>(string sequenceName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 68</div>
+<h3 id="tableAlreadyExists()">tableAlreadyExists</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a> <strong>tableAlreadyExists</strong>(string tableName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SchemaException.php at line 22</div>
+<h3 id="tableDoesNotExist()">tableDoesNotExist</h3>
+<code class="signature">public static  <a href="../../../doctrine/dbal/schema/schemaexception.html">SchemaException</a> <strong>tableDoesNotExist</strong>(string tableName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/schemaexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/sequence.html b/lib/api/doctrine/dbal/schema/sequence.html
new file mode 100644
index 000000000..d49a65437
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/sequence.html
@@ -0,0 +1,189 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Sequence (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/sequence.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Sequence</div>
+<div class="location">/Doctrine/DBAL/Schema/Sequence.php at line 35</div>
+
+<h1>Class Sequence</h1>
+
+<pre class="tree">Class:Sequence - Superclass: AbstractAsset
+<a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a><br>   &lfloor;&nbsp;<strong>Sequence</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Sequence</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Sequence Structure</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  int</td>
+<td class="description"><p class="name"><a href="#_allocationSize">$_allocationSize</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  int</td>
+<td class="description"><p class="name"><a href="#_initialValue">$_initialValue</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#_name">_name</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Sequence()">Sequence</a>(string name, int allocationSize, int initialValue)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getAllocationSize()">getAllocationSize</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getInitialValue()">getInitialValue</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#visit()">visit</a>(<a href="../../../doctrine/dbal/schema/visitor/visitor.html">Visitor</a> visitor)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#getName()">getName</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Sequence.php at line 40</div>
+<h3 id="_allocationSize">_allocationSize</h3>
+<code class="signature">protected  int <strong>$_allocationSize</strong> = 1</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Sequence.php at line 45</div>
+<h3 id="_initialValue">_initialValue</h3>
+<code class="signature">protected  int <strong>$_initialValue</strong> = 1</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Sequence.php at line 53</div>
+<h3 id="Sequence()">Sequence</h3>
+<code class="signature">public <strong>Sequence</strong>(string name, int allocationSize, int initialValue)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Sequence.php at line 60</div>
+<h3 id="getAllocationSize()">getAllocationSize</h3>
+<code class="signature">public  void <strong>getAllocationSize</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Sequence.php at line 65</div>
+<h3 id="getInitialValue()">getInitialValue</h3>
+<code class="signature">public  void <strong>getInitialValue</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Sequence.php at line 73</div>
+<h3 id="visit()">visit</h3>
+<code class="signature">public  void <strong>visit</strong>(<a href="../../../doctrine/dbal/schema/visitor/visitor.html">Visitor</a> visitor)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/sequence.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/sqliteschemamanager.html b/lib/api/doctrine/dbal/schema/sqliteschemamanager.html
new file mode 100644
index 000000000..eb542c51b
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/sqliteschemamanager.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SqliteSchemaManager (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/sqliteschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\SqliteSchemaManager</div>
+<div class="location">/Doctrine/DBAL/Schema/SqliteSchemaManager.php at line 34</div>
+
+<h1>Class SqliteSchemaManager</h1>
+
+<pre class="tree">Class:SqliteSchemaManager - Superclass: AbstractSchemaManager
+<a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a><br>   &lfloor;&nbsp;<strong>SqliteSchemaManager</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SqliteSchemaManager</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>SqliteSchemaManager</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Author:</dt>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)</dd>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractSchemaManager</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractschemamanager.html#_conn">_conn</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#_platform">_platform</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createDatabase()">createDatabase</a>(string database)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropDatabase()">dropDatabase</a>(string database)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractSchemaManager</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractschemamanager.html#alterTable()">alterTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createConstraint()">createConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createDatabase()">createDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createForeignKey()">createForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createIndex()">createIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSchema()">createSchema</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSchemaConfig()">createSchemaConfig</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createSequence()">createSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createTable()">createTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#createView()">createView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateConstraint()">dropAndCreateConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateDatabase()">dropAndCreateDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateForeignKey()">dropAndCreateForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateIndex()">dropAndCreateIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateSequence()">dropAndCreateSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateTable()">dropAndCreateTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateView()">dropAndCreateView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropConstraint()">dropConstraint</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropDatabase()">dropDatabase</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropForeignKey()">dropForeignKey</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropIndex()">dropIndex</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropSequence()">dropSequence</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropTable()">dropTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#dropView()">dropView</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#getDatabasePlatform()">getDatabasePlatform</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listDatabases()">listDatabases</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listSequences()">listSequences</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableColumns()">listTableColumns</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableDetails()">listTableDetails</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableForeignKeys()">listTableForeignKeys</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableIndexes()">listTableIndexes</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTableNames()">listTableNames</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listTables()">listTables</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#listViews()">listViews</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#renameTable()">renameTable</a>, <a href="../../../doctrine/dbal/schema/abstractschemamanager.html#tryMethod()">tryMethod</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/SqliteSchemaManager.php at line 53</div>
+<h3 id="createDatabase()">createDatabase</h3>
+<code class="signature">public  void <strong>createDatabase</strong>(string database)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+<dt>Parameters:</dt>
+<dd>database - The name of the database to create.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/SqliteSchemaManager.php at line 41</div>
+<h3 id="dropDatabase()">dropDatabase</h3>
+<code class="signature">public  void <strong>dropDatabase</strong>(string database)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+<dt>Parameters:</dt>
+<dd>database - The name of the database to drop</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/sqliteschemamanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/table.html b/lib/api/doctrine/dbal/schema/table.html
new file mode 100644
index 000000000..5d36fe73e
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/table.html
@@ -0,0 +1,621 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Table (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/table.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Table</div>
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 37</div>
+
+<h1>Class Table</h1>
+
+<pre class="tree">Class:Table - Superclass: AbstractAsset
+<a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a><br>   &lfloor;&nbsp;<strong>Table</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Table</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Object Representation of a table</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#ID_IDENTITY">ID_IDENTITY</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#ID_NONE">$ID_NONE</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#ID_SEQUENCE">ID_SEQUENCE</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_columns">$_columns</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_fkConstraints">$_fkConstraints</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  bool</td>
+<td class="description"><p class="name"><a href="#_idGeneratorType">$_idGeneratorType</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_indexes">$_indexes</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_name">$_name</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_options">$_options</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_primaryKeyName">$_primaryKeyName</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  <a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a></td>
+<td class="description"><p class="name"><a href="#_schemaConfig">$_schemaConfig</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#_name">_name</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Table()">Table</a>(string tableName, array columns, array options, array indexes, array fkConstraints, int idGeneratorType)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#addColumn()">addColumn</a>(string columnName, mixed typeName, array options, string columnType)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#addForeignKeyConstraint()">addForeignKeyConstraint</a>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> foreignTable, mixed localColumnNames, mixed foreignColumnNames, array options, array localColumns, array foreignColumns)</p><p class="description">Add a foreign key constraintName is inferred from the local columns</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#addIndex()">addIndex</a>(array columnNames, string indexName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#addNamedForeignKeyConstraint()">addNamedForeignKeyConstraint</a>(string name, <a href="../../../doctrine/dbal/schema/table.html">Table</a> foreignTable, mixed localColumnNames, mixed foreignColumnNames, array options, array localColumns, array foreignColumns)</p><p class="description">Add a foreign key constraint with a given name</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#addOption()">addOption</a>(string name, string value)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#addUniqueIndex()">addUniqueIndex</a>(array columnNames, string indexName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#addUnnamedForeignKeyConstraint()">addUnnamedForeignKeyConstraint</a>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> foreignTable, mixed localColumnNames, mixed foreignColumnNames, array options, array localColumns, array foreignColumns)</p><p class="description">Add a foreign key constraintName is to be generated by the database itsself.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#changeColumn()">changeColumn</a>(string columnName, array options)</p><p class="description">Change Column Details</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#columnsAreIndexed()">columnsAreIndexed</a>(array columnsNames)</p><p class="description">Check if an index begins in the order of the given columns.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#dropColumn()">dropColumn</a>(string columnName)</p><p class="description">Drop Column from Table</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column</a></td>
+<td class="description"><p class="name"><a href="#getColumn()">getColumn</a>(string columnName)</p><p class="description">Get a column instance</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/column.html">Column[]</a></td>
+<td class="description"><p class="name"><a href="#getColumns()">getColumns</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a></td>
+<td class="description"><p class="name"><a href="#getForeignKey()">getForeignKey</a>(string constraintName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getForeignKeys()">getForeignKeys</a>()</p><p class="description">Get Constraints</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/index.html">Index</a></td>
+<td class="description"><p class="name"><a href="#getIndex()">getIndex</a>(string indexName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getIndexes()">getIndexes</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getOption()">getOption</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getOptions()">getOptions</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/index.html">Index</a></td>
+<td class="description"><p class="name"><a href="#getPrimaryKey()">getPrimaryKey</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#hasColumn()">hasColumn</a>(string columnName)</p><p class="description">Does this table have a column with the given name?</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#hasForeignKey()">hasForeignKey</a>(string constraintName)</p><p class="description">Does Table have a foreign key constraint with the given name?</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#hasIndex()">hasIndex</a>(string indexName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#hasOption()">hasOption</a>(mixed name)</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#isIdGeneratorIdentity()">isIdGeneratorIdentity</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#isIdGeneratorSequence()">isIdGeneratorSequence</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#renameColumn()">renameColumn</a>(string oldColumnName, string newColumnName)</p><p class="description">Rename Column</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#setIdGeneratorType()">setIdGeneratorType</a>(string type)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#setPrimaryKey()">setPrimaryKey</a>(array columns, string indexName)</p><p class="description">Set Primary Key</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setSchemaConfig()">setSchemaConfig</a>(<a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a> schemaConfig)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#visit()">visit</a>(<a href="../../../doctrine/dbal/schema/visitor/visitor.html">Visitor</a> visitor)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#getName()">getName</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 52</div>
+<h3 id="ID_IDENTITY">ID_IDENTITY</h3>
+<code class="signature">public final  int <strong>ID_IDENTITY</strong> = 2</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 42</div>
+<h3 id="ID_NONE">ID_NONE</h3>
+<code class="signature">public final  int <strong>$ID_NONE</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 47</div>
+<h3 id="ID_SEQUENCE">ID_SEQUENCE</h3>
+<code class="signature">public final  int <strong>ID_SEQUENCE</strong> = 1</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 62</div>
+<h3 id="_columns">_columns</h3>
+<code class="signature">protected  array <strong>$_columns</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 77</div>
+<h3 id="_fkConstraints">_fkConstraints</h3>
+<code class="signature">protected  array <strong>$_fkConstraints</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 87</div>
+<h3 id="_idGeneratorType">_idGeneratorType</h3>
+<code class="signature">protected  bool <strong>$_idGeneratorType</strong> = self::ID_NONE</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 67</div>
+<h3 id="_indexes">_indexes</h3>
+<code class="signature">protected  array <strong>$_indexes</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 57</div>
+<h3 id="_name">_name</h3>
+<code class="signature">protected  string <strong>$_name</strong> = null</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 82</div>
+<h3 id="_options">_options</h3>
+<code class="signature">protected  array <strong>$_options</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 72</div>
+<h3 id="_primaryKeyName">_primaryKeyName</h3>
+<code class="signature">protected  string <strong>$_primaryKeyName</strong> = false</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 92</div>
+<h3 id="_schemaConfig">_schemaConfig</h3>
+<code class="signature">protected  <a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a> <strong>$_schemaConfig</strong> = null</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 103</div>
+<h3 id="Table()">Table</h3>
+<code class="signature">public <strong>Table</strong>(string tableName, array columns, array options, array indexes, array fkConstraints, int idGeneratorType)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 266</div>
+<h3 id="addColumn()">addColumn</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>addColumn</strong>(string columnName, mixed typeName, array options, string columnType)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 330</div>
+<h3 id="addForeignKeyConstraint()">addForeignKeyConstraint</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>addForeignKeyConstraint</strong>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> foreignTable, mixed localColumnNames, mixed foreignColumnNames, array options, array localColumns, array foreignColumns)</code>
+<div class="details">
+<p>Add a foreign key constraint</p><p>Name is inferred from the local columns</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 181</div>
+<h3 id="addIndex()">addIndex</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>addIndex</strong>(array columnNames, string indexName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 362</div>
+<h3 id="addNamedForeignKeyConstraint()">addNamedForeignKeyConstraint</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>addNamedForeignKeyConstraint</strong>(string name, <a href="../../../doctrine/dbal/schema/table.html">Table</a> foreignTable, mixed localColumnNames, mixed foreignColumnNames, array options, array localColumns, array foreignColumns)</code>
+<div class="details">
+<p>Add a foreign key constraint with a given name</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 395</div>
+<h3 id="addOption()">addOption</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>addOption</strong>(string name, string value)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 198</div>
+<h3 id="addUniqueIndex()">addUniqueIndex</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>addUniqueIndex</strong>(array columnNames, string indexName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 347</div>
+<h3 id="addUnnamedForeignKeyConstraint()">addUnnamedForeignKeyConstraint</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>addUnnamedForeignKeyConstraint</strong>(<a href="../../../doctrine/dbal/schema/table.html">Table</a> foreignTable, mixed localColumnNames, mixed foreignColumnNames, array options, array localColumns, array foreignColumns)</code>
+<div class="details">
+<p>Add a foreign key constraint</p><p>Name is to be generated by the database itsself.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 297</div>
+<h3 id="changeColumn()">changeColumn</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>changeColumn</strong>(string columnName, array options)</code>
+<div class="details">
+<p>Change Column Details</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 215</div>
+<h3 id="columnsAreIndexed()">columnsAreIndexed</h3>
+<code class="signature">public  bool <strong>columnsAreIndexed</strong>(array columnsNames)</code>
+<div class="details">
+<p>Check if an index begins in the order of the given columns.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 310</div>
+<h3 id="dropColumn()">dropColumn</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>dropColumn</strong>(string columnName)</code>
+<div class="details">
+<p>Drop Column from Table</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 535</div>
+<h3 id="getColumn()">getColumn</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column</a> <strong>getColumn</strong>(string columnName)</code>
+<div class="details">
+<p>Get a column instance</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 511</div>
+<h3 id="getColumns()">getColumns</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/column.html">Column[]</a> <strong>getColumns</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 482</div>
+<h3 id="getForeignKey()">getForeignKey</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> <strong>getForeignKey</strong>(string constraintName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 589</div>
+<h3 id="getForeignKeys()">getForeignKeys</h3>
+<code class="signature">public  array <strong>getForeignKeys</strong>()</code>
+<div class="details">
+<p>Get Constraints</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 567</div>
+<h3 id="getIndex()">getIndex</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/index.html">Index</a> <strong>getIndex</strong>(string indexName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 579</div>
+<h3 id="getIndexes()">getIndexes</h3>
+<code class="signature">public  array <strong>getIndexes</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 599</div>
+<h3 id="getOption()">getOption</h3>
+<code class="signature">public  void <strong>getOption</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 604</div>
+<h3 id="getOptions()">getOptions</h3>
+<code class="signature">public  void <strong>getOptions</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 548</div>
+<h3 id="getPrimaryKey()">getPrimaryKey</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/index.html">Index</a> <strong>getPrimaryKey</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 523</div>
+<h3 id="hasColumn()">hasColumn</h3>
+<code class="signature">public  bool <strong>hasColumn</strong>(string columnName)</code>
+<div class="details">
+<p>Does this table have a column with the given name?</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 472</div>
+<h3 id="hasForeignKey()">hasForeignKey</h3>
+<code class="signature">public  bool <strong>hasForeignKey</strong>(string constraintName)</code>
+<div class="details">
+<p>Does Table have a foreign key constraint with the given name?</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 557</div>
+<h3 id="hasIndex()">hasIndex</h3>
+<code class="signature">public  bool <strong>hasIndex</strong>(string indexName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 594</div>
+<h3 id="hasOption()">hasOption</h3>
+<code class="signature">public  void <strong>hasOption</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 495</div>
+<h3 id="isIdGeneratorIdentity()">isIdGeneratorIdentity</h3>
+<code class="signature">public  bool <strong>isIdGeneratorIdentity</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 503</div>
+<h3 id="isIdGeneratorSequence()">isIdGeneratorSequence</h3>
+<code class="signature">public  array <strong>isIdGeneratorSequence</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 281</div>
+<h3 id="renameColumn()">renameColumn</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>renameColumn</strong>(string oldColumnName, string newColumnName)</code>
+<div class="details">
+<p>Rename Column</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 170</div>
+<h3 id="setIdGeneratorType()">setIdGeneratorType</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>setIdGeneratorType</strong>(string type)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 154</div>
+<h3 id="setPrimaryKey()">setPrimaryKey</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/table.html">Table</a> <strong>setPrimaryKey</strong>(array columns, string indexName)</code>
+<div class="details">
+<p>Set Primary Key</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 130</div>
+<h3 id="setSchemaConfig()">setSchemaConfig</h3>
+<code class="signature">public  void <strong>setSchemaConfig</strong>(<a href="../../../doctrine/dbal/schema/schemaconfig.html">SchemaConfig</a> schemaConfig)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Table.php at line 612</div>
+<h3 id="visit()">visit</h3>
+<code class="signature">public  void <strong>visit</strong>(<a href="../../../doctrine/dbal/schema/visitor/visitor.html">Visitor</a> visitor)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/table.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/tablediff.html b/lib/api/doctrine/dbal/schema/tablediff.html
new file mode 100644
index 000000000..da0016724
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/tablediff.html
@@ -0,0 +1,260 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>TableDiff (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/tablediff.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\TableDiff</div>
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 35</div>
+
+<h1>Class TableDiff</h1>
+
+<pre class="tree"><strong>TableDiff</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>TableDiff</strong></p>
+
+<div class="comment" id="overview_description"><p>Table Diff</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dd>http://ez.no/licenses/new_bsd New BSD License</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Copyright:</dt>
+<dd>Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> array(string=>Column)</td>
+<td class="description"><p class="name"><a href="#addedColumns">$addedColumns</a></p><p class="description">All added fields</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#addedForeignKeys">$addedForeignKeys</a></p><p class="description">All added foreign key definitions</p></td>
+</tr>
+<tr>
+<td class="type"> array(string=>Index)</td>
+<td class="description"><p class="name"><a href="#addedIndexes">$addedIndexes</a></p><p class="description">All added indexes</p></td>
+</tr>
+<tr>
+<td class="type"> array(string=>Column)</td>
+<td class="description"><p class="name"><a href="#changedColumns">$changedColumns</a></p><p class="description">All changed fields</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#changedForeignKeys">$changedForeignKeys</a></p><p class="description">All changed foreign keys</p></td>
+</tr>
+<tr>
+<td class="type"> array(string=>Index)</td>
+<td class="description"><p class="name"><a href="#changedIndexes">$changedIndexes</a></p><p class="description">All changed indexes</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#newName">$newName</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array(string=>bool)</td>
+<td class="description"><p class="name"><a href="#removedColumns">$removedColumns</a></p><p class="description">All removed fields</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#removedForeignKeys">$removedForeignKeys</a></p><p class="description">All removed foreign keys</p></td>
+</tr>
+<tr>
+<td class="type"> array(string=>bool)</td>
+<td class="description"><p class="name"><a href="#removedIndexes">$removedIndexes</a></p><p class="description">All removed indexes</p></td>
+</tr>
+<tr>
+<td class="type"> array(string=>Column)</td>
+<td class="description"><p class="name"><a href="#renamedColumns">$renamedColumns</a></p><p class="description">Columns that are only renamed from key to column instance name.</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#TableDiff()">TableDiff</a>(mixed tableName, array(string=>Column) addedColumns, array(string=>Column) changedColumns, array(string=>bool) removedColumns, array(string=>Index) addedIndexes, array(string=>Index) changedIndexes, array(string=>bool) removedIndexes)</p><p class="description">Constructs an TableDiff object.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 52</div>
+<h3 id="addedColumns">addedColumns</h3>
+<code class="signature">public  array(string=>Column) <strong>$addedColumns</strong></code>
+<div class="details">
+<p>All added fields</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 101</div>
+<h3 id="addedForeignKeys">addedForeignKeys</h3>
+<code class="signature">public  array <strong>$addedForeignKeys</strong> = array()</code>
+<div class="details">
+<p>All added foreign key definitions</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 80</div>
+<h3 id="addedIndexes">addedIndexes</h3>
+<code class="signature">public  array(string=>Index) <strong>$addedIndexes</strong> = array()</code>
+<div class="details">
+<p>All added indexes</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 59</div>
+<h3 id="changedColumns">changedColumns</h3>
+<code class="signature">public  array(string=>Column) <strong>$changedColumns</strong> = array()</code>
+<div class="details">
+<p>All changed fields</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 108</div>
+<h3 id="changedForeignKeys">changedForeignKeys</h3>
+<code class="signature">public  array <strong>$changedForeignKeys</strong> = array()</code>
+<div class="details">
+<p>All changed foreign keys</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 87</div>
+<h3 id="changedIndexes">changedIndexes</h3>
+<code class="signature">public  array(string=>Index) <strong>$changedIndexes</strong> = array()</code>
+<div class="details">
+<p>All changed indexes</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 40</div>
+<h3 id="name">name</h3>
+<code class="signature">public  string <strong>$name</strong> = null</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 45</div>
+<h3 id="newName">newName</h3>
+<code class="signature">public  string <strong>$newName</strong> = false</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 66</div>
+<h3 id="removedColumns">removedColumns</h3>
+<code class="signature">public  array(string=>bool) <strong>$removedColumns</strong> = array()</code>
+<div class="details">
+<p>All removed fields</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 115</div>
+<h3 id="removedForeignKeys">removedForeignKeys</h3>
+<code class="signature">public  array <strong>$removedForeignKeys</strong> = array()</code>
+<div class="details">
+<p>All removed foreign keys</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 94</div>
+<h3 id="removedIndexes">removedIndexes</h3>
+<code class="signature">public  array(string=>bool) <strong>$removedIndexes</strong> = array()</code>
+<div class="details">
+<p>All removed indexes</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 73</div>
+<h3 id="renamedColumns">renamedColumns</h3>
+<code class="signature">public  array(string=>Column) <strong>$renamedColumns</strong> = array()</code>
+<div class="details">
+<p>Columns that are only renamed from key to column instance name.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/TableDiff.php at line 127</div>
+<h3 id="TableDiff()">TableDiff</h3>
+<code class="signature">public <strong>TableDiff</strong>(mixed tableName, array(string=>Column) addedColumns, array(string=>Column) changedColumns, array(string=>bool) removedColumns, array(string=>Index) addedIndexes, array(string=>Index) changedIndexes, array(string=>bool) removedIndexes)</code>
+<div class="details">
+<p>Constructs an TableDiff object.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/tablediff.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/view.html b/lib/api/doctrine/dbal/schema/view.html
new file mode 100644
index 000000000..0ffbbfdb9
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/view.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>View (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/view.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\View</div>
+<div class="location">/Doctrine/DBAL/Schema/View.php at line 33</div>
+
+<h1>Class View</h1>
+
+<pre class="tree">Class:View - Superclass: AbstractAsset
+<a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a><br>   &lfloor;&nbsp;<strong>View</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>View</strong><br>extends <a href="../../../doctrine/dbal/schema/abstractasset.html">AbstractAsset</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Representation of a Database View</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#_name">_name</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#View()">View</a>(mixed name, mixed sql)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Schema\AbstractAsset</th></tr>
+<tr><td><a href="../../../doctrine/dbal/schema/abstractasset.html#getName()">getName</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/View.php at line 40</div>
+<h3 id="View()">View</h3>
+<code class="signature">public <strong>View</strong>(mixed name, mixed sql)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/View.php at line 49</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  string <strong>getSql</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/schema/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/schema/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/schema/view.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/visitor/createschemasqlcollector.html b/lib/api/doctrine/dbal/schema/visitor/createschemasqlcollector.html
new file mode 100644
index 000000000..c5b00b782
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/visitor/createschemasqlcollector.html
@@ -0,0 +1,195 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>CreateSchemaSqlCollector (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/createschemasqlcollector.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</div>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php at line 33</div>
+
+<h1>Class CreateSchemaSqlCollector</h1>
+
+<pre class="tree"><strong>CreateSchemaSqlCollector</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>CreateSchemaSqlCollector</strong></p>
+
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#CreateSchemaSqlCollector()">CreateSchemaSqlCollector</a>(<a href="../../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptColumn()">acceptColumn</a>(mixed table, mixed column)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptForeignKey()">acceptForeignKey</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> localTable, <a href="../../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> fkConstraint)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptIndex()">acceptIndex</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table, <a href="../../../../doctrine/dbal/schema/index.html">Index</a> index)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptSchema()">acceptSchema</a>(<a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptSequence()">acceptSequence</a>(<a href="../../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptTable()">acceptTable</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table)</p><p class="description">Generate DDL Statements to create the accepted table with all its dependencies.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getQueries()">getQueries</a>()</p><p class="description">Get all queries collected so far.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#resetQueries()">resetQueries</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php at line 59</div>
+<h3 id="CreateSchemaSqlCollector()">CreateSchemaSqlCollector</h3>
+<code class="signature">public <strong>CreateSchemaSqlCollector</strong>(<a href="../../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php at line 84</div>
+<h3 id="acceptColumn()">acceptColumn</h3>
+<code class="signature">public  void <strong>acceptColumn</strong>(mixed table, mixed column)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php at line 93</div>
+<h3 id="acceptForeignKey()">acceptForeignKey</h3>
+<code class="signature">public  void <strong>acceptForeignKey</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> localTable, <a href="../../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> fkConstraint)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php at line 107</div>
+<h3 id="acceptIndex()">acceptIndex</h3>
+<code class="signature">public  void <strong>acceptIndex</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table, <a href="../../../../doctrine/dbal/schema/index.html">Index</a> index)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php at line 67</div>
+<h3 id="acceptSchema()">acceptSchema</h3>
+<code class="signature">public  void <strong>acceptSchema</strong>(<a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php at line 115</div>
+<h3 id="acceptSequence()">acceptSequence</h3>
+<code class="signature">public  void <strong>acceptSequence</strong>(<a href="../../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php at line 77</div>
+<h3 id="acceptTable()">acceptTable</h3>
+<code class="signature">public  void <strong>acceptTable</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table)</code>
+<div class="details">
+<p>Generate DDL Statements to create the accepted table with all its dependencies.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php at line 137</div>
+<h3 id="getQueries()">getQueries</h3>
+<code class="signature">public  array <strong>getQueries</strong>()</code>
+<div class="details">
+<p>Get all queries collected so far.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/CreateSchemaSqlCollector.php at line 125</div>
+<h3 id="resetQueries()">resetQueries</h3>
+<code class="signature">public  array <strong>resetQueries</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/createschemasqlcollector.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/visitor/dropschemasqlcollector.html b/lib/api/doctrine/dbal/schema/visitor/dropschemasqlcollector.html
new file mode 100644
index 000000000..bac338234
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/visitor/dropschemasqlcollector.html
@@ -0,0 +1,209 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>DropSchemaSqlCollector (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/dropschemasqlcollector.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</div>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php at line 42</div>
+
+<h1>Class DropSchemaSqlCollector</h1>
+
+<pre class="tree"><strong>DropSchemaSqlCollector</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>DropSchemaSqlCollector</strong></p>
+
+<div class="comment" id="overview_description"><p>Gather SQL statements that allow to completly drop the current schema.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#DropSchemaSqlCollector()">DropSchemaSqlCollector</a>(<a href="../../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptColumn()">acceptColumn</a>(mixed table, <a href="../../../../doctrine/dbal/schema/column.html">Column</a> column)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptForeignKey()">acceptForeignKey</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> localTable, <a href="../../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> fkConstraint)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptIndex()">acceptIndex</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table, <a href="../../../../doctrine/dbal/schema/index.html">Index</a> index)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptSchema()">acceptSchema</a>(<a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptSequence()">acceptSequence</a>(<a href="../../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptTable()">acceptTable</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#clearQueries()">clearQueries</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getQueries()">getQueries</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php at line 68</div>
+<h3 id="DropSchemaSqlCollector()">DropSchemaSqlCollector</h3>
+<code class="signature">public <strong>DropSchemaSqlCollector</strong>(<a href="../../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php at line 92</div>
+<h3 id="acceptColumn()">acceptColumn</h3>
+<code class="signature">public  void <strong>acceptColumn</strong>(mixed table, <a href="../../../../doctrine/dbal/schema/column.html">Column</a> column)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php at line 101</div>
+<h3 id="acceptForeignKey()">acceptForeignKey</h3>
+<code class="signature">public  void <strong>acceptForeignKey</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> localTable, <a href="../../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> fkConstraint)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php at line 114</div>
+<h3 id="acceptIndex()">acceptIndex</h3>
+<code class="signature">public  void <strong>acceptIndex</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table, <a href="../../../../doctrine/dbal/schema/index.html">Index</a> index)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php at line 76</div>
+<h3 id="acceptSchema()">acceptSchema</h3>
+<code class="signature">public  void <strong>acceptSchema</strong>(<a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php at line 122</div>
+<h3 id="acceptSequence()">acceptSequence</h3>
+<code class="signature">public  void <strong>acceptSequence</strong>(<a href="../../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php at line 84</div>
+<h3 id="acceptTable()">acceptTable</h3>
+<code class="signature">public  void <strong>acceptTable</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php at line 130</div>
+<h3 id="clearQueries()">clearQueries</h3>
+<code class="signature">public  array <strong>clearQueries</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/DropSchemaSqlCollector.php at line 138</div>
+<h3 id="getQueries()">getQueries</h3>
+<code class="signature">public  array <strong>getQueries</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/dropschemasqlcollector.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/visitor/fixschema.html b/lib/api/doctrine/dbal/schema/visitor/fixschema.html
new file mode 100644
index 000000000..66f8bc9b3
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/visitor/fixschema.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>FixSchema (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/fixschema.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Visitor\FixSchema</div>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/FixSchema.php at line 14</div>
+
+<h1>Class FixSchema</h1>
+
+<pre class="tree"><strong>FixSchema</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>FixSchema</strong></p>
+
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#FixSchema()">FixSchema</a>(mixed addExplicitIndexForForeignKey)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptColumn()">acceptColumn</a>(mixed table, <a href="../../../../doctrine/dbal/schema/column.html">Column</a> column)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptForeignKey()">acceptForeignKey</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> localTable, <a href="../../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> fkConstraint)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptIndex()">acceptIndex</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table, <a href="../../../../doctrine/dbal/schema/index.html">Index</a> index)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptSchema()">acceptSchema</a>(<a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptSequence()">acceptSequence</a>(<a href="../../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptTable()">acceptTable</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/FixSchema.php at line 21</div>
+<h3 id="FixSchema()">FixSchema</h3>
+<code class="signature">public <strong>FixSchema</strong>(mixed addExplicitIndexForForeignKey)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/FixSchema.php at line 45</div>
+<h3 id="acceptColumn()">acceptColumn</h3>
+<code class="signature">public  void <strong>acceptColumn</strong>(mixed table, <a href="../../../../doctrine/dbal/schema/column.html">Column</a> column)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/FixSchema.php at line 54</div>
+<h3 id="acceptForeignKey()">acceptForeignKey</h3>
+<code class="signature">public  void <strong>acceptForeignKey</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> localTable, <a href="../../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> fkConstraint)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/FixSchema.php at line 70</div>
+<h3 id="acceptIndex()">acceptIndex</h3>
+<code class="signature">public  void <strong>acceptIndex</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table, <a href="../../../../doctrine/dbal/schema/index.html">Index</a> index)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/FixSchema.php at line 29</div>
+<h3 id="acceptSchema()">acceptSchema</h3>
+<code class="signature">public  void <strong>acceptSchema</strong>(<a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/FixSchema.php at line 78</div>
+<h3 id="acceptSequence()">acceptSequence</h3>
+<code class="signature">public  void <strong>acceptSequence</strong>(<a href="../../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/FixSchema.php at line 37</div>
+<h3 id="acceptTable()">acceptTable</h3>
+<code class="signature">public  void <strong>acceptTable</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/fixschema.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/visitor/package-frame.html b/lib/api/doctrine/dbal/schema/visitor/package-frame.html
new file mode 100644
index 000000000..64b3218d3
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/visitor/package-frame.html
@@ -0,0 +1,33 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Schema\Visitor (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Schema\Visitor</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/dbal/schema/visitor/createschemasqlcollector.html" target="main">CreateSchemaSqlCollector</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/dropschemasqlcollector.html" target="main">DropSchemaSqlCollector</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/fixschema.html" target="main">FixSchema</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../../../doctrine/dbal/schema/visitor/visitor.html" target="main">Visitor</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/visitor/package-functions.html b/lib/api/doctrine/dbal/schema/visitor/package-functions.html
new file mode 100644
index 000000000..31640f940
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/visitor/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/visitor/package-globals.html b/lib/api/doctrine/dbal/schema/visitor/package-globals.html
new file mode 100644
index 000000000..e9c3e7ee3
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/visitor/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/visitor/package-summary.html b/lib/api/doctrine/dbal/schema/visitor/package-summary.html
new file mode 100644
index 000000000..e24a8d237
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/visitor/package-summary.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Schema\Visitor (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/schema/visitor/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Schema\Visitor</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/schema/visitor/createschemasqlcollector.html">CreateSchemaSqlCollector</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/schema/visitor/dropschemasqlcollector.html">DropSchemaSqlCollector</a></td><td class="description">Gather SQL statements that allow to completly drop the current schema.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/schema/visitor/fixschema.html">FixSchema</a></td><td class="description"></td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/dbal/schema/visitor/visitor.html">Visitor</a></td><td class="description">Schema Visitor used for Validation or Generation purposes.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/dbal/schema/visitor/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/visitor/package-tree.html b/lib/api/doctrine/dbal/schema/visitor/package-tree.html
new file mode 100644
index 000000000..86001160c
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/visitor/package-tree.html
@@ -0,0 +1,58 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Schema\Visitor (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Schema\Visitor</h1><ul>
+<li><a href="../../../../doctrine/dbal/schema/visitor/createschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/dropschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/fixschema.html">Doctrine\DBAL\Schema\Visitor\FixSchema</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/schema/visitor/visitor.html b/lib/api/doctrine/dbal/schema/visitor/visitor.html
new file mode 100644
index 000000000..cbc2dfdd3
--- /dev/null
+++ b/lib/api/doctrine/dbal/schema/visitor/visitor.html
@@ -0,0 +1,169 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Visitor (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/visitor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Schema\Visitor\Visitor</div>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/Visitor.php at line 42</div>
+
+<h1>Interface Visitor</h1>
+
+<pre class="tree"><strong>Visitor</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>Visitor</strong></p>
+
+<div class="comment" id="overview_description"><p>Schema Visitor used for Validation or Generation purposes.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptColumn()">acceptColumn</a>(mixed table, <a href="../../../../doctrine/dbal/schema/column.html">Column</a> column)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptForeignKey()">acceptForeignKey</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> localTable, <a href="../../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> fkConstraint)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptIndex()">acceptIndex</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table, <a href="../../../../doctrine/dbal/schema/index.html">Index</a> index)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptSchema()">acceptSchema</a>(<a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptSequence()">acceptSequence</a>(<a href="../../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#acceptTable()">acceptTable</a>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Schema/Visitor/Visitor.php at line 57</div>
+<h3 id="acceptColumn()">acceptColumn</h3>
+<code class="signature">public  void <strong>acceptColumn</strong>(mixed table, <a href="../../../../doctrine/dbal/schema/column.html">Column</a> column)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/Visitor.php at line 63</div>
+<h3 id="acceptForeignKey()">acceptForeignKey</h3>
+<code class="signature">public  void <strong>acceptForeignKey</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> localTable, <a href="../../../../doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint</a> fkConstraint)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/Visitor.php at line 69</div>
+<h3 id="acceptIndex()">acceptIndex</h3>
+<code class="signature">public  void <strong>acceptIndex</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table, <a href="../../../../doctrine/dbal/schema/index.html">Index</a> index)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/Visitor.php at line 47</div>
+<h3 id="acceptSchema()">acceptSchema</h3>
+<code class="signature">public  void <strong>acceptSchema</strong>(<a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/Visitor.php at line 74</div>
+<h3 id="acceptSequence()">acceptSequence</h3>
+<code class="signature">public  void <strong>acceptSequence</strong>(<a href="../../../../doctrine/dbal/schema/sequence.html">Sequence</a> sequence)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Schema/Visitor/Visitor.php at line 52</div>
+<h3 id="acceptTable()">acceptTable</h3>
+<code class="signature">public  void <strong>acceptTable</strong>(<a href="../../../../doctrine/dbal/schema/table.html">Table</a> table)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/dbal/schema/visitor/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/dbal/schema/visitor/visitor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/statement.html b/lib/api/doctrine/dbal/statement.html
new file mode 100644
index 000000000..700110238
--- /dev/null
+++ b/lib/api/doctrine/dbal/statement.html
@@ -0,0 +1,302 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Statement (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/statement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Statement</div>
+<div class="location">/Doctrine/DBAL/Statement.php at line 35</div>
+
+<h1>Class Statement</h1>
+
+<pre class="tree"><strong>Statement</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Statement</strong></p>
+
+<div class="comment" id="overview_description"><p>A thin wrapper around a Doctrine\DBAL\Driver\Statement that adds support
+for logging, DBAL mapping types, etc.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Statement()">Statement</a>(string sql, mixed conn, Doctrine\DBAL\Connection The)</p><p class="description">Creates a new Statement for the given SQL and Connection.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#bindParam()">bindParam</a>(string name, mixed var, integer type, mixed value)</p><p class="description">Binds a parameter to a value by reference.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#bindValue()">bindValue</a>(mixed name, mixed value, mixed type, $value The)</p><p class="description">Binds a parameter value to the statement.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#closeCursor()">closeCursor</a>()</p><p class="description">Closes the cursor, freeing the database resources used by this statement.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#columnCount()">columnCount</a>()</p><p class="description">Returns the number of columns in the result set.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#errorCode()">errorCode</a>()</p><p class="description">Fetches the SQLSTATE associated with the last operation on the statement.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#errorInfo()">errorInfo</a>()</p><p class="description">Fetches extended error information associated with the last operation on the statement.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed params)</p><p class="description">Executes the statement with the currently bound parameters.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fetch()">fetch</a>(integer fetchStyle)</p><p class="description">Fetches the next row from a result set.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#fetchAll()">fetchAll</a>(integer fetchStyle, integer columnIndex)</p><p class="description">Returns an array containing all of the result set rows.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fetchColumn()">fetchColumn</a>(integer columnIndex)</p><p class="description">Returns a single column from the next row of a result set.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Statement</td>
+<td class="description"><p class="name"><a href="#getWrappedStatement()">getWrappedStatement</a>()</p><p class="description">Gets the wrapped driver statement.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#rowCount()">rowCount</a>()</p><p class="description">Returns the number of rows affected by the last execution of this statement.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Statement.php at line 64</div>
+<h3 id="Statement()">Statement</h3>
+<code class="signature">public <strong>Statement</strong>(string sql, mixed conn, Doctrine\DBAL\Connection The)</code>
+<div class="details">
+<p>Creates a new <tt>Statement</tt> for the given SQL and <tt>Connection</tt>.</p><dl>
+<dt>Parameters:</dt>
+<dd>sql - The SQL of the statement.</dd>
+<dd>The - connection on which the statement should be executed.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Statement.php at line 114</div>
+<h3 id="bindParam()">bindParam</h3>
+<code class="signature">public  boolean <strong>bindParam</strong>(string name, mixed var, integer type, mixed value)</code>
+<div class="details">
+<p>Binds a parameter to a value by reference.</p><p>Binding a parameter by reference does not support DBAL mapping types.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name or position of the parameter.</dd>
+<dd>value - The reference to the variable to bind</dd>
+<dd>type - The PDO binding type.</dd>
+<dt>Returns:</dt>
+<dd>TRUE on success, FALSE on failure.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 85</div>
+<h3 id="bindValue()">bindValue</h3>
+<code class="signature">public  boolean <strong>bindValue</strong>(mixed name, mixed value, mixed type, $value The)</code>
+<div class="details">
+<p>Binds a parameter value to the statement.</p><p>The value can optionally be bound with a PDO binding type or a DBAL mapping type.
+If bound with a DBAL mapping type, the binding type is derived from the mapping
+type and the value undergoes the conversion routines of the mapping type before
+being bound.</p><dl>
+<dt>Parameters:</dt>
+<dd>The - name or position of the parameter.</dd>
+<dd>The - value of the parameter.</dd>
+<dd>type - Either a PDO binding type or a DBAL mapping type name or instance.</dd>
+<dt>Returns:</dt>
+<dd>TRUE on success, FALSE on failure.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 138</div>
+<h3 id="closeCursor()">closeCursor</h3>
+<code class="signature">public  boolean <strong>closeCursor</strong>()</code>
+<div class="details">
+<p>Closes the cursor, freeing the database resources used by this statement.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE on success, FALSE on failure.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 148</div>
+<h3 id="columnCount()">columnCount</h3>
+<code class="signature">public  integer <strong>columnCount</strong>()</code>
+<div class="details">
+<p>Returns the number of columns in the result set.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 158</div>
+<h3 id="errorCode()">errorCode</h3>
+<code class="signature">public  string <strong>errorCode</strong>()</code>
+<div class="details">
+<p>Fetches the SQLSTATE associated with the last operation on the statement.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 168</div>
+<h3 id="errorInfo()">errorInfo</h3>
+<code class="signature">public  array <strong>errorInfo</strong>()</code>
+<div class="details">
+<p>Fetches extended error information associated with the last operation on the statement.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 124</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">public  boolean <strong>execute</strong>(mixed params)</code>
+<div class="details">
+<p>Executes the statement with the currently bound parameters.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE on success, FALSE on failure.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 180</div>
+<h3 id="fetch()">fetch</h3>
+<code class="signature">public  mixed <strong>fetch</strong>(integer fetchStyle)</code>
+<div class="details">
+<p>Fetches the next row from a result set.</p><dl>
+<dt>Returns:</dt>
+<dd>The return value of this function on success depends on the fetch type. In all cases, FALSE is returned on failure.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 192</div>
+<h3 id="fetchAll()">fetchAll</h3>
+<code class="signature">public  array <strong>fetchAll</strong>(integer fetchStyle, integer columnIndex)</code>
+<div class="details">
+<p>Returns an array containing all of the result set rows.</p><dl>
+<dt>Returns:</dt>
+<dd>An array containing all of the remaining rows in the result set.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 206</div>
+<h3 id="fetchColumn()">fetchColumn</h3>
+<code class="signature">public  mixed <strong>fetchColumn</strong>(integer columnIndex)</code>
+<div class="details">
+<p>Returns a single column from the next row of a result set.</p><dl>
+<dt>Returns:</dt>
+<dd>A single column from the next row of a result set or FALSE if there are no more rows.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 226</div>
+<h3 id="getWrappedStatement()">getWrappedStatement</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Statement <strong>getWrappedStatement</strong>()</code>
+<div class="details">
+<p>Gets the wrapped driver statement.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Statement.php at line 216</div>
+<h3 id="rowCount()">rowCount</h3>
+<code class="signature">public  integer <strong>rowCount</strong>()</code>
+<div class="details">
+<p>Returns the number of rows affected by the last execution of this statement.</p><dl>
+<dt>Returns:</dt>
+<dd>The number of affected rows.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/dbal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/dbal/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/dbal/statement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/command/importcommand.html b/lib/api/doctrine/dbal/tools/console/command/importcommand.html
new file mode 100644
index 000000000..19c311e34
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/command/importcommand.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>ImportCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/importcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Tools\Console\Command\ImportCommand</div>
+<div class="location">/Doctrine/DBAL/Tools/Console/Command/ImportCommand.php at line 40</div>
+
+<h1>Class ImportCommand</h1>
+
+<pre class="tree">Class:ImportCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>ImportCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ImportCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Task for executing arbitrary SQL that can come from a file or directly from
+the command line.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Tools/Console/Command/ImportCommand.php at line 45</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Tools/Console/Command/ImportCommand.php at line 64</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/importcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/command/package-frame.html b/lib/api/doctrine/dbal/tools/console/command/package-frame.html
new file mode 100644
index 000000000..a77fb8022
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/command/package-frame.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Tools\Console\Command (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Tools\Console\Command</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/importcommand.html" target="main">ImportCommand</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/runsqlcommand.html" target="main">RunSqlCommand</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/command/package-functions.html b/lib/api/doctrine/dbal/tools/console/command/package-functions.html
new file mode 100644
index 000000000..50c3e7dc5
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/command/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/command/package-globals.html b/lib/api/doctrine/dbal/tools/console/command/package-globals.html
new file mode 100644
index 000000000..bb7bef98a
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/command/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/command/package-summary.html b/lib/api/doctrine/dbal/tools/console/command/package-summary.html
new file mode 100644
index 000000000..145bce8ef
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/command/package-summary.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Tools\Console\Command (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/dbal/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Tools\Console\Command</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../../doctrine/dbal/tools/console/command/importcommand.html">ImportCommand</a></td><td class="description">Task for executing arbitrary SQL that can come from a file or directly from
+the command line.</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/dbal/tools/console/command/runsqlcommand.html">RunSqlCommand</a></td><td class="description">Task for executing arbitrary SQL that can come from a file or directly from
+the command line.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/dbal/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/command/package-tree.html b/lib/api/doctrine/dbal/tools/console/command/package-tree.html
new file mode 100644
index 000000000..75c1b0d2e
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/command/package-tree.html
@@ -0,0 +1,53 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Tools\Console\Command (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Tools\Console\Command</h1><div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/command/runsqlcommand.html b/lib/api/doctrine/dbal/tools/console/command/runsqlcommand.html
new file mode 100644
index 000000000..259f9c2b0
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/command/runsqlcommand.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>RunSqlCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/runsqlcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Tools\Console\Command\RunSqlCommand</div>
+<div class="location">/Doctrine/DBAL/Tools/Console/Command/RunSqlCommand.php at line 41</div>
+
+<h1>Class RunSqlCommand</h1>
+
+<pre class="tree">Class:RunSqlCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>RunSqlCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>RunSqlCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Task for executing arbitrary SQL that can come from a file or directly from
+the command line.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Tools/Console/Command/RunSqlCommand.php at line 46</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Tools/Console/Command/RunSqlCommand.php at line 64</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/dbal/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/command/runsqlcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/helper/connectionhelper.html b/lib/api/doctrine/dbal/tools/console/helper/connectionhelper.html
new file mode 100644
index 000000000..166f79252
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/helper/connectionhelper.html
@@ -0,0 +1,168 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>ConnectionHelper (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/helper/connectionhelper.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper</div>
+<div class="location">/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php at line 39</div>
+
+<h1>Class ConnectionHelper</h1>
+
+<pre class="tree">Class:ConnectionHelper - Superclass: Helper
+Helper<br>&lfloor;&nbsp;<strong>ConnectionHelper</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConnectionHelper</strong><br>extends Helper
+
+</p>
+
+<div class="comment" id="overview_description"><p>Doctrine CLI Connection Helper.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  <a href="../../../../../doctrine/dbal/connection.html">Connection</a></td>
+<td class="description"><p class="name"><a href="#_connection">$_connection</a></p><p class="description">Doctrine Database Connection</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ConnectionHelper()">ConnectionHelper</a>(<a href="../../../../../doctrine/dbal/connection.html">Connection</a> connection)</p><p class="description">Constructor</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../../../../doctrine/dbal/connection.html">Connection</a></td>
+<td class="description"><p class="name"><a href="#getConnection()">getConnection</a>()</p><p class="description">Retrieves Doctrine Database Connection</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php at line 45</div>
+<h3 id="_connection">_connection</h3>
+<code class="signature">protected  <a href="../../../../../doctrine/dbal/connection.html">Connection</a> <strong>$_connection</strong></code>
+<div class="details">
+<p>Doctrine Database Connection</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php at line 52</div>
+<h3 id="ConnectionHelper()">ConnectionHelper</h3>
+<code class="signature">public <strong>ConnectionHelper</strong>(<a href="../../../../../doctrine/dbal/connection.html">Connection</a> connection)</code>
+<div class="details">
+<p>Constructor</p><dl>
+<dt>Parameters:</dt>
+<dd>connection - Doctrine Database Connection</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php at line 62</div>
+<h3 id="getConnection()">getConnection</h3>
+<code class="signature">public  <a href="../../../../../doctrine/dbal/connection.html">Connection</a> <strong>getConnection</strong>()</code>
+<div class="details">
+<p>Retrieves Doctrine Database Connection</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Tools/Console/Helper/ConnectionHelper.php at line 70</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  void <strong>getName</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Helper</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/helper/connectionhelper.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/helper/package-frame.html b/lib/api/doctrine/dbal/tools/console/helper/package-frame.html
new file mode 100644
index 000000000..d2bfd107d
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/helper/package-frame.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Tools\Console\Helper (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Tools\Console\Helper</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/connectionhelper.html" target="main">ConnectionHelper</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/helper/package-functions.html b/lib/api/doctrine/dbal/tools/console/helper/package-functions.html
new file mode 100644
index 000000000..3de12f655
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/helper/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/helper/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/helper/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/helper/package-globals.html b/lib/api/doctrine/dbal/tools/console/helper/package-globals.html
new file mode 100644
index 000000000..b4cef095a
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/helper/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/helper/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/helper/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/helper/package-summary.html b/lib/api/doctrine/dbal/tools/console/helper/package-summary.html
new file mode 100644
index 000000000..3fd55ac88
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/helper/package-summary.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Tools\Console\Helper (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/dbal/tools/console/helper/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/helper/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Tools\Console\Helper</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../../doctrine/dbal/tools/console/helper/connectionhelper.html">ConnectionHelper</a></td><td class="description">Doctrine CLI Connection Helper.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/dbal/tools/console/helper/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/helper/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/tools/console/helper/package-tree.html b/lib/api/doctrine/dbal/tools/console/helper/package-tree.html
new file mode 100644
index 000000000..7c08d59b0
--- /dev/null
+++ b/lib/api/doctrine/dbal/tools/console/helper/package-tree.html
@@ -0,0 +1,53 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Tools\Console\Helper (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/helper/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Tools\Console\Helper</h1><div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/dbal/tools/console/helper/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/dbal/tools/console/helper/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/arraytype.html b/lib/api/doctrine/dbal/types/arraytype.html
new file mode 100644
index 000000000..ab3544c80
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/arraytype.html
@@ -0,0 +1,177 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ArrayType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/arraytype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\ArrayType</div>
+<div class="location">/Doctrine/DBAL/Types/ArrayType.php at line 29</div>
+
+<h1>Class ArrayType</h1>
+
+<pre class="tree">Class:ArrayType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>ArrayType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ArrayType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps a PHP array to a clob SQL type.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToDatabaseValue()">convertToDatabaseValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its PHP representation to its database representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its database representation to its PHP representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the SQL declaration snippet for a field of this type.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/ArrayType.php at line 36</div>
+<h3 id="convertToDatabaseValue()">convertToDatabaseValue</h3>
+<code class="signature">public  mixed <strong>convertToDatabaseValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its PHP representation to its database representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The database representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/ArrayType.php at line 41</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its database representation to its PHP representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The PHP representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/ArrayType.php at line 46</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/ArrayType.php at line 31</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the SQL declaration snippet for a field of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/arraytype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/biginttype.html b/lib/api/doctrine/dbal/types/biginttype.html
new file mode 100644
index 000000000..040f1bd7f
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/biginttype.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>BigIntType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/biginttype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\BigIntType</div>
+<div class="location">/Doctrine/DBAL/Types/BigIntType.php at line 32</div>
+
+<h1>Class BigIntType</h1>
+
+<pre class="tree">Class:BigIntType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>BigIntType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>BigIntType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps a database BIGINT to a PHP string.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>robo</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getBindingType()">getBindingType</a>()</p><p class="description">Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the SQL declaration snippet for a field of this type.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/BigIntType.php at line 44</div>
+<h3 id="getBindingType()">getBindingType</h3>
+<code class="signature">public  integer <strong>getBindingType</strong>()</code>
+<div class="details">
+<p>Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.</p><p>This method should return one of the PDO::PARAM_* constants, that is, one of:</p><p>PDO::PARAM_BOOL
+PDO::PARAM_NULL
+PDO::PARAM_INT
+PDO::PARAM_STR
+PDO::PARAM_LOB</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/BigIntType.php at line 34</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/BigIntType.php at line 39</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the SQL declaration snippet for a field of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/biginttype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/booleantype.html b/lib/api/doctrine/dbal/types/booleantype.html
new file mode 100644
index 000000000..481d49a03
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/booleantype.html
@@ -0,0 +1,196 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>BooleanType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/booleantype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\BooleanType</div>
+<div class="location">/Doctrine/DBAL/Types/BooleanType.php at line 31</div>
+
+<h1>Class BooleanType</h1>
+
+<pre class="tree">Class:BooleanType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>BooleanType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>BooleanType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps an SQL boolean to a PHP boolean.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToDatabaseValue()">convertToDatabaseValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its PHP representation to its database representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its database representation to its PHP representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getBindingType()">getBindingType</a>()</p><p class="description">Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the SQL declaration snippet for a field of this type.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/BooleanType.php at line 38</div>
+<h3 id="convertToDatabaseValue()">convertToDatabaseValue</h3>
+<code class="signature">public  mixed <strong>convertToDatabaseValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its PHP representation to its database representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The database representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/BooleanType.php at line 43</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its database representation to its PHP representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The PHP representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/BooleanType.php at line 53</div>
+<h3 id="getBindingType()">getBindingType</h3>
+<code class="signature">public  integer <strong>getBindingType</strong>()</code>
+<div class="details">
+<p>Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.</p><p>This method should return one of the PDO::PARAM_* constants, that is, one of:</p><p>PDO::PARAM_BOOL
+PDO::PARAM_NULL
+PDO::PARAM_INT
+PDO::PARAM_STR
+PDO::PARAM_LOB</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/BooleanType.php at line 48</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/BooleanType.php at line 33</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the SQL declaration snippet for a field of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/booleantype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/datetimetype.html b/lib/api/doctrine/dbal/types/datetimetype.html
new file mode 100644
index 000000000..5910b8bae
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/datetimetype.html
@@ -0,0 +1,177 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>DateTimeType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/datetimetype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\DateTimeType</div>
+<div class="location">/Doctrine/DBAL/Types/DateTimeType.php at line 31</div>
+
+<h1>Class DateTimeType</h1>
+
+<pre class="tree">Class:DateTimeType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>DateTimeType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>DateTimeType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps an SQL DATETIME/TIMESTAMP to a PHP DateTime object.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToDatabaseValue()">convertToDatabaseValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its PHP representation to its database representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its database representation to its PHP representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the SQL declaration snippet for a field of this type.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/DateTimeType.php at line 43</div>
+<h3 id="convertToDatabaseValue()">convertToDatabaseValue</h3>
+<code class="signature">public  mixed <strong>convertToDatabaseValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its PHP representation to its database representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The database representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/DateTimeType.php at line 49</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its database representation to its PHP representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The PHP representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/DateTimeType.php at line 33</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/DateTimeType.php at line 38</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the SQL declaration snippet for a field of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/datetimetype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/datetype.html b/lib/api/doctrine/dbal/types/datetype.html
new file mode 100644
index 000000000..2b5cf4106
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/datetype.html
@@ -0,0 +1,177 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>DateType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/datetype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\DateType</div>
+<div class="location">/Doctrine/DBAL/Types/DateType.php at line 31</div>
+
+<h1>Class DateType</h1>
+
+<pre class="tree">Class:DateType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>DateType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>DateType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps an SQL DATE to a PHP Date object.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToDatabaseValue()">convertToDatabaseValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its PHP representation to its database representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its database representation to its PHP representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the SQL declaration snippet for a field of this type.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/DateType.php at line 43</div>
+<h3 id="convertToDatabaseValue()">convertToDatabaseValue</h3>
+<code class="signature">public  mixed <strong>convertToDatabaseValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its PHP representation to its database representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The database representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/DateType.php at line 49</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its database representation to its PHP representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The PHP representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/DateType.php at line 33</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/DateType.php at line 38</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the SQL declaration snippet for a field of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/datetype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/decimaltype.html b/lib/api/doctrine/dbal/types/decimaltype.html
new file mode 100644
index 000000000..a9faa3131
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/decimaltype.html
@@ -0,0 +1,156 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>DecimalType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/decimaltype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\DecimalType</div>
+<div class="location">/Doctrine/DBAL/Types/DecimalType.php at line 31</div>
+
+<h1>Class DecimalType</h1>
+
+<pre class="tree">Class:DecimalType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>DecimalType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>DecimalType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps an SQL DECIMAL to a PHP double.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its database representation to its PHP representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the SQL declaration snippet for a field of this type.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/DecimalType.php at line 43</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its database representation to its PHP representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The PHP representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/DecimalType.php at line 33</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/DecimalType.php at line 38</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the SQL declaration snippet for a field of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/decimaltype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/integertype.html b/lib/api/doctrine/dbal/types/integertype.html
new file mode 100644
index 000000000..322207fff
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/integertype.html
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>IntegerType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/integertype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\IntegerType</div>
+<div class="location">/Doctrine/DBAL/Types/IntegerType.php at line 32</div>
+
+<h1>Class IntegerType</h1>
+
+<pre class="tree">Class:IntegerType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>IntegerType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>IntegerType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps an SQL INT to a PHP integer.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its database representation to its PHP representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getBindingType()">getBindingType</a>()</p><p class="description">Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the SQL declaration snippet for a field of this type.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/IntegerType.php at line 44</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its database representation to its PHP representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The PHP representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/IntegerType.php at line 49</div>
+<h3 id="getBindingType()">getBindingType</h3>
+<code class="signature">public  integer <strong>getBindingType</strong>()</code>
+<div class="details">
+<p>Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.</p><p>This method should return one of the PDO::PARAM_* constants, that is, one of:</p><p>PDO::PARAM_BOOL
+PDO::PARAM_NULL
+PDO::PARAM_INT
+PDO::PARAM_STR
+PDO::PARAM_LOB</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/IntegerType.php at line 34</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/IntegerType.php at line 39</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the SQL declaration snippet for a field of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/integertype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/objecttype.html b/lib/api/doctrine/dbal/types/objecttype.html
new file mode 100644
index 000000000..619543f5f
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/objecttype.html
@@ -0,0 +1,177 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ObjectType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/objecttype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\ObjectType</div>
+<div class="location">/Doctrine/DBAL/Types/ObjectType.php at line 10</div>
+
+<h1>Class ObjectType</h1>
+
+<pre class="tree">Class:ObjectType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>ObjectType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ObjectType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps a PHP object to a clob SQL type.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToDatabaseValue()">convertToDatabaseValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its PHP representation to its database representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its database representation to its PHP representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the SQL declaration snippet for a field of this type.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/ObjectType.php at line 17</div>
+<h3 id="convertToDatabaseValue()">convertToDatabaseValue</h3>
+<code class="signature">public  mixed <strong>convertToDatabaseValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its PHP representation to its database representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The database representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/ObjectType.php at line 22</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its database representation to its PHP representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The PHP representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/ObjectType.php at line 27</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/ObjectType.php at line 12</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the SQL declaration snippet for a field of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/objecttype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/package-frame.html b/lib/api/doctrine/dbal/types/package-frame.html
new file mode 100644
index 000000000..eb80186d2
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/package-frame.html
@@ -0,0 +1,38 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Types (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\DBAL\Types</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/dbal/types/arraytype.html" target="main">ArrayType</a></li>
+<li><a href="../../../doctrine/dbal/types/biginttype.html" target="main">BigIntType</a></li>
+<li><a href="../../../doctrine/dbal/types/booleantype.html" target="main">BooleanType</a></li>
+<li><a href="../../../doctrine/dbal/types/datetimetype.html" target="main">DateTimeType</a></li>
+<li><a href="../../../doctrine/dbal/types/datetype.html" target="main">DateType</a></li>
+<li><a href="../../../doctrine/dbal/types/decimaltype.html" target="main">DecimalType</a></li>
+<li><a href="../../../doctrine/dbal/types/integertype.html" target="main">IntegerType</a></li>
+<li><a href="../../../doctrine/dbal/types/objecttype.html" target="main">ObjectType</a></li>
+<li><a href="../../../doctrine/dbal/types/smallinttype.html" target="main">SmallIntType</a></li>
+<li><a href="../../../doctrine/dbal/types/stringtype.html" target="main">StringType</a></li>
+<li><a href="../../../doctrine/dbal/types/texttype.html" target="main">TextType</a></li>
+<li><a href="../../../doctrine/dbal/types/timetype.html" target="main">TimeType</a></li>
+<li><a href="../../../doctrine/dbal/types/type.html" target="main">Type</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/package-functions.html b/lib/api/doctrine/dbal/types/package-functions.html
new file mode 100644
index 000000000..7ccdbf2e6
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/package-globals.html b/lib/api/doctrine/dbal/types/package-globals.html
new file mode 100644
index 000000000..3d8cbf04d
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/package-summary.html b/lib/api/doctrine/dbal/types/package-summary.html
new file mode 100644
index 000000000..bbd1df4e0
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/package-summary.html
@@ -0,0 +1,77 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Types (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\DBAL\Types</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/arraytype.html">ArrayType</a></td><td class="description">Type that maps a PHP array to a clob SQL type.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/biginttype.html">BigIntType</a></td><td class="description">Type that maps a database BIGINT to a PHP string.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/booleantype.html">BooleanType</a></td><td class="description">Type that maps an SQL boolean to a PHP boolean.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/datetimetype.html">DateTimeType</a></td><td class="description">Type that maps an SQL DATETIME/TIMESTAMP to a PHP DateTime object.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/datetype.html">DateType</a></td><td class="description">Type that maps an SQL DATE to a PHP Date object.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/decimaltype.html">DecimalType</a></td><td class="description">Type that maps an SQL DECIMAL to a PHP double.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/integertype.html">IntegerType</a></td><td class="description">Type that maps an SQL INT to a PHP integer.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/objecttype.html">ObjectType</a></td><td class="description">Type that maps a PHP object to a clob SQL type.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/smallinttype.html">SmallIntType</a></td><td class="description">Type that maps a database SMALLINT to a PHP integer.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/stringtype.html">StringType</a></td><td class="description">Type that maps an SQL VARCHAR to a PHP string.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/texttype.html">TextType</a></td><td class="description">Type that maps an SQL CLOB to a PHP string.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/timetype.html">TimeType</a></td><td class="description">Type that maps an SQL TIME to a PHP DateTime object.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/dbal/types/type.html">Type</a></td><td class="description">The base class for so-called Doctrine mapping types.
+</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/package-tree.html b/lib/api/doctrine/dbal/types/package-tree.html
new file mode 100644
index 000000000..bac9df90c
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/package-tree.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\DBAL\Types (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\DBAL\Types</h1><ul>
+<li><a href="../../../doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a><ul>
+<li><a href="../../../doctrine/dbal/types/arraytype.html">Doctrine\DBAL\Types\ArrayType</a></li>
+<li><a href="../../../doctrine/dbal/types/biginttype.html">Doctrine\DBAL\Types\BigIntType</a></li>
+<li><a href="../../../doctrine/dbal/types/booleantype.html">Doctrine\DBAL\Types\BooleanType</a></li>
+<li><a href="../../../doctrine/dbal/types/datetimetype.html">Doctrine\DBAL\Types\DateTimeType</a></li>
+<li><a href="../../../doctrine/dbal/types/datetype.html">Doctrine\DBAL\Types\DateType</a></li>
+<li><a href="../../../doctrine/dbal/types/decimaltype.html">Doctrine\DBAL\Types\DecimalType</a></li>
+<li><a href="../../../doctrine/dbal/types/integertype.html">Doctrine\DBAL\Types\IntegerType</a></li>
+<li><a href="../../../doctrine/dbal/types/objecttype.html">Doctrine\DBAL\Types\ObjectType</a></li>
+<li><a href="../../../doctrine/dbal/types/smallinttype.html">Doctrine\DBAL\Types\SmallIntType</a></li>
+<li><a href="../../../doctrine/dbal/types/stringtype.html">Doctrine\DBAL\Types\StringType</a></li>
+<li><a href="../../../doctrine/dbal/types/texttype.html">Doctrine\DBAL\Types\TextType</a></li>
+<li><a href="../../../doctrine/dbal/types/timetype.html">Doctrine\DBAL\Types\TimeType</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/smallinttype.html b/lib/api/doctrine/dbal/types/smallinttype.html
new file mode 100644
index 000000000..f8a1a2061
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/smallinttype.html
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SmallIntType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/smallinttype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\SmallIntType</div>
+<div class="location">/Doctrine/DBAL/Types/SmallIntType.php at line 31</div>
+
+<h1>Class SmallIntType</h1>
+
+<pre class="tree">Class:SmallIntType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>SmallIntType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SmallIntType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps a database SMALLINT to a PHP integer.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>robo</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its database representation to its PHP representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getBindingType()">getBindingType</a>()</p><p class="description">Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the SQL declaration snippet for a field of this type.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/SmallIntType.php at line 43</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its database representation to its PHP representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The PHP representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/SmallIntType.php at line 48</div>
+<h3 id="getBindingType()">getBindingType</h3>
+<code class="signature">public  integer <strong>getBindingType</strong>()</code>
+<div class="details">
+<p>Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.</p><p>This method should return one of the PDO::PARAM_* constants, that is, one of:</p><p>PDO::PARAM_BOOL
+PDO::PARAM_NULL
+PDO::PARAM_INT
+PDO::PARAM_STR
+PDO::PARAM_LOB</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/SmallIntType.php at line 33</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/SmallIntType.php at line 38</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the SQL declaration snippet for a field of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/smallinttype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/stringtype.html b/lib/api/doctrine/dbal/types/stringtype.html
new file mode 100644
index 000000000..83b49be62
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/stringtype.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>StringType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/stringtype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\StringType</div>
+<div class="location">/Doctrine/DBAL/Types/StringType.php at line 31</div>
+
+<h1>Class StringType</h1>
+
+<pre class="tree">Class:StringType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>StringType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>StringType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps an SQL VARCHAR to a PHP string.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDefaultLength()">getDefaultLength</a>(mixed platform)</p><p class="description">@override</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">@override</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">@override</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/StringType.php at line 40</div>
+<h3 id="getDefaultLength()">getDefaultLength</h3>
+<code class="signature">public  void <strong>getDefaultLength</strong>(mixed platform)</code>
+<div class="details">
+<p></p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/StringType.php at line 46</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/StringType.php at line 34</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/stringtype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/texttype.html b/lib/api/doctrine/dbal/types/texttype.html
new file mode 100644
index 000000000..202a69b26
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/texttype.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>TextType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/texttype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\TextType</div>
+<div class="location">/Doctrine/DBAL/Types/TextType.php at line 31</div>
+
+<h1>Class TextType</h1>
+
+<pre class="tree">Class:TextType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>TextType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>TextType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps an SQL CLOB to a PHP string.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">@override</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/TextType.php at line 39</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/TextType.php at line 34</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/texttype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/timetype.html b/lib/api/doctrine/dbal/types/timetype.html
new file mode 100644
index 000000000..8a1c4198c
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/timetype.html
@@ -0,0 +1,173 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>TimeType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/timetype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\TimeType</div>
+<div class="location">/Doctrine/DBAL/Types/TimeType.php at line 31</div>
+
+<h1>Class TimeType</h1>
+
+<pre class="tree">Class:TimeType - Superclass: Type
+<a href="../../../doctrine/dbal/types/type.html">Type</a><br>   &lfloor;&nbsp;<strong>TimeType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>TimeType</strong><br>extends <a href="../../../doctrine/dbal/types/type.html">Type</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Type that maps an SQL TIME to a PHP DateTime object.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#BIGINT">BIGINT</a>, <a href="../../../doctrine/dbal/types/type.html#BOOLEAN">BOOLEAN</a>, <a href="../../../doctrine/dbal/types/type.html#DATE">DATE</a>, <a href="../../../doctrine/dbal/types/type.html#DATETIME">DATETIME</a>, <a href="../../../doctrine/dbal/types/type.html#DECIMAL">DECIMAL</a>, <a href="../../../doctrine/dbal/types/type.html#INTEGER">INTEGER</a>, <a href="../../../doctrine/dbal/types/type.html#OBJECT">OBJECT</a>, <a href="../../../doctrine/dbal/types/type.html#SMALLINT">SMALLINT</a>, <a href="../../../doctrine/dbal/types/type.html#STRING">STRING</a>, <a href="../../../doctrine/dbal/types/type.html#TARRAY">TARRAY</a>, <a href="../../../doctrine/dbal/types/type.html#TEXT">TEXT</a>, <a href="../../../doctrine/dbal/types/type.html#TIME">TIME</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToDatabaseValue()">convertToDatabaseValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\DBAL\Types\Type</th></tr>
+<tr><td><a href="../../../doctrine/dbal/types/type.html#addType()">addType</a>, <a href="../../../doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue</a>, <a href="../../../doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue</a>, <a href="../../../doctrine/dbal/types/type.html#getBindingType()">getBindingType</a>, <a href="../../../doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength</a>, <a href="../../../doctrine/dbal/types/type.html#getName()">getName</a>, <a href="../../../doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration</a>, <a href="../../../doctrine/dbal/types/type.html#getType()">getType</a>, <a href="../../../doctrine/dbal/types/type.html#getTypesMap()">getTypesMap</a>, <a href="../../../doctrine/dbal/types/type.html#hasType()">hasType</a>, <a href="../../../doctrine/dbal/types/type.html#overrideType()">overrideType</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/TimeType.php at line 49</div>
+<h3 id="convertToDatabaseValue()">convertToDatabaseValue</h3>
+<code class="signature">public  mixed <strong>convertToDatabaseValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The database representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/TimeType.php at line 58</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The PHP representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/TimeType.php at line 33</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/TimeType.php at line 41</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/timetype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/dbal/types/type.html b/lib/api/doctrine/dbal/types/type.html
new file mode 100644
index 000000000..11e9a0729
--- /dev/null
+++ b/lib/api/doctrine/dbal/types/type.html
@@ -0,0 +1,457 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Type (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/type.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\DBAL\Types\Type</div>
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 35</div>
+
+<h1>Class Type</h1>
+
+<pre class="tree"><strong>Type</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>Type</strong></p>
+
+<div class="comment" id="overview_description"><p>The base class for so-called Doctrine mapping types.</p><p>A Type object is obtained by calling the static <code>getType()</code> method.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#BIGINT">BIGINT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#BOOLEAN">BOOLEAN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#DATE">DATE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#DATETIME">DATETIME</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#DECIMAL">DECIMAL</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#INTEGER">INTEGER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#OBJECT">OBJECT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#SMALLINT">SMALLINT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#STRING">STRING</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#TARRAY">TARRAY</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#TEXT">TEXT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#TIME">TIME</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Type()">Type</a>()</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#addType()">addType</a>(string name, string className)</p><p class="description">Adds a custom type to the type map.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToDatabaseValue()">convertToDatabaseValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its PHP representation to its database representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#convertToPHPValue()">convertToPHPValue</a>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Converts a value from its database representation to its PHP representation
+of this type.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getBindingType()">getBindingType</a>()</p><p class="description">Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getDefaultLength()">getDefaultLength</a>(mixed platform)</p><p class="description">Gets the default length of this type.</p></td>
+</tr>
+<tr>
+<td class="type">abstract  string</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description">Gets the name of this type.</p></td>
+</tr>
+<tr>
+<td class="type">abstract  void</td>
+<td class="description"><p class="name"><a href="#getSqlDeclaration()">getSqlDeclaration</a>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the SQL declaration snippet for a field of this type.</p></td>
+</tr>
+<tr>
+<td class="type">static  Doctrine\DBAL\Types\Type</td>
+<td class="description"><p class="name"><a href="#getType()">getType</a>(string name)</p><p class="description">Factory method to create type instances.
+</p></td>
+</tr>
+<tr>
+<td class="type">static  array</td>
+<td class="description"><p class="name"><a href="#getTypesMap()">getTypesMap</a>()</p><p class="description">Get the types array map which holds all registered types and the corresponding
+type class</p></td>
+</tr>
+<tr>
+<td class="type">static  boolean</td>
+<td class="description"><p class="name"><a href="#hasType()">hasType</a>(string name)</p><p class="description">Checks if exists support for a type.</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#overrideType()">overrideType</a>(string name, string className)</p><p class="description">Overrides an already defined type to use a different implementation.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 38</div>
+<h3 id="BIGINT">BIGINT</h3>
+<code class="signature">public final  str <strong>BIGINT</strong> = 'bigint'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 39</div>
+<h3 id="BOOLEAN">BOOLEAN</h3>
+<code class="signature">public final  str <strong>BOOLEAN</strong> = 'boolean'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 41</div>
+<h3 id="DATE">DATE</h3>
+<code class="signature">public final  str <strong>DATE</strong> = 'date'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 40</div>
+<h3 id="DATETIME">DATETIME</h3>
+<code class="signature">public final  str <strong>DATETIME</strong> = 'datetime'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 43</div>
+<h3 id="DECIMAL">DECIMAL</h3>
+<code class="signature">public final  str <strong>DECIMAL</strong> = 'decimal'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 44</div>
+<h3 id="INTEGER">INTEGER</h3>
+<code class="signature">public final  str <strong>INTEGER</strong> = 'integer'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 45</div>
+<h3 id="OBJECT">OBJECT</h3>
+<code class="signature">public final  str <strong>OBJECT</strong> = 'object'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 46</div>
+<h3 id="SMALLINT">SMALLINT</h3>
+<code class="signature">public final  str <strong>SMALLINT</strong> = 'smallint'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 47</div>
+<h3 id="STRING">STRING</h3>
+<code class="signature">public final  str <strong>STRING</strong> = 'string'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 37</div>
+<h3 id="TARRAY">TARRAY</h3>
+<code class="signature">public final  str <strong>TARRAY</strong> = 'array'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 48</div>
+<h3 id="TEXT">TEXT</h3>
+<code class="signature">public final  str <strong>TEXT</strong> = 'text'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 42</div>
+<h3 id="TIME">TIME</h3>
+<code class="signature">public final  str <strong>TIME</strong> = 'time'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 70</div>
+<h3 id="Type()">Type</h3>
+<code class="signature">public <strong>Type</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 153</div>
+<h3 id="addType()">addType</h3>
+<code class="signature">public static  void <strong>addType</strong>(string name, string className)</code>
+<div class="details">
+<p>Adds a custom type to the type map.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - Name of the type. This should correspond to what getName() returns.</dd>
+<dd>className - The class name of the custom type.</dd>
+<dt>Throws:</dt>
+<dd><a href="../../../doctrine/dbal/dbalexception.html">DBALException</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 80</div>
+<h3 id="convertToDatabaseValue()">convertToDatabaseValue</h3>
+<code class="signature">public  mixed <strong>convertToDatabaseValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its PHP representation to its database representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The database representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 93</div>
+<h3 id="convertToPHPValue()">convertToPHPValue</h3>
+<code class="signature">public  mixed <strong>convertToPHPValue</strong>(mixed value, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Converts a value from its database representation to its PHP representation
+of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>value - The value to convert.</dd>
+<dd>platform - The currently used database platform.</dd>
+<dt>Returns:</dt>
+<dd>The PHP representation of the value.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 205</div>
+<h3 id="getBindingType()">getBindingType</h3>
+<code class="signature">public  integer <strong>getBindingType</strong>()</code>
+<div class="details">
+<p>Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.</p><p>This method should return one of the PDO::PARAM_* constants, that is, one of:</p><p>PDO::PARAM_BOOL
+PDO::PARAM_NULL
+PDO::PARAM_INT
+PDO::PARAM_STR
+PDO::PARAM_LOB</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 103</div>
+<h3 id="getDefaultLength()">getDefaultLength</h3>
+<code class="signature">public  void <strong>getDefaultLength</strong>(mixed platform)</code>
+<div class="details">
+<p>Gets the default length of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 122</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public abstract  string <strong>getName</strong>()</code>
+<div class="details">
+<p>Gets the name of this type.</p><dl>
+<dt>Todo:</dt>
+<dd>Needed?</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 114</div>
+<h3 id="getSqlDeclaration()">getSqlDeclaration</h3>
+<code class="signature">public abstract  void <strong>getSqlDeclaration</strong>(array fieldDeclaration, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the SQL declaration snippet for a field of this type.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldDeclaration - The field declaration.</dd>
+<dd>platform - The currently used database platform.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 133</div>
+<h3 id="getType()">getType</h3>
+<code class="signature">public static  Doctrine\DBAL\Types\Type <strong>getType</strong>(string name)</code>
+<div class="details">
+<p>Factory method to create type instances.
+Type instances are implemented as flyweights.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../../doctrine/dbal/dbalexception.html">DBALException</a></dd>
+<dt>Parameters:</dt>
+<dd>name - The name of the type (as returned by getName()).</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 216</div>
+<h3 id="getTypesMap()">getTypesMap</h3>
+<code class="signature">public static  array <strong>getTypesMap</strong>()</code>
+<div class="details">
+<p>Get the types array map which holds all registered types and the corresponding
+type class</p><dl>
+<dt>Returns:</dt>
+<dd>$typesMap</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 169</div>
+<h3 id="hasType()">hasType</h3>
+<code class="signature">public static  boolean <strong>hasType</strong>(string name)</code>
+<div class="details">
+<p>Checks if exists support for a type.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - Name of the type</dd>
+<dt>Returns:</dt>
+<dd>TRUE if type is supported; FALSE otherwise</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/DBAL/Types/Type.php at line 182</div>
+<h3 id="overrideType()">overrideType</h3>
+<code class="signature">public static  void <strong>overrideType</strong>(string name, string className)</code>
+<div class="details">
+<p>Overrides an already defined type to use a different implementation.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../../doctrine/dbal/dbalexception.html">DBALException</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/dbal/types/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/dbal/types/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/dbal/types/type.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/abstractquery.html b/lib/api/doctrine/orm/abstractquery.html
new file mode 100644
index 000000000..ebaf2dbd4
--- /dev/null
+++ b/lib/api/doctrine/orm/abstractquery.html
@@ -0,0 +1,732 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>AbstractQuery (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/abstractquery.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\AbstractQuery</div>
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 40</div>
+
+<h1>Class AbstractQuery</h1>
+
+<pre class="tree"><strong>AbstractQuery</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractQuery</strong></p>
+
+<div class="comment" id="overview_description"><p>Base contract for ORM queries. Base class for Query and NativeQuery.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#HYDRATE_ARRAY">HYDRATE_ARRAY</a></p><p class="description">Hydrates an array graph.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#HYDRATE_OBJECT">HYDRATE_OBJECT</a></p><p class="description">Hydrates an object graph. </p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#HYDRATE_SCALAR">HYDRATE_SCALAR</a></p><p class="description">Hydrates a flat, rectangular result set with scalar values.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#HYDRATE_SINGLE_SCALAR">HYDRATE_SINGLE_SCALAR</a></p><p class="description">Hydrates a single scalar value.</p></td>
+</tr>
+<tr>
+<td class="type">protected  Doctrine\ORM\EntityManager The entity manager used by this query object.</td>
+<td class="description"><p class="name"><a href="#_em">$_em</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  boolean Boolean value that indicates whether or not expire the result cache.</td>
+<td class="description"><p class="name"><a href="#_expireResultCache">$_expireResultCache</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array The map of query hints.</td>
+<td class="description"><p class="name"><a href="#_hints">$_hints</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  integer The hydration mode.</td>
+<td class="description"><p class="name"><a href="#_hydrationMode">$_hydrationMode</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array The parameter type map of this query.</td>
+<td class="description"><p class="name"><a href="#_paramTypes">$_paramTypes</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  array The parameter map of this query.</td>
+<td class="description"><p class="name"><a href="#_params">$_params</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  CacheDriver</td>
+<td class="description"><p class="name"><a href="#_resultCacheDriver">$_resultCacheDriver</a></p><p class="description">The locally set cache driver used for caching result sets of this query.</p></td>
+</tr>
+<tr>
+<td class="type">protected  string The id to store the result cache entry under.</td>
+<td class="description"><p class="name"><a href="#_resultCacheId">$_resultCacheId</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  int Result Cache lifetime.</td>
+<td class="description"><p class="name"><a href="#_resultCacheTTL">$_resultCacheTTL</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  ResultSetMapping The user-specified ResultSetMapping to use.</td>
+<td class="description"><p class="name"><a href="#_resultSetMapping">$_resultSetMapping</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  boolean</td>
+<td class="description"><p class="name"><a href="#_useResultCache">$_useResultCache</a></p><p class="description">Boolean flag for whether or not to cache the results of this query.</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AbstractQuery()">AbstractQuery</a>(mixed em, Doctrine\ORM\EntityManager entityManager)</p><p class="description">Initializes a new instance of a class derived from AbstractQuery.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(string params, integer hydrationMode)</p><p class="description">Executes the query.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#expireResultCache()">expireResultCache</a>(boolean expire)</p><p class="description">Defines if the result cache is active or not.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#free()">free</a>()</p><p class="description">Frees the resources used by the query object.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getArrayResult()">getArrayResult</a>()</p><p class="description">Gets the array of results for the query.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\EntityManager</td>
+<td class="description"><p class="name"><a href="#getEntityManager()">getEntityManager</a>()</p><p class="description">Retrieves the associated EntityManager of this Query instance.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#getExpireResultCache()">getExpireResultCache</a>()</p><p class="description">Retrieves if the resultset cache is active or not.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getHint()">getHint</a>(string name)</p><p class="description">Gets the value of a query hint. </p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getHydrationMode()">getHydrationMode</a>()</p><p class="description">Gets the hydration mode currently used by the query.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getParameter()">getParameter</a>(mixed key)</p><p class="description">Gets a query parameter.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getParameters()">getParameters</a>()</p><p class="description">Get all defined parameters.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getResult()">getResult</a>(mixed hydrationMode)</p><p class="description">Gets the list of results for the query.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\Common\Cache\Cache</td>
+<td class="description"><p class="name"><a href="#getResultCacheDriver()">getResultCacheDriver</a>()</p><p class="description">Returns the cache driver used for caching result sets.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getResultCacheLifetime()">getResultCacheLifetime</a>()</p><p class="description">Retrieves the lifetime of resultset cache.</p></td>
+</tr>
+<tr>
+<td class="type">abstract  string</td>
+<td class="description"><p class="name"><a href="#getSQL()">getSQL</a>()</p><p class="description">Gets the SQL query that corresponds to this query object.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getScalarResult()">getScalarResult</a>()</p><p class="description">Gets the scalar results for the query.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getSingleResult()">getSingleResult</a>(integer hydrationMode)</p><p class="description">Gets the single result of the query.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getSingleScalarResult()">getSingleScalarResult</a>()</p><p class="description">Gets the single scalar result of the query.
+</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/internal/hydration/iterableresult.html">IterableResult</a></td>
+<td class="description"><p class="name"><a href="#iterate()">iterate</a>(array params, integer hydrationMode)</p><p class="description">Executes the query and returns an IterableResult that can be used to incrementally
+iterate over the result.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setHint()">setHint</a>(string name, mixed value)</p><p class="description">Sets a query hint. </p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setHydrationMode()">setHydrationMode</a>(integer hydrationMode)</p><p class="description">Defines the processing mode to be used during hydration / result set transformation.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setParameter()">setParameter</a>(string|integer key, mixed value, string type)</p><p class="description">Sets a query parameter.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setParameters()">setParameters</a>(array params, array types)</p><p class="description">Sets a collection of query parameters.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setResultCacheDriver()">setResultCacheDriver</a>(mixed resultCacheDriver, Doctrine\Common\Cache\Cache driver)</p><p class="description">Defines a cache driver to be used for caching result sets.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setResultCacheId()">setResultCacheId</a>(string id)</p><p class="description">Set the result cache id to use to store the result set cache entry.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setResultCacheLifetime()">setResultCacheLifetime</a>(integer timeToLive)</p><p class="description">Defines how long the result cache will be active before expire.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setResultSetMapping()">setResultSetMapping</a>(<a href="../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a> rsm)</p><p class="description">Sets the ResultSetMapping that should be used for hydration.</p></td>
+</tr>
+<tr>
+<td class="type"> This</td>
+<td class="description"><p class="name"><a href="#useResultCache()">useResultCache</a>(boolean bool, integer timeToLive, string resultCacheId)</p><p class="description">Set whether or not to cache the results of this query and if so, for
+how long and which ID to use for the cache entry.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 50</div>
+<h3 id="HYDRATE_ARRAY">HYDRATE_ARRAY</h3>
+<code class="signature">public final  int <strong>HYDRATE_ARRAY</strong> = 2</code>
+<div class="details">
+<p>Hydrates an array graph.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 46</div>
+<h3 id="HYDRATE_OBJECT">HYDRATE_OBJECT</h3>
+<code class="signature">public final  int <strong>HYDRATE_OBJECT</strong> = 1</code>
+<div class="details">
+<p>Hydrates an object graph. This is the default behavior.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 54</div>
+<h3 id="HYDRATE_SCALAR">HYDRATE_SCALAR</h3>
+<code class="signature">public final  int <strong>HYDRATE_SCALAR</strong> = 3</code>
+<div class="details">
+<p>Hydrates a flat, rectangular result set with scalar values.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 58</div>
+<h3 id="HYDRATE_SINGLE_SCALAR">HYDRATE_SINGLE_SCALAR</h3>
+<code class="signature">public final  int <strong>HYDRATE_SINGLE_SCALAR</strong> = 4</code>
+<div class="details">
+<p>Hydrates a single scalar value.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 78</div>
+<h3 id="_em">_em</h3>
+<code class="signature">protected  Doctrine\ORM\EntityManager The entity manager used by this query object. <strong>$_em</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 112</div>
+<h3 id="_expireResultCache">_expireResultCache</h3>
+<code class="signature">protected  boolean Boolean value that indicates whether or not expire the result cache. <strong>$_expireResultCache</strong> = false</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 83</div>
+<h3 id="_hints">_hints</h3>
+<code class="signature">protected  array The map of query hints. <strong>$_hints</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 88</div>
+<h3 id="_hydrationMode">_hydrationMode</h3>
+<code class="signature">protected  integer The hydration mode. <strong>$_hydrationMode</strong> = self::HYDRATE_OBJECT</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 68</div>
+<h3 id="_paramTypes">_paramTypes</h3>
+<code class="signature">protected  array The parameter type map of this query. <strong>$_paramTypes</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 63</div>
+<h3 id="_params">_params</h3>
+<code class="signature">protected  array The parameter map of this query. <strong>$_params</strong> = array()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 95</div>
+<h3 id="_resultCacheDriver">_resultCacheDriver</h3>
+<code class="signature">protected  CacheDriver <strong>$_resultCacheDriver</strong></code>
+<div class="details">
+<p>The locally set cache driver used for caching result sets of this query.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 107</div>
+<h3 id="_resultCacheId">_resultCacheId</h3>
+<code class="signature">protected  string The id to store the result cache entry under. <strong>$_resultCacheId</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 117</div>
+<h3 id="_resultCacheTTL">_resultCacheTTL</h3>
+<code class="signature">protected  int Result Cache lifetime. <strong>$_resultCacheTTL</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 73</div>
+<h3 id="_resultSetMapping">_resultSetMapping</h3>
+<code class="signature">protected  ResultSetMapping The user-specified ResultSetMapping to use. <strong>$_resultSetMapping</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 102</div>
+<h3 id="_useResultCache">_useResultCache</h3>
+<code class="signature">protected  boolean <strong>$_useResultCache</strong></code>
+<div class="details">
+<p>Boolean flag for whether or not to cache the results of this query.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 124</div>
+<h3 id="AbstractQuery()">AbstractQuery</h3>
+<code class="signature">public <strong>AbstractQuery</strong>(mixed em, Doctrine\ORM\EntityManager entityManager)</code>
+<div class="details">
+<p>Initializes a new instance of a class derived from <tt>AbstractQuery</tt>.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 477</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">public  mixed <strong>execute</strong>(string params, integer hydrationMode)</code>
+<div class="details">
+<p>Executes the query.</p><dl>
+<dt>Parameters:</dt>
+<dd>params - Any additional query parameters.</dd>
+<dd>hydrationMode - Processing mode to be used during the hydration process.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 312</div>
+<h3 id="expireResultCache()">expireResultCache</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>expireResultCache</strong>(boolean expire)</code>
+<div class="details">
+<p>Defines if the result cache is active or not.</p><dl>
+<dt>Parameters:</dt>
+<dd>expire - Whether or not to force resultset cache expiration.</dd>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 142</div>
+<h3 id="free()">free</h3>
+<code class="signature">public  void <strong>free</strong>()</code>
+<div class="details">
+<p>Frees the resources used by the query object.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 370</div>
+<h3 id="getArrayResult()">getArrayResult</h3>
+<code class="signature">public  array <strong>getArrayResult</strong>()</code>
+<div class="details">
+<p>Gets the array of results for the query.</p><p>Alias for execute(array(), HYDRATE_ARRAY).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 134</div>
+<h3 id="getEntityManager()">getEntityManager</h3>
+<code class="signature">public  Doctrine\ORM\EntityManager <strong>getEntityManager</strong>()</code>
+<div class="details">
+<p>Retrieves the associated EntityManager of this Query instance.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 323</div>
+<h3 id="getExpireResultCache()">getExpireResultCache</h3>
+<code class="signature">public  boolean <strong>getExpireResultCache</strong>()</code>
+<div class="details">
+<p>Retrieves if the resultset cache is active or not.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 450</div>
+<h3 id="getHint()">getHint</h3>
+<code class="signature">public  mixed <strong>getHint</strong>(string name)</code>
+<div class="details">
+<p>Gets the value of a query hint. If the hint name is not recognized, FALSE is returned.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name of the hint.</dd>
+<dt>Returns:</dt>
+<dd>The value of the hint or FALSE, if the hint name is not recognized.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 346</div>
+<h3 id="getHydrationMode()">getHydrationMode</h3>
+<code class="signature">public  integer <strong>getHydrationMode</strong>()</code>
+<div class="details">
+<p>Gets the hydration mode currently used by the query.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 163</div>
+<h3 id="getParameter()">getParameter</h3>
+<code class="signature">public  mixed <strong>getParameter</strong>(mixed key)</code>
+<div class="details">
+<p>Gets a query parameter.</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The key (index or name) of the bound parameter.</dd>
+<dt>Returns:</dt>
+<dd>The value of the bound parameter.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 152</div>
+<h3 id="getParameters()">getParameters</h3>
+<code class="signature">public  array <strong>getParameters</strong>()</code>
+<div class="details">
+<p>Get all defined parameters.</p><dl>
+<dt>Returns:</dt>
+<dd>The defined query parameters.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 358</div>
+<h3 id="getResult()">getResult</h3>
+<code class="signature">public  array <strong>getResult</strong>(mixed hydrationMode)</code>
+<div class="details">
+<p>Gets the list of results for the query.</p><p>Alias for execute(array(), $hydrationMode = HYDRATE_OBJECT).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 250</div>
+<h3 id="getResultCacheDriver()">getResultCacheDriver</h3>
+<code class="signature">public  Doctrine\Common\Cache\Cache <strong>getResultCacheDriver</strong>()</code>
+<div class="details">
+<p>Returns the cache driver used for caching result sets.</p><dl>
+<dt>Returns:</dt>
+<dd>Cache driver</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 301</div>
+<h3 id="getResultCacheLifetime()">getResultCacheLifetime</h3>
+<code class="signature">public  integer <strong>getResultCacheLifetime</strong>()</code>
+<div class="details">
+<p>Retrieves the lifetime of resultset cache.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 175</div>
+<h3 id="getSQL()">getSQL</h3>
+<code class="signature">public abstract  string <strong>getSQL</strong>()</code>
+<div class="details">
+<p>Gets the SQL query that corresponds to this query object.
+The returned SQL syntax depends on the connection driver that is used
+by this query object at the time of this method call.</p><dl>
+<dt>Returns:</dt>
+<dd>SQL query</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 382</div>
+<h3 id="getScalarResult()">getScalarResult</h3>
+<code class="signature">public  array <strong>getScalarResult</strong>()</code>
+<div class="details">
+<p>Gets the scalar results for the query.</p><p>Alias for execute(array(), HYDRATE_SCALAR).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 400</div>
+<h3 id="getSingleResult()">getSingleResult</h3>
+<code class="signature">public  mixed <strong>getSingleResult</strong>(integer hydrationMode)</code>
+<div class="details">
+<p>Gets the single result of the query.</p><p>Enforces the presence as well as the uniqueness of the result.</p><p>If the result is not unique, a NonUniqueResultException is thrown.
+If there is no result, a NoResultException is thrown.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../doctrine/orm/nonuniqueresultexception.html">If the query result is not unique.</a></dd>
+<dd><a href="../../doctrine/orm/noresultexception.html">If the query returned no result.</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 426</div>
+<h3 id="getSingleScalarResult()">getSingleScalarResult</h3>
+<code class="signature">public  mixed <strong>getSingleScalarResult</strong>()</code>
+<div class="details">
+<p>Gets the single scalar result of the query.</p><p>Alias for getSingleResult(HYDRATE_SINGLE_SCALAR).</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../doctrine/orm/query/queryexception.html">If the query result is not unique.</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 463</div>
+<h3 id="iterate()">iterate</h3>
+<code class="signature">public  <a href="../../doctrine/orm/internal/hydration/iterableresult.html">IterableResult</a> <strong>iterate</strong>(array params, integer hydrationMode)</code>
+<div class="details">
+<p>Executes the query and returns an IterableResult that can be used to incrementally
+iterate over the result.</p><dl>
+<dt>Parameters:</dt>
+<dd>params - The query parameters.</dd>
+<dd>hydrationMode - The hydration mode to use.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 438</div>
+<h3 id="setHint()">setHint</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setHint</strong>(string name, mixed value)</code>
+<div class="details">
+<p>Sets a query hint. If the hint name is not recognized, it is silently ignored.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name of the hint.</dd>
+<dd>value - The value of the hint.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 335</div>
+<h3 id="setHydrationMode()">setHydrationMode</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setHydrationMode</strong>(integer hydrationMode)</code>
+<div class="details">
+<p>Defines the processing mode to be used during hydration / result set transformation.</p><dl>
+<dt>Parameters:</dt>
+<dd>hydrationMode - Doctrine processing mode to be used during hydration process. One of the Query::HYDRATE_* constants.</dd>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 187</div>
+<h3 id="setParameter()">setParameter</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setParameter</strong>(string|integer key, mixed value, string type)</code>
+<div class="details">
+<p>Sets a query parameter.</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The parameter position or name.</dd>
+<dd>value - The parameter value.</dd>
+<dd>type - The parameter type. If specified, the given value will be run through the type conversion of this type. This is usually not needed for strings and numeric types.</dd>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 203</div>
+<h3 id="setParameters()">setParameters</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setParameters</strong>(array params, array types)</code>
+<div class="details">
+<p>Sets a collection of query parameters.</p><dl>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 233</div>
+<h3 id="setResultCacheDriver()">setResultCacheDriver</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setResultCacheDriver</strong>(mixed resultCacheDriver, Doctrine\Common\Cache\Cache driver)</code>
+<div class="details">
+<p>Defines a cache driver to be used for caching result sets.</p><dl>
+<dt>Parameters:</dt>
+<dd>driver - Cache driver</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 541</div>
+<h3 id="setResultCacheId()">setResultCacheId</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setResultCacheId</strong>(string id)</code>
+<div class="details">
+<p>Set the result cache id to use to store the result set cache entry.
+If this is not explicitely set by the developer then a hash is automatically
+generated for you.</p><dl>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 286</div>
+<h3 id="setResultCacheLifetime()">setResultCacheLifetime</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setResultCacheLifetime</strong>(integer timeToLive)</code>
+<div class="details">
+<p>Defines how long the result cache will be active before expire.</p><dl>
+<dt>Parameters:</dt>
+<dd>timeToLive - How long the cache entry is valid.</dd>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 221</div>
+<h3 id="setResultSetMapping()">setResultSetMapping</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setResultSetMapping</strong>(<a href="../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a> rsm)</code>
+<div class="details">
+<p>Sets the ResultSetMapping that should be used for hydration.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/AbstractQuery.php at line 268</div>
+<h3 id="useResultCache()">useResultCache</h3>
+<code class="signature">public  This <strong>useResultCache</strong>(boolean bool, integer timeToLive, string resultCacheId)</code>
+<div class="details">
+<p>Set whether or not to cache the results of this query and if so, for
+how long and which ID to use for the cache entry.</p><dl>
+<dt>Returns:</dt>
+<dd>query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/abstractquery.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/configuration.html b/lib/api/doctrine/orm/configuration.html
new file mode 100644
index 000000000..8190e37bc
--- /dev/null
+++ b/lib/api/doctrine/orm/configuration.html
@@ -0,0 +1,554 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Configuration (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/configuration.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Configuration</div>
+<div class="location">/Doctrine/ORM/Configuration.php at line 37</div>
+
+<h1>Class Configuration</h1>
+
+<pre class="tree">Class:Configuration - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>Configuration</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Configuration</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>Configuration container for all configuration options of Doctrine.
+It combines all configuration options from DBAL & ORM.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Internal:</dt>
+<dd>When adding a new configuration option just write a getter/setter pair and add the option to the _attributes array with a proper default value.</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Configuration()">Configuration</a>()</p><p class="description">Creates a new configuration that can be used for Doctrine.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addCustomDatetimeFunction()">addCustomDatetimeFunction</a>(string name, string className)</p><p class="description">Registers a custom DQL function that produces a date/time value.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addCustomNumericFunction()">addCustomNumericFunction</a>(string name, string className)</p><p class="description">Registers a custom DQL function that produces a numeric value.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addCustomStringFunction()">addCustomStringFunction</a>(string name, string className)</p><p class="description">Registers a custom DQL function that produces a string value.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addEntityNamespace()">addEntityNamespace</a>(string alias, string namespace)</p><p class="description">Adds a namespace under a certain alias.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addNamedNativeQuery()">addNamedNativeQuery</a>(string name, string sql, <a href="../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a> rsm)</p><p class="description">Adds a named native query to the configuration.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addNamedQuery()">addNamedQuery</a>(string name, string dql)</p><p class="description">Adds a named DQL query to the configuration.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#ensureProductionSettings()">ensureProductionSettings</a>()</p><p class="description">Ensures that this Configuration instance contains settings that are
+suitable for a production environment.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#getAutoGenerateProxyClasses()">getAutoGenerateProxyClasses</a>()</p><p class="description">Gets a boolean flag that indicates whether proxy classes should always be regenerated
+during each script execution.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCustomDatetimeFunction()">getCustomDatetimeFunction</a>(string name)</p><p class="description">Gets the implementation class name of a registered custom date/time DQL function.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCustomNumericFunction()">getCustomNumericFunction</a>(string name)</p><p class="description">Gets the implementation class name of a registered custom numeric DQL function.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getCustomStringFunction()">getCustomStringFunction</a>(string name)</p><p class="description">Gets the implementation class name of a registered custom string DQL function.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getEntityNamespace()">getEntityNamespace</a>(string entityNamespaceAlias)</p><p class="description">Resolves a registered namespace alias to the full namespace.</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\Common\Cache\Cache</td>
+<td class="description"><p class="name"><a href="#getMetadataCacheImpl()">getMetadataCacheImpl</a>()</p><p class="description">Gets the cache driver implementation that is used for metadata caching.</p></td>
+</tr>
+<tr>
+<td class="type"> Mapping\Driver\Driver</td>
+<td class="description"><p class="name"><a href="#getMetadataDriverImpl()">getMetadataDriverImpl</a>()</p><p class="description">Gets the cache driver implementation that is used for the mapping metadata.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getNamedNativeQuery()">getNamedNativeQuery</a>(string name)</p><p class="description">Gets the components of a previously registered named native query.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getNamedQuery()">getNamedQuery</a>(string name)</p><p class="description">Gets a previously registered named DQL query.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getProxyDir()">getProxyDir</a>()</p><p class="description">Gets the directory where Doctrine generates any necessary proxy class files.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getProxyNamespace()">getProxyNamespace</a>()</p><p class="description">Gets the namespace where proxy classes reside.</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\Common\Cache\Cache</td>
+<td class="description"><p class="name"><a href="#getQueryCacheImpl()">getQueryCacheImpl</a>()</p><p class="description">Gets the cache driver implementation that is used for the query cache (SQL cache).</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\Common\Cache\Cache</td>
+<td class="description"><p class="name"><a href="#getResultCacheImpl()">getResultCacheImpl</a>()</p><p class="description">Gets the cache driver implementation that is used for query result caching.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#getUseCExtension()">getUseCExtension</a>()</p><p class="description">Gets a boolean flag that indicates whether Doctrine should make use of the
+C extension.</p></td>
+</tr>
+<tr>
+<td class="type"> Mapping\Driver\AnnotationDriver</td>
+<td class="description"><p class="name"><a href="#newDefaultAnnotationDriver()">newDefaultAnnotationDriver</a>(array paths)</p><p class="description">Add a new default annotation driver with a correctly configured annotation reader.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setAutoGenerateProxyClasses()">setAutoGenerateProxyClasses</a>(boolean bool)</p><p class="description">Sets a boolean flag that indicates whether proxy classes should always be regenerated
+during each script execution.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setEntityNamespaces()">setEntityNamespaces</a>(mixed entityNamespaces, array entityAliasMap)</p><p class="description">Set the entity alias map</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setMetadataCacheImpl()">setMetadataCacheImpl</a>(\Doctrine\Common\Cache\Cache cacheImpl)</p><p class="description">Sets the cache driver implementation that is used for metadata caching.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setMetadataDriverImpl()">setMetadataDriverImpl</a>(<a href="../../doctrine/dbal/driver.html">Driver</a> driverImpl)</p><p class="description">Sets the cache driver implementation that is used for metadata caching.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setProxyDir()">setProxyDir</a>(string dir)</p><p class="description">Sets the directory where Doctrine generates any necessary proxy class files.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setProxyNamespace()">setProxyNamespace</a>(string ns)</p><p class="description">Sets the namespace where proxy classes reside.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setQueryCacheImpl()">setQueryCacheImpl</a>(\Doctrine\Common\Cache\Cache cacheImpl)</p><p class="description">Sets the cache driver implementation that is used for the query cache (SQL cache).</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setResultCacheImpl()">setResultCacheImpl</a>(\Doctrine\Common\Cache\Cache cacheImpl)</p><p class="description">Sets the cache driver implementation that is used for query result caching.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setUseCExtension()">setUseCExtension</a>(boolean boolean)</p><p class="description">Sets a boolean flag that indicates whether Doctrine should make use of the
+C extension.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Configuration.php at line 42</div>
+<h3 id="Configuration()">Configuration</h3>
+<code class="signature">public <strong>Configuration</strong>()</code>
+<div class="details">
+<p>Creates a new configuration that can be used for Doctrine.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Configuration.php at line 406</div>
+<h3 id="addCustomDatetimeFunction()">addCustomDatetimeFunction</h3>
+<code class="signature">public  void <strong>addCustomDatetimeFunction</strong>(string name, string className)</code>
+<div class="details">
+<p>Registers a custom DQL function that produces a date/time value.
+Such a function can then be used in any DQL statement in any place where date/time
+functions are allowed.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 381</div>
+<h3 id="addCustomNumericFunction()">addCustomNumericFunction</h3>
+<code class="signature">public  void <strong>addCustomNumericFunction</strong>(string name, string className)</code>
+<div class="details">
+<p>Registers a custom DQL function that produces a numeric value.
+Such a function can then be used in any DQL statement in any place where numeric
+functions are allowed.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 356</div>
+<h3 id="addCustomStringFunction()">addCustomStringFunction</h3>
+<code class="signature">public  void <strong>addCustomStringFunction</strong>(string name, string className)</code>
+<div class="details">
+<p>Registers a custom DQL function that produces a string value.
+Such a function can then be used in any DQL statement in any place where string
+functions are allowed.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 151</div>
+<h3 id="addEntityNamespace()">addEntityNamespace</h3>
+<code class="signature">public  void <strong>addEntityNamespace</strong>(string alias, string namespace)</code>
+<div class="details">
+<p>Adds a namespace under a certain alias.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 308</div>
+<h3 id="addNamedNativeQuery()">addNamedNativeQuery</h3>
+<code class="signature">public  void <strong>addNamedNativeQuery</strong>(string name, string sql, <a href="../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a> rsm)</code>
+<div class="details">
+<p>Adds a named native query to the configuration.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name of the query.</dd>
+<dd>sql - The native SQL query string.</dd>
+<dd>rsm - The ResultSetMapping used for the results of the SQL query.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 282</div>
+<h3 id="addNamedQuery()">addNamedQuery</h3>
+<code class="signature">public  void <strong>addNamedQuery</strong>(string name, string dql)</code>
+<div class="details">
+<p>Adds a named DQL query to the configuration.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name of the query.</dd>
+<dd>dql - The DQL query string.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 335</div>
+<h3 id="ensureProductionSettings()">ensureProductionSettings</h3>
+<code class="signature">public  void <strong>ensureProductionSettings</strong>()</code>
+<div class="details">
+<p>Ensures that this Configuration instance contains settings that are
+suitable for a production environment.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../doctrine/orm/ormexception.html">If a configuration setting has a value that is not suitable for a production environment.</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 83</div>
+<h3 id="getAutoGenerateProxyClasses()">getAutoGenerateProxyClasses</h3>
+<code class="signature">public  boolean <strong>getAutoGenerateProxyClasses</strong>()</code>
+<div class="details">
+<p>Gets a boolean flag that indicates whether proxy classes should always be regenerated
+during each script execution.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 417</div>
+<h3 id="getCustomDatetimeFunction()">getCustomDatetimeFunction</h3>
+<code class="signature">public  string <strong>getCustomDatetimeFunction</strong>(string name)</code>
+<div class="details">
+<p>Gets the implementation class name of a registered custom date/time DQL function.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 392</div>
+<h3 id="getCustomNumericFunction()">getCustomNumericFunction</h3>
+<code class="signature">public  string <strong>getCustomNumericFunction</strong>(string name)</code>
+<div class="details">
+<p>Gets the implementation class name of a registered custom numeric DQL function.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 367</div>
+<h3 id="getCustomStringFunction()">getCustomStringFunction</h3>
+<code class="signature">public  string <strong>getCustomStringFunction</strong>(string name)</code>
+<div class="details">
+<p>Gets the implementation class name of a registered custom string DQL function.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 163</div>
+<h3 id="getEntityNamespace()">getEntityNamespace</h3>
+<code class="signature">public  string <strong>getEntityNamespace</strong>(string entityNamespaceAlias)</code>
+<div class="details">
+<p>Resolves a registered namespace alias to the full namespace.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../doctrine/orm/mapping/mappingexception.html">MappingException</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 239</div>
+<h3 id="getMetadataCacheImpl()">getMetadataCacheImpl</h3>
+<code class="signature">public  \Doctrine\Common\Cache\Cache <strong>getMetadataCacheImpl</strong>()</code>
+<div class="details">
+<p>Gets the cache driver implementation that is used for metadata caching.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 189</div>
+<h3 id="getMetadataDriverImpl()">getMetadataDriverImpl</h3>
+<code class="signature">public  Mapping\Driver\Driver <strong>getMetadataDriverImpl</strong>()</code>
+<div class="details">
+<p>Gets the cache driver implementation that is used for the mapping metadata.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../doctrine/orm/ormexception.html">ORMException</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 320</div>
+<h3 id="getNamedNativeQuery()">getNamedNativeQuery</h3>
+<code class="signature">public  array <strong>getNamedNativeQuery</strong>(string name)</code>
+<div class="details">
+<p>Gets the components of a previously registered named native query.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name of the query.</dd>
+<dt>Returns:</dt>
+<dd>A tuple with the first element being the SQL string and the second element being the ResultSetMapping.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 293</div>
+<h3 id="getNamedQuery()">getNamedQuery</h3>
+<code class="signature">public  string <strong>getNamedQuery</strong>(string name)</code>
+<div class="details">
+<p>Gets a previously registered named DQL query.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name of the query.</dd>
+<dt>Returns:</dt>
+<dd>The DQL query.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 72</div>
+<h3 id="getProxyDir()">getProxyDir</h3>
+<code class="signature">public  string <strong>getProxyDir</strong>()</code>
+<div class="details">
+<p>Gets the directory where Doctrine generates any necessary proxy class files.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 104</div>
+<h3 id="getProxyNamespace()">getProxyNamespace</h3>
+<code class="signature">public  string <strong>getProxyNamespace</strong>()</code>
+<div class="details">
+<p>Gets the namespace where proxy classes reside.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 219</div>
+<h3 id="getQueryCacheImpl()">getQueryCacheImpl</h3>
+<code class="signature">public  \Doctrine\Common\Cache\Cache <strong>getQueryCacheImpl</strong>()</code>
+<div class="details">
+<p>Gets the cache driver implementation that is used for the query cache (SQL cache).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 199</div>
+<h3 id="getResultCacheImpl()">getResultCacheImpl</h3>
+<code class="signature">public  \Doctrine\Common\Cache\Cache <strong>getResultCacheImpl</strong>()</code>
+<div class="details">
+<p>Gets the cache driver implementation that is used for query result caching.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 260</div>
+<h3 id="getUseCExtension()">getUseCExtension</h3>
+<code class="signature">public  boolean <strong>getUseCExtension</strong>()</code>
+<div class="details">
+<p>Gets a boolean flag that indicates whether Doctrine should make use of the
+C extension.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if Doctrine is configured to use the C extension, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 137</div>
+<h3 id="newDefaultAnnotationDriver()">newDefaultAnnotationDriver</h3>
+<code class="signature">public  Mapping\Driver\AnnotationDriver <strong>newDefaultAnnotationDriver</strong>(array paths)</code>
+<div class="details">
+<p>Add a new default annotation driver with a correctly configured annotation reader.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 94</div>
+<h3 id="setAutoGenerateProxyClasses()">setAutoGenerateProxyClasses</h3>
+<code class="signature">public  void <strong>setAutoGenerateProxyClasses</strong>(boolean bool)</code>
+<div class="details">
+<p>Sets a boolean flag that indicates whether proxy classes should always be regenerated
+during each script execution.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 178</div>
+<h3 id="setEntityNamespaces()">setEntityNamespaces</h3>
+<code class="signature">public  void <strong>setEntityNamespaces</strong>(mixed entityNamespaces, array entityAliasMap)</code>
+<div class="details">
+<p>Set the entity alias map</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 249</div>
+<h3 id="setMetadataCacheImpl()">setMetadataCacheImpl</h3>
+<code class="signature">public  void <strong>setMetadataCacheImpl</strong>(\Doctrine\Common\Cache\Cache cacheImpl)</code>
+<div class="details">
+<p>Sets the cache driver implementation that is used for metadata caching.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 126</div>
+<h3 id="setMetadataDriverImpl()">setMetadataDriverImpl</h3>
+<code class="signature">public  void <strong>setMetadataDriverImpl</strong>(<a href="../../doctrine/dbal/driver.html">Driver</a> driverImpl)</code>
+<div class="details">
+<p>Sets the cache driver implementation that is used for metadata caching.</p><dl>
+<dt>Todo:</dt>
+<dd>Force parameter to be a Closure to ensure lazy evaluation (as soon as a metadata cache is in effect, the driver never needs to initialize).</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 62</div>
+<h3 id="setProxyDir()">setProxyDir</h3>
+<code class="signature">public  void <strong>setProxyDir</strong>(string dir)</code>
+<div class="details">
+<p>Sets the directory where Doctrine generates any necessary proxy class files.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 114</div>
+<h3 id="setProxyNamespace()">setProxyNamespace</h3>
+<code class="signature">public  void <strong>setProxyNamespace</strong>(string ns)</code>
+<div class="details">
+<p>Sets the namespace where proxy classes reside.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 229</div>
+<h3 id="setQueryCacheImpl()">setQueryCacheImpl</h3>
+<code class="signature">public  void <strong>setQueryCacheImpl</strong>(\Doctrine\Common\Cache\Cache cacheImpl)</code>
+<div class="details">
+<p>Sets the cache driver implementation that is used for the query cache (SQL cache).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 209</div>
+<h3 id="setResultCacheImpl()">setResultCacheImpl</h3>
+<code class="signature">public  void <strong>setResultCacheImpl</strong>(\Doctrine\Common\Cache\Cache cacheImpl)</code>
+<div class="details">
+<p>Sets the cache driver implementation that is used for query result caching.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Configuration.php at line 271</div>
+<h3 id="setUseCExtension()">setUseCExtension</h3>
+<code class="signature">public  void <strong>setUseCExtension</strong>(boolean boolean)</code>
+<div class="details">
+<p>Sets a boolean flag that indicates whether Doctrine should make use of the
+C extension.</p><dl>
+<dt>Parameters:</dt>
+<dd>boolean - Whether to make use of the C extension or not.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/configuration.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/entitymanager.html b/lib/api/doctrine/orm/entitymanager.html
new file mode 100644
index 000000000..530f63fe8
--- /dev/null
+++ b/lib/api/doctrine/orm/entitymanager.html
@@ -0,0 +1,608 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>EntityManager (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/entitymanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\EntityManager</div>
+<div class="location">/Doctrine/ORM/EntityManager.php at line 42</div>
+
+<h1>Class EntityManager</h1>
+
+<pre class="tree"><strong>EntityManager</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>EntityManager</strong></p>
+
+<div class="comment" id="overview_description"><p>The EntityManager is the central access point to ORM functionality.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#EntityManager()">EntityManager</a>(Doctrine\DBAL\Connection conn, Doctrine\ORM\Configuration config, Doctrine\Common\EventManager eventManager)</p><p class="description">Creates a new EntityManager that operates on the given database connection
+and uses the given Configuration and EventManager implementations.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#beginTransaction()">beginTransaction</a>()</p><p class="description">Starts a transaction on the underlying database connection.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#clear()">clear</a>(string entityName)</p><p class="description">Clears the EntityManager. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#close()">close</a>()</p><p class="description">Closes the EntityManager. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#commit()">commit</a>()</p><p class="description">Commits a transaction on the underlying database connection.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#contains()">contains</a>(object entity)</p><p class="description">Determines whether an entity instance is managed in this EntityManager.</p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#copy()">copy</a>(object entity, mixed deep)</p><p class="description">Creates a copy of the given entity. </p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#create()">create</a>(mixed conn, <a href="../../doctrine/dbal/configuration.html">Configuration</a> config, <a href="../../doctrine/common/eventmanager.html">EventManager</a> eventManager)</p><p class="description">Factory method to create EntityManager instances.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\NativeQuery</td>
+<td class="description"><p class="name"><a href="#createNamedNativeQuery()">createNamedNativeQuery</a>(string name)</p><p class="description">Creates a NativeQuery from a named native query.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Query</td>
+<td class="description"><p class="name"><a href="#createNamedQuery()">createNamedQuery</a>(string name)</p><p class="description">Creates a Query from a named query.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/nativequery.html">NativeQuery</a></td>
+<td class="description"><p class="name"><a href="#createNativeQuery()">createNativeQuery</a>(string sql, <a href="../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a> rsm)</p><p class="description">Creates a native SQL query.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Query</td>
+<td class="description"><p class="name"><a href="#createQuery()">createQuery</a>(mixed dql, string The)</p><p class="description">Creates a new Query object.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#createQueryBuilder()">createQueryBuilder</a>()</p><p class="description">Create a QueryBuilder instance</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#detach()">detach</a>(object entity)</p><p class="description">Detaches an entity from the EntityManager, causing a managed entity to
+become detached. </p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#find()">find</a>(string entityName, mixed identifier)</p><p class="description">Finds an Entity by its identifier.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#flush()">flush</a>()</p><p class="description">Flushes all changes to objects that have been queued up to now to the database.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Mapping\ClassMetadata</td>
+<td class="description"><p class="name"><a href="#getClassMetadata()">getClassMetadata</a>(mixed className)</p><p class="description">Returns the metadata for a class.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Configuration</td>
+<td class="description"><p class="name"><a href="#getConfiguration()">getConfiguration</a>()</p><p class="description">Gets the Configuration used by the EntityManager.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Connection</td>
+<td class="description"><p class="name"><a href="#getConnection()">getConnection</a>()</p><p class="description">Gets the database connection object used by the EntityManager.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\Common\EventManager</td>
+<td class="description"><p class="name"><a href="#getEventManager()">getEventManager</a>()</p><p class="description">Gets the EventManager used by the EntityManager.</p></td>
+</tr>
+<tr>
+<td class="type"> ExpressionBuilder</td>
+<td class="description"><p class="name"><a href="#getExpressionBuilder()">getExpressionBuilder</a>()</p><p class="description">Gets an ExpressionBuilder used for object-oriented construction of query expressions.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Internal\Hydration\AbstractHydrator</td>
+<td class="description"><p class="name"><a href="#getHydrator()">getHydrator</a>(int hydrationMode)</p><p class="description">Gets a hydrator for the given hydration mode.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Mapping\ClassMetadataFactory</td>
+<td class="description"><p class="name"><a href="#getMetadataFactory()">getMetadataFactory</a>()</p><p class="description">Gets the metadata factory used to gather the metadata of classes.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/proxy/proxyfactory.html">ProxyFactory</a></td>
+<td class="description"><p class="name"><a href="#getProxyFactory()">getProxyFactory</a>()</p><p class="description">Gets the proxy factory used by the EntityManager to create entity proxies.</p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#getReference()">getReference</a>(mixed entityName, mixed identifier)</p><p class="description">Gets a reference to the entity identified by the given type and identifier
+without actually loading it.
+</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/entityrepository.html">EntityRepository</a></td>
+<td class="description"><p class="name"><a href="#getRepository()">getRepository</a>(string entityName)</p><p class="description">Gets the repository for an entity class.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\UnitOfWork</td>
+<td class="description"><p class="name"><a href="#getUnitOfWork()">getUnitOfWork</a>()</p><p class="description">Gets the UnitOfWork used by the EntityManager to coordinate operations.</p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#merge()">merge</a>(object entity)</p><p class="description">Merges the state of a detached entity into the persistence context
+of this EntityManager and returns the managed copy of the entity.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Internal\Hydration\AbstractHydrator</td>
+<td class="description"><p class="name"><a href="#newHydrator()">newHydrator</a>(int hydrationMode)</p><p class="description">Create a new instance for the given hydration mode.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#persist()">persist</a>(mixed entity, object object)</p><p class="description">Tells the EntityManager to make an instance managed and persistent.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#refresh()">refresh</a>(object entity)</p><p class="description">Refreshes the persistent state of an entity from the database,
+overriding any local changes that have not yet been persisted.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#remove()">remove</a>(object entity)</p><p class="description">Removes an entity instance.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#rollback()">rollback</a>()</p><p class="description">Performs a rollback on the underlying database connection and closes the
+EntityManager as it may now be in a corrupted state.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/EntityManager.php at line 118</div>
+<h3 id="EntityManager()">EntityManager</h3>
+<code class="signature">public <strong>EntityManager</strong>(Doctrine\DBAL\Connection conn, Doctrine\ORM\Configuration config, Doctrine\Common\EventManager eventManager)</code>
+<div class="details">
+<p>Creates a new EntityManager that operates on the given database connection
+and uses the given Configuration and EventManager implementations.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/EntityManager.php at line 176</div>
+<h3 id="beginTransaction()">beginTransaction</h3>
+<code class="signature">public  void <strong>beginTransaction</strong>()</code>
+<div class="details">
+<p>Starts a transaction on the underlying database connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 331</div>
+<h3 id="clear()">clear</h3>
+<code class="signature">public  void <strong>clear</strong>(string entityName)</code>
+<div class="details">
+<p>Clears the EntityManager. All entities that are currently managed
+by this EntityManager become detached.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 346</div>
+<h3 id="close()">close</h3>
+<code class="signature">public  void <strong>close</strong>()</code>
+<div class="details">
+<p>Closes the EntityManager. All entities that are currently managed
+by this EntityManager become detached. The EntityManager may no longer
+be used after it is closed.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 184</div>
+<h3 id="commit()">commit</h3>
+<code class="signature">public  void <strong>commit</strong>()</code>
+<div class="details">
+<p>Commits a transaction on the underlying database connection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 482</div>
+<h3 id="contains()">contains</h3>
+<code class="signature">public  boolean <strong>contains</strong>(object entity)</code>
+<div class="details">
+<p>Determines whether an entity instance is managed in this EntityManager.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if this EntityManager currently manages the given entity, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 445</div>
+<h3 id="copy()">copy</h3>
+<code class="signature">public  object <strong>copy</strong>(object entity, mixed deep)</code>
+<div class="details">
+<p>Creates a copy of the given entity. Can create a shallow or a deep copy.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to copy.</dd>
+<dt>Returns:</dt>
+<dd>The new entity.</dd>
+<dt>Todo:</dt>
+<dd>Implementation or remove.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 596</div>
+<h3 id="create()">create</h3>
+<code class="signature">public static  <a href="../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>create</strong>(mixed conn, <a href="../../doctrine/dbal/configuration.html">Configuration</a> config, <a href="../../doctrine/common/eventmanager.html">EventManager</a> eventManager)</code>
+<div class="details">
+<p>Factory method to create EntityManager instances.</p><dl>
+<dt>Parameters:</dt>
+<dd>conn - An array with the connection parameters or an existing Connection instance.</dd>
+<dd>config - The Configuration instance to use.</dd>
+<dd>eventManager - The EventManager instance to use.</dd>
+<dt>Returns:</dt>
+<dd>The created EntityManager.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 257</div>
+<h3 id="createNamedNativeQuery()">createNamedNativeQuery</h3>
+<code class="signature">public  Doctrine\ORM\NativeQuery <strong>createNamedNativeQuery</strong>(string name)</code>
+<div class="details">
+<p>Creates a NativeQuery from a named native query.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 231</div>
+<h3 id="createNamedQuery()">createNamedQuery</h3>
+<code class="signature">public  Doctrine\ORM\Query <strong>createNamedQuery</strong>(string name)</code>
+<div class="details">
+<p>Creates a Query from a named query.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 243</div>
+<h3 id="createNativeQuery()">createNativeQuery</h3>
+<code class="signature">public  <a href="../../doctrine/orm/nativequery.html">NativeQuery</a> <strong>createNativeQuery</strong>(string sql, <a href="../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a> rsm)</code>
+<div class="details">
+<p>Creates a native SQL query.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>rsm - The ResultSetMapping to use.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 216</div>
+<h3 id="createQuery()">createQuery</h3>
+<code class="signature">public  Doctrine\ORM\Query <strong>createQuery</strong>(mixed dql, string The)</code>
+<div class="details">
+<p>Creates a new Query object.</p><dl>
+<dt>Parameters:</dt>
+<dd>The - DQL string.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 268</div>
+<h3 id="createQueryBuilder()">createQueryBuilder</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>createQueryBuilder</strong>()</code>
+<div class="details">
+<p>Create a QueryBuilder instance</p><dl>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 413</div>
+<h3 id="detach()">detach</h3>
+<code class="signature">public  void <strong>detach</strong>(object entity)</code>
+<div class="details">
+<p>Detaches an entity from the EntityManager, causing a managed entity to
+become detached.  Unflushed changes made to the entity if any
+(including removal of the entity), will not be synchronized to the database.
+Entities which previously referenced the detached entity will continue to
+reference it.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to detach.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 293</div>
+<h3 id="find()">find</h3>
+<code class="signature">public  object <strong>find</strong>(string entityName, mixed identifier)</code>
+<div class="details">
+<p>Finds an Entity by its identifier.</p><p>This is just a convenient shortcut for getRepository($entityName)->find($id).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 278</div>
+<h3 id="flush()">flush</h3>
+<code class="signature">public  void <strong>flush</strong>()</code>
+<div class="details">
+<p>Flushes all changes to objects that have been queued up to now to the database.
+This effectively synchronizes the in-memory state of managed objects with the
+database.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 205</div>
+<h3 id="getClassMetadata()">getClassMetadata</h3>
+<code class="signature">public  Doctrine\ORM\Mapping\ClassMetadata <strong>getClassMetadata</strong>(mixed className)</code>
+<div class="details">
+<p>Returns the metadata for a class.</p><dl>
+<dt>Internal:</dt>
+<dd>Performance-sensitive method.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 504</div>
+<h3 id="getConfiguration()">getConfiguration</h3>
+<code class="signature">public  Doctrine\ORM\Configuration <strong>getConfiguration</strong>()</code>
+<div class="details">
+<p>Gets the Configuration used by the EntityManager.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 137</div>
+<h3 id="getConnection()">getConnection</h3>
+<code class="signature">public  Doctrine\DBAL\Connection <strong>getConnection</strong>()</code>
+<div class="details">
+<p>Gets the database connection object used by the EntityManager.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 494</div>
+<h3 id="getEventManager()">getEventManager</h3>
+<code class="signature">public  Doctrine\Common\EventManager <strong>getEventManager</strong>()</code>
+<div class="details">
+<p>Gets the EventManager used by the EntityManager.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 165</div>
+<h3 id="getExpressionBuilder()">getExpressionBuilder</h3>
+<code class="signature">public  ExpressionBuilder <strong>getExpressionBuilder</strong>()</code>
+<div class="details">
+<p>Gets an ExpressionBuilder used for object-oriented construction of query expressions.</p><p>Example:</p><p>[php]
+$qb = $em->createQueryBuilder();
+$expr = $em->getExpressionBuilder();
+$qb->select('u')->from('User', 'u')
+->where($expr->orX($expr->eq('u.id', 1), $expr->eq('u.id', 2)));</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 540</div>
+<h3 id="getHydrator()">getHydrator</h3>
+<code class="signature">public  Doctrine\ORM\Internal\Hydration\AbstractHydrator <strong>getHydrator</strong>(int hydrationMode)</code>
+<div class="details">
+<p>Gets a hydrator for the given hydration mode.</p><p>This method caches the hydrator instances which is used for all queries that don't
+selectively iterate over the result.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 147</div>
+<h3 id="getMetadataFactory()">getMetadataFactory</h3>
+<code class="signature">public  Doctrine\ORM\Mapping\ClassMetadataFactory <strong>getMetadataFactory</strong>()</code>
+<div class="details">
+<p>Gets the metadata factory used to gather the metadata of classes.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 582</div>
+<h3 id="getProxyFactory()">getProxyFactory</h3>
+<code class="signature">public  <a href="../../doctrine/orm/proxy/proxyfactory.html">ProxyFactory</a> <strong>getProxyFactory</strong>()</code>
+<div class="details">
+<p>Gets the proxy factory used by the EntityManager to create entity proxies.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 308</div>
+<h3 id="getReference()">getReference</h3>
+<code class="signature">public  object <strong>getReference</strong>(mixed entityName, mixed identifier)</code>
+<div class="details">
+<p>Gets a reference to the entity identified by the given type and identifier
+without actually loading it.</p><p>If partial objects are allowed, this method will return a partial object that only
+has its identifier populated. Otherwise a proxy is returned that automatically
+loads itself on first access.</p><dl>
+<dt>Returns:</dt>
+<dd>The entity reference.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 456</div>
+<h3 id="getRepository()">getRepository</h3>
+<code class="signature">public  <a href="../../doctrine/orm/entityrepository.html">EntityRepository</a> <strong>getRepository</strong>(string entityName)</code>
+<div class="details">
+<p>Gets the repository for an entity class.</p><dl>
+<dt>Parameters:</dt>
+<dd>entityName - The name of the Entity.</dd>
+<dt>Returns:</dt>
+<dd>The repository.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 526</div>
+<h3 id="getUnitOfWork()">getUnitOfWork</h3>
+<code class="signature">public  Doctrine\ORM\UnitOfWork <strong>getUnitOfWork</strong>()</code>
+<div class="details">
+<p>Gets the UnitOfWork used by the EntityManager to coordinate operations.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 429</div>
+<h3 id="merge()">merge</h3>
+<code class="signature">public  object <strong>merge</strong>(object entity)</code>
+<div class="details">
+<p>Merges the state of a detached entity into the persistence context
+of this EntityManager and returns the managed copy of the entity.
+The entity passed to merge will not become associated/managed with this EntityManager.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The detached entity to merge into the persistence context.</dd>
+<dt>Returns:</dt>
+<dd>The managed copy of the entity.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 555</div>
+<h3 id="newHydrator()">newHydrator</h3>
+<code class="signature">public  Doctrine\ORM\Internal\Hydration\AbstractHydrator <strong>newHydrator</strong>(int hydrationMode)</code>
+<div class="details">
+<p>Create a new instance for the given hydration mode.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 363</div>
+<h3 id="persist()">persist</h3>
+<code class="signature">public  void <strong>persist</strong>(mixed entity, object object)</code>
+<div class="details">
+<p>Tells the EntityManager to make an instance managed and persistent.</p><p>The entity will be entered into the database at or before transaction
+commit or as a result of the flush operation.</p><p>NOTE: The persist operation always considers entities that are not yet known to
+this EntityManager as NEW. Do not pass detached entities to the persist operation.</p><dl>
+<dt>Parameters:</dt>
+<dd>object - The instance to make managed and persistent.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 395</div>
+<h3 id="refresh()">refresh</h3>
+<code class="signature">public  void <strong>refresh</strong>(object entity)</code>
+<div class="details">
+<p>Refreshes the persistent state of an entity from the database,
+overriding any local changes that have not yet been persisted.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to refresh.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 380</div>
+<h3 id="remove()">remove</h3>
+<code class="signature">public  void <strong>remove</strong>(object entity)</code>
+<div class="details">
+<p>Removes an entity instance.</p><p>A removed entity will be removed from the database at or before transaction commit
+or as a result of the flush operation.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity instance to remove.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityManager.php at line 193</div>
+<h3 id="rollback()">rollback</h3>
+<code class="signature">public  void <strong>rollback</strong>()</code>
+<div class="details">
+<p>Performs a rollback on the underlying database connection and closes the
+EntityManager as it may now be in a corrupted state.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/entitymanager.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/entitynotfoundexception.html b/lib/api/doctrine/orm/entitynotfoundexception.html
new file mode 100644
index 000000000..138d0d6ac
--- /dev/null
+++ b/lib/api/doctrine/orm/entitynotfoundexception.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>EntityNotFoundException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/entitynotfoundexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\EntityNotFoundException</div>
+<div class="location">/Doctrine/ORM/EntityNotFoundException.php at line 11</div>
+
+<h1>Class EntityNotFoundException</h1>
+
+<pre class="tree">Class:EntityNotFoundException - Superclass: ORMException
+Class:ORMException - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<a href="../../doctrine/orm/ormexception.html">ORMException</a><br>      &lfloor;&nbsp;<strong>EntityNotFoundException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>EntityNotFoundException</strong><br>extends <a href="../../doctrine/orm/ormexception.html">ORMException</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Exception thrown when a Proxy fails to retrieve an Entity result.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>robo</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#EntityNotFoundException()">EntityNotFoundException</a>()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\ORMException</th></tr>
+<tr><td><a href="../../doctrine/orm/ormexception.html#detachedEntityCannotBeRemoved()">detachedEntityCannotBeRemoved</a>, <a href="../../doctrine/orm/ormexception.html#entityManagerClosed()">entityManagerClosed</a>, <a href="../../doctrine/orm/ormexception.html#entityMissingAssignedId()">entityMissingAssignedId</a>, <a href="../../doctrine/orm/ormexception.html#findByRequiresParameter()">findByRequiresParameter</a>, <a href="../../doctrine/orm/ormexception.html#invalidEntityState()">invalidEntityState</a>, <a href="../../doctrine/orm/ormexception.html#invalidFindByCall()">invalidFindByCall</a>, <a href="../../doctrine/orm/ormexception.html#invalidFlushMode()">invalidFlushMode</a>, <a href="../../doctrine/orm/ormexception.html#invalidHydrationMode()">invalidHydrationMode</a>, <a href="../../doctrine/orm/ormexception.html#invalidResultCacheDriver()">invalidResultCacheDriver</a>, <a href="../../doctrine/orm/ormexception.html#metadataCacheNotConfigured()">metadataCacheNotConfigured</a>, <a href="../../doctrine/orm/ormexception.html#mismatchedEventManager()">mismatchedEventManager</a>, <a href="../../doctrine/orm/ormexception.html#missingMappingDriverImpl()">missingMappingDriverImpl</a>, <a href="../../doctrine/orm/ormexception.html#notSupported()">notSupported</a>, <a href="../../doctrine/orm/ormexception.html#proxyClassesAlwaysRegenerating()">proxyClassesAlwaysRegenerating</a>, <a href="../../doctrine/orm/ormexception.html#queryCacheNotConfigured()">queryCacheNotConfigured</a>, <a href="../../doctrine/orm/ormexception.html#removedEntityInCollectionDetected()">removedEntityInCollectionDetected</a>, <a href="../../doctrine/orm/ormexception.html#unknownEntityNamespace()">unknownEntityNamespace</a>, <a href="../../doctrine/orm/ormexception.html#unrecognizedField()">unrecognizedField</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/EntityNotFoundException.php at line 13</div>
+<h3 id="EntityNotFoundException()">EntityNotFoundException</h3>
+<code class="signature">public <strong>EntityNotFoundException</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/entitynotfoundexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/entityrepository.html b/lib/api/doctrine/orm/entityrepository.html
new file mode 100644
index 000000000..923588f8d
--- /dev/null
+++ b/lib/api/doctrine/orm/entityrepository.html
@@ -0,0 +1,251 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>EntityRepository (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/entityrepository.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\EntityRepository</div>
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 40</div>
+
+<h1>Class EntityRepository</h1>
+
+<pre class="tree"><strong>EntityRepository</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>EntityRepository</strong></p>
+
+<div class="comment" id="overview_description"><p>An EntityRepository serves as a repository for entities with generic as well as
+business specific methods for retrieving entities.</p><p>This class is designed for inheritance and users can subclass this class to
+write their own repositories with business-specific methods to locate entities.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  Doctrine\ORM\Mapping\ClassMetadata</td>
+<td class="description"><p class="name"><a href="#_class">$_class</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  <a href="../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#_em">$_em</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_entityName">$_entityName</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#EntityRepository()">EntityRepository</a>(<a href="../../doctrine/orm/entitymanager.html">EntityManager</a> em, mixed class, <a href="../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> classMetadata)</p><p class="description">Initializes a new EntityRepository.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#clear()">clear</a>()</p><p class="description">Clears the repository, causing all managed entities to become detached.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#createQueryBuilder()">createQueryBuilder</a>(string alias)</p><p class="description">Create a new QueryBuilder instance that is prepopulated for this entity name</p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#find()">find</a>(mixed id, $id The, int hydrationMode)</p><p class="description">Finds an entity by its primary key / identifier.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#findAll()">findAll</a>(int hydrationMode)</p><p class="description">Finds all entities in the repository.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#findBy()">findBy</a>(mixed criteria, string column, string value)</p><p class="description">Finds entities by a set of criteria.</p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#findOneBy()">findOneBy</a>(mixed criteria, string column, string value)</p><p class="description">Finds a single entity by a set of criteria.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 55</div>
+<h3 id="_class">_class</h3>
+<code class="signature">protected  Doctrine\ORM\Mapping\ClassMetadata <strong>$_class</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 50</div>
+<h3 id="_em">_em</h3>
+<code class="signature">protected  <a href="../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>$_em</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 45</div>
+<h3 id="_entityName">_entityName</h3>
+<code class="signature">protected  string <strong>$_entityName</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 63</div>
+<h3 id="EntityRepository()">EntityRepository</h3>
+<code class="signature">public <strong>EntityRepository</strong>(<a href="../../doctrine/orm/entitymanager.html">EntityManager</a> em, mixed class, <a href="../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> classMetadata)</code>
+<div class="details">
+<p>Initializes a new <tt>EntityRepository</tt>.</p><dl>
+<dt>Parameters:</dt>
+<dd>em - The EntityManager to use.</dd>
+<dd>classMetadata - The class descriptor.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 86</div>
+<h3 id="clear()">clear</h3>
+<code class="signature">public  void <strong>clear</strong>()</code>
+<div class="details">
+<p>Clears the repository, causing all managed entities to become detached.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 76</div>
+<h3 id="createQueryBuilder()">createQueryBuilder</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>createQueryBuilder</strong>(string alias)</code>
+<div class="details">
+<p>Create a new QueryBuilder instance that is prepopulated for this entity name</p><dl>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 98</div>
+<h3 id="find()">find</h3>
+<code class="signature">public  object <strong>find</strong>(mixed id, $id The, int hydrationMode)</code>
+<div class="details">
+<p>Finds an entity by its primary key / identifier.</p><dl>
+<dt>Parameters:</dt>
+<dd>The - identifier.</dd>
+<dd>hydrationMode - The hydration mode to use.</dd>
+<dt>Returns:</dt>
+<dd>The entity.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 120</div>
+<h3 id="findAll()">findAll</h3>
+<code class="signature">public  array <strong>findAll</strong>(int hydrationMode)</code>
+<div class="details">
+<p>Finds all entities in the repository.</p><dl>
+<dt>Returns:</dt>
+<dd>The entities.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 132</div>
+<h3 id="findBy()">findBy</h3>
+<code class="signature">public  array <strong>findBy</strong>(mixed criteria, string column, string value)</code>
+<div class="details">
+<p>Finds entities by a set of criteria.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/EntityRepository.php at line 144</div>
+<h3 id="findOneBy()">findOneBy</h3>
+<code class="signature">public  object <strong>findOneBy</strong>(mixed criteria, string column, string value)</code>
+<div class="details">
+<p>Finds a single entity by a set of criteria.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/entityrepository.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/event/lifecycleeventargs.html b/lib/api/doctrine/orm/event/lifecycleeventargs.html
new file mode 100644
index 000000000..66acce92a
--- /dev/null
+++ b/lib/api/doctrine/orm/event/lifecycleeventargs.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>LifecycleEventArgs (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/lifecycleeventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Event\LifecycleEventArgs</div>
+<div class="location">/Doctrine/ORM/Event/LifecycleEventArgs.php at line 35</div>
+
+<h1>Class LifecycleEventArgs</h1>
+
+<pre class="tree">Class:LifecycleEventArgs - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>LifecycleEventArgs</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>LifecycleEventArgs</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>Lifecycle Events are triggered by the UnitOfWork during lifecycle transitions
+of entities.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.de></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#LifecycleEventArgs()">LifecycleEventArgs</a>(mixed entity, mixed em)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getEntity()">getEntity</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#getEntityManager()">getEntityManager</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Event/LifecycleEventArgs.php at line 47</div>
+<h3 id="LifecycleEventArgs()">LifecycleEventArgs</h3>
+<code class="signature">public <strong>LifecycleEventArgs</strong>(mixed entity, mixed em)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Event/LifecycleEventArgs.php at line 53</div>
+<h3 id="getEntity()">getEntity</h3>
+<code class="signature">public  void <strong>getEntity</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Event/LifecycleEventArgs.php at line 61</div>
+<h3 id="getEntityManager()">getEntityManager</h3>
+<code class="signature">public  <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>getEntityManager</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/lifecycleeventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/event/loadclassmetadataeventargs.html b/lib/api/doctrine/orm/event/loadclassmetadataeventargs.html
new file mode 100644
index 000000000..9e2593bcc
--- /dev/null
+++ b/lib/api/doctrine/orm/event/loadclassmetadataeventargs.html
@@ -0,0 +1,132 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>LoadClassMetadataEventArgs (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/loadclassmetadataeventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Event\LoadClassMetadataEventArgs</div>
+<div class="location">/Doctrine/ORM/Event/LoadClassMetadataEventArgs.php at line 13</div>
+
+<h1>Class LoadClassMetadataEventArgs</h1>
+
+<pre class="tree">Class:LoadClassMetadataEventArgs - Superclass: EventArgs
+<a href="../../../doctrine/common/eventargs.html">EventArgs</a><br>   &lfloor;&nbsp;<strong>LoadClassMetadataEventArgs</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>LoadClassMetadataEventArgs</strong><br>extends <a href="../../../doctrine/common/eventargs.html">EventArgs</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Class that holds event arguments for a loadMetadata event.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#LoadClassMetadataEventArgs()">LoadClassMetadataEventArgs</a>(mixed classMetadata)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getClassMetadata()">getClassMetadata</a>()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\Common\EventArgs</th></tr>
+<tr><td><a href="../../../doctrine/common/eventargs.html#getEmptyInstance()">getEmptyInstance</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Event/LoadClassMetadataEventArgs.php at line 17</div>
+<h3 id="LoadClassMetadataEventArgs()">LoadClassMetadataEventArgs</h3>
+<code class="signature">public <strong>LoadClassMetadataEventArgs</strong>(mixed classMetadata)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Event/LoadClassMetadataEventArgs.php at line 22</div>
+<h3 id="getClassMetadata()">getClassMetadata</h3>
+<code class="signature">public  void <strong>getClassMetadata</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/loadclassmetadataeventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/event/onflusheventargs.html b/lib/api/doctrine/orm/event/onflusheventargs.html
new file mode 100644
index 000000000..a7f243992
--- /dev/null
+++ b/lib/api/doctrine/orm/event/onflusheventargs.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>OnFlushEventArgs (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/onflusheventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Event\OnFlushEventArgs</div>
+<div class="location">/Doctrine/ORM/Event/OnFlushEventArgs.php at line 34</div>
+
+<h1>Class OnFlushEventArgs</h1>
+
+<pre class="tree">Class:OnFlushEventArgs - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>OnFlushEventArgs</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OnFlushEventArgs</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>Provides event arguments for the preFlush event.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.de></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#OnFlushEventArgs()">OnFlushEventArgs</a>(mixed em)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#getEntityManager()">getEntityManager</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Event/OnFlushEventArgs.php at line 44</div>
+<h3 id="OnFlushEventArgs()">OnFlushEventArgs</h3>
+<code class="signature">public <strong>OnFlushEventArgs</strong>(mixed em)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Event/OnFlushEventArgs.php at line 52</div>
+<h3 id="getEntityManager()">getEntityManager</h3>
+<code class="signature">public  <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>getEntityManager</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/onflusheventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/event/package-frame.html b/lib/api/doctrine/orm/event/package-frame.html
new file mode 100644
index 000000000..616606e0a
--- /dev/null
+++ b/lib/api/doctrine/orm/event/package-frame.html
@@ -0,0 +1,29 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Event (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Event</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/orm/event/lifecycleeventargs.html" target="main">LifecycleEventArgs</a></li>
+<li><a href="../../../doctrine/orm/event/loadclassmetadataeventargs.html" target="main">LoadClassMetadataEventArgs</a></li>
+<li><a href="../../../doctrine/orm/event/onflusheventargs.html" target="main">OnFlushEventArgs</a></li>
+<li><a href="../../../doctrine/orm/event/preupdateeventargs.html" target="main">PreUpdateEventArgs</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/event/package-functions.html b/lib/api/doctrine/orm/event/package-functions.html
new file mode 100644
index 000000000..4ecc4ecb2
--- /dev/null
+++ b/lib/api/doctrine/orm/event/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/event/package-globals.html b/lib/api/doctrine/orm/event/package-globals.html
new file mode 100644
index 000000000..490939261
--- /dev/null
+++ b/lib/api/doctrine/orm/event/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/event/package-summary.html b/lib/api/doctrine/orm/event/package-summary.html
new file mode 100644
index 000000000..7f609a2a7
--- /dev/null
+++ b/lib/api/doctrine/orm/event/package-summary.html
@@ -0,0 +1,68 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Event (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Event</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/event/lifecycleeventargs.html">LifecycleEventArgs</a></td><td class="description">Lifecycle Events are triggered by the UnitOfWork during lifecycle transitions
+of entities.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/event/loadclassmetadataeventargs.html">LoadClassMetadataEventArgs</a></td><td class="description">Class that holds event arguments for a loadMetadata event.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/event/onflusheventargs.html">OnFlushEventArgs</a></td><td class="description">Provides event arguments for the preFlush event.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/event/preupdateeventargs.html">PreUpdateEventArgs</a></td><td class="description">Class that holds event arguments for a preInsert/preUpdate event.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/event/package-tree.html b/lib/api/doctrine/orm/event/package-tree.html
new file mode 100644
index 000000000..b2d261c39
--- /dev/null
+++ b/lib/api/doctrine/orm/event/package-tree.html
@@ -0,0 +1,59 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Event (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Event</h1><ul>
+<li><a href="../../../doctrine/common/eventargs.html">Doctrine\Common\EventArgs</a><ul>
+<li><a href="../../../doctrine/orm/event/loadclassmetadataeventargs.html">Doctrine\ORM\Event\LoadClassMetadataEventArgs</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/event/preupdateeventargs.html b/lib/api/doctrine/orm/event/preupdateeventargs.html
new file mode 100644
index 000000000..552da5aff
--- /dev/null
+++ b/lib/api/doctrine/orm/event/preupdateeventargs.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PreUpdateEventArgs (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/preupdateeventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Event\PreUpdateEventArgs</div>
+<div class="location">/Doctrine/ORM/Event/PreUpdateEventArgs.php at line 15</div>
+
+<h1>Class PreUpdateEventArgs</h1>
+
+<pre class="tree">Class:PreUpdateEventArgs - Superclass: LifecycleEventArgs
+Class:LifecycleEventArgs - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<a href="../../../doctrine/orm/event/lifecycleeventargs.html">LifecycleEventArgs</a><br>      &lfloor;&nbsp;<strong>PreUpdateEventArgs</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>PreUpdateEventArgs</strong><br>extends <a href="../../../doctrine/orm/event/lifecycleeventargs.html">LifecycleEventArgs</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Class that holds event arguments for a preInsert/preUpdate event.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#PreUpdateEventArgs()">PreUpdateEventArgs</a>(object entity, <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, array changeSet)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getEntityChangeSet()">getEntityChangeSet</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getNewValue()">getNewValue</a>(string field)</p><p class="description">Get the new value of the changeset of the changed field.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getOldValue()">getOldValue</a>(string field)</p><p class="description">Get the old value of the changeset of the changed field.</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#hasChangedField()">hasChangedField</a>(mixed field)</p><p class="description">Field has a changeset?</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setNewValue()">setNewValue</a>(string field, mixed value)</p><p class="description">Set the new value of this field.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Event\LifecycleEventArgs</th></tr>
+<tr><td><a href="../../../doctrine/orm/event/lifecycleeventargs.html#getEntity()">getEntity</a>, <a href="../../../doctrine/orm/event/lifecycleeventargs.html#getEntityManager()">getEntityManager</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Event/PreUpdateEventArgs.php at line 28</div>
+<h3 id="PreUpdateEventArgs()">PreUpdateEventArgs</h3>
+<code class="signature">public <strong>PreUpdateEventArgs</strong>(object entity, <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, array changeSet)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Event/PreUpdateEventArgs.php at line 34</div>
+<h3 id="getEntityChangeSet()">getEntityChangeSet</h3>
+<code class="signature">public  void <strong>getEntityChangeSet</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Event/PreUpdateEventArgs.php at line 68</div>
+<h3 id="getNewValue()">getNewValue</h3>
+<code class="signature">public  mixed <strong>getNewValue</strong>(string field)</code>
+<div class="details">
+<p>Get the new value of the changeset of the changed field.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Event/PreUpdateEventArgs.php at line 55</div>
+<h3 id="getOldValue()">getOldValue</h3>
+<code class="signature">public  mixed <strong>getOldValue</strong>(string field)</code>
+<div class="details">
+<p>Get the old value of the changeset of the changed field.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Event/PreUpdateEventArgs.php at line 44</div>
+<h3 id="hasChangedField()">hasChangedField</h3>
+<code class="signature">public  bool <strong>hasChangedField</strong>(mixed field)</code>
+<div class="details">
+<p>Field has a changeset?</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Event/PreUpdateEventArgs.php at line 81</div>
+<h3 id="setNewValue()">setNewValue</h3>
+<code class="signature">public  void <strong>setNewValue</strong>(string field, mixed value)</code>
+<div class="details">
+<p>Set the new value of this field.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/event/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/event/preupdateeventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/events.html b/lib/api/doctrine/orm/events.html
new file mode 100644
index 000000000..ac9c188fd
--- /dev/null
+++ b/lib/api/doctrine/orm/events.html
@@ -0,0 +1,245 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Events (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/events.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Events</div>
+<div class="location">/Doctrine/ORM/Events.php at line 32</div>
+
+<h1>Class Events</h1>
+
+<pre class="tree"><strong>Events</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>Events</strong></p>
+
+<div class="comment" id="overview_description"><p>Container for all ORM events.</p><p>This class cannot be instantiated.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#loadClassMetadata">loadClassMetadata</a></p><p class="description">The loadClassMetadata event occurs after the mapping metadata for a class
+has been loaded from a mapping source (annotations/xml/yaml).</p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#onFlush">onFlush</a></p><p class="description">The onFlush event occurs when the EntityManager#flush() operation is invoked,
+after any changes to managed entities have been determined but before any
+actual database operations are executed. </p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#postLoad">postLoad</a></p><p class="description">The postLoad event occurs for an entity after the entity has been loaded
+into the current EntityManager from the database or after the refresh operation
+has been applied to it.
+</p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#postPersist">postPersist</a></p><p class="description">The postPersist event occurs for an entity after the entity has 
+been made persistent. </p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#postRemove">postRemove</a></p><p class="description">The postRemove event occurs for an entity after the entity has 
+been deleted. </p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#postUpdate">postUpdate</a></p><p class="description">The postUpdate event occurs after the database update operations to 
+entity data. </p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#prePersist">prePersist</a></p><p class="description">The prePersist event occurs for a given entity before the respective
+EntityManager persist operation for that entity is executed.
+</p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#preRemove">preRemove</a></p><p class="description">The preRemove event occurs for a given entity before the respective
+EntityManager remove operation for that entity is executed.
+</p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#preUpdate">preUpdate</a></p><p class="description">The preUpdate event occurs before the database update operations to 
+entity data. </p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Events()">Events</a>()</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Events.php at line 110</div>
+<h3 id="loadClassMetadata">loadClassMetadata</h3>
+<code class="signature">public final  string <strong>loadClassMetadata</strong> = 'loadClassMetadata'</code>
+<div class="details">
+<p>The loadClassMetadata event occurs after the mapping metadata for a class
+has been loaded from a mapping source (annotations/xml/yaml).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Events.php at line 121</div>
+<h3 id="onFlush">onFlush</h3>
+<code class="signature">public final  string <strong>onFlush</strong> = 'onFlush'</code>
+<div class="details">
+<p>The onFlush event occurs when the EntityManager#flush() operation is invoked,
+after any changes to managed entities have been determined but before any
+actual database operations are executed. The event is only raised if there is
+actually something to do for the underlying UnitOfWork. If nothing needs to be done,
+the onFlush event is not raised.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Events.php at line 103</div>
+<h3 id="postLoad">postLoad</h3>
+<code class="signature">public final  string <strong>postLoad</strong> = 'postLoad'</code>
+<div class="details">
+<p>The postLoad event occurs for an entity after the entity has been loaded
+into the current EntityManager from the database or after the refresh operation
+has been applied to it.</p><p>Note that the postLoad event occurs for an entity before any associations have been
+initialized. Therefore it is not safe to access associations in a postLoad callback
+or event handler.</p><p>This is an entity lifecycle event.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Events.php at line 71</div>
+<h3 id="postPersist">postPersist</h3>
+<code class="signature">public final  string <strong>postPersist</strong> = 'postPersist'</code>
+<div class="details">
+<p>The postPersist event occurs for an entity after the entity has 
+been made persistent. It will be invoked after the database insert operations.
+Generated primary key values are available in the postPersist event.</p><p>This is an entity lifecycle event.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Events.php at line 52</div>
+<h3 id="postRemove">postRemove</h3>
+<code class="signature">public final  string <strong>postRemove</strong> = 'postRemove'</code>
+<div class="details">
+<p>The postRemove event occurs for an entity after the entity has 
+been deleted. It will be invoked after the database delete operations.</p><p>This is an entity lifecycle event.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Events.php at line 89</div>
+<h3 id="postUpdate">postUpdate</h3>
+<code class="signature">public final  string <strong>postUpdate</strong> = 'postUpdate'</code>
+<div class="details">
+<p>The postUpdate event occurs after the database update operations to 
+entity data. </p><p>This is an entity lifecycle event.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Events.php at line 61</div>
+<h3 id="prePersist">prePersist</h3>
+<code class="signature">public final  string <strong>prePersist</strong> = 'prePersist'</code>
+<div class="details">
+<p>The prePersist event occurs for a given entity before the respective
+EntityManager persist operation for that entity is executed.</p><p>This is an entity lifecycle event.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Events.php at line 43</div>
+<h3 id="preRemove">preRemove</h3>
+<code class="signature">public final  string <strong>preRemove</strong> = 'preRemove'</code>
+<div class="details">
+<p>The preRemove event occurs for a given entity before the respective
+EntityManager remove operation for that entity is executed.</p><p>This is an entity lifecycle event.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Events.php at line 80</div>
+<h3 id="preUpdate">preUpdate</h3>
+<code class="signature">public final  string <strong>preUpdate</strong> = 'preUpdate'</code>
+<div class="details">
+<p>The preUpdate event occurs before the database update operations to 
+entity data. </p><p>This is an entity lifecycle event.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Events.php at line 34</div>
+<h3 id="Events()">Events</h3>
+<code class="signature">public <strong>Events</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/events.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/abstractidgenerator.html b/lib/api/doctrine/orm/id/abstractidgenerator.html
new file mode 100644
index 000000000..18214ca7a
--- /dev/null
+++ b/lib/api/doctrine/orm/id/abstractidgenerator.html
@@ -0,0 +1,113 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AbstractIdGenerator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/abstractidgenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Id\AbstractIdGenerator</div>
+<div class="location">/Doctrine/ORM/Id/AbstractIdGenerator.php at line 7</div>
+
+<h1>Class AbstractIdGenerator</h1>
+
+<pre class="tree"><strong>AbstractIdGenerator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractIdGenerator</strong></p>
+
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">abstract  mixed</td>
+<td class="description"><p class="name"><a href="#generate()">generate</a>(mixed em, Doctrine\ORM\Entity entity)</p><p class="description">Generates an identifier for an entity.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isPostInsertGenerator()">isPostInsertGenerator</a>()</p><p class="description">Gets whether this generator is a post-insert generator which means that
+generate() must be called after the entity has been inserted
+into the database.
+</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Id/AbstractIdGenerator.php at line 15</div>
+<h3 id="generate()">generate</h3>
+<code class="signature">public abstract  mixed <strong>generate</strong>(mixed em, Doctrine\ORM\Entity entity)</code>
+<div class="details">
+<p>Generates an identifier for an entity.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Id/AbstractIdGenerator.php at line 27</div>
+<h3 id="isPostInsertGenerator()">isPostInsertGenerator</h3>
+<code class="signature">public  boolean <strong>isPostInsertGenerator</strong>()</code>
+<div class="details">
+<p>Gets whether this generator is a post-insert generator which means that
+<code>generate()</code> must be called after the entity has been inserted
+into the database.</p><p>By default, this method returns FALSE. Generators that have this requirement
+must override this method and return TRUE.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/abstractidgenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/assignedgenerator.html b/lib/api/doctrine/orm/id/assignedgenerator.html
new file mode 100644
index 000000000..7880de2fa
--- /dev/null
+++ b/lib/api/doctrine/orm/id/assignedgenerator.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AssignedGenerator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/assignedgenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Id\AssignedGenerator</div>
+<div class="location">/Doctrine/ORM/Id/AssignedGenerator.php at line 39</div>
+
+<h1>Class AssignedGenerator</h1>
+
+<pre class="tree">Class:AssignedGenerator - Superclass: AbstractIdGenerator
+<a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a><br>   &lfloor;&nbsp;<strong>AssignedGenerator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>AssignedGenerator</strong><br>extends <a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Special generator for application-assigned identifiers (doesnt really generate anything).</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#generate()">generate</a>(mixed em, object entity)</p><p class="description">Returns the identifier assigned to the given entity.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Id\AbstractIdGenerator</th></tr>
+<tr><td><a href="../../../doctrine/orm/id/abstractidgenerator.html#generate()">generate</a>, <a href="../../../doctrine/orm/id/abstractidgenerator.html#isPostInsertGenerator()">isPostInsertGenerator</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Id/AssignedGenerator.php at line 48</div>
+<h3 id="generate()">generate</h3>
+<code class="signature">public  mixed <strong>generate</strong>(mixed em, object entity)</code>
+<div class="details">
+<p>Returns the identifier assigned to the given entity.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/assignedgenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/identitygenerator.html b/lib/api/doctrine/orm/id/identitygenerator.html
new file mode 100644
index 000000000..cadf907e9
--- /dev/null
+++ b/lib/api/doctrine/orm/id/identitygenerator.html
@@ -0,0 +1,120 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>IdentityGenerator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/identitygenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Id\IdentityGenerator</div>
+<div class="location">/Doctrine/ORM/Id/IdentityGenerator.php at line 7</div>
+
+<h1>Class IdentityGenerator</h1>
+
+<pre class="tree">Class:IdentityGenerator - Superclass: AbstractIdGenerator
+<a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a><br>   &lfloor;&nbsp;<strong>IdentityGenerator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>IdentityGenerator</strong><br>extends <a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a>
+
+</p>
+
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> integer|float</td>
+<td class="description"><p class="name"><a href="#generate()">generate</a>(mixed em, object entity)</p><p class="description">Generates an ID for the given entity.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isPostInsertGenerator()">isPostInsertGenerator</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Id\AbstractIdGenerator</th></tr>
+<tr><td><a href="../../../doctrine/orm/id/abstractidgenerator.html#generate()">generate</a>, <a href="../../../doctrine/orm/id/abstractidgenerator.html#isPostInsertGenerator()">isPostInsertGenerator</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Id/IdentityGenerator.php at line 16</div>
+<h3 id="generate()">generate</h3>
+<code class="signature">public  integer|float <strong>generate</strong>(mixed em, object entity)</code>
+<div class="details">
+<p>Generates an ID for the given entity.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Id/IdentityGenerator.php at line 25</div>
+<h3 id="isPostInsertGenerator()">isPostInsertGenerator</h3>
+<code class="signature">public  boolean <strong>isPostInsertGenerator</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/identitygenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/package-frame.html b/lib/api/doctrine/orm/id/package-frame.html
new file mode 100644
index 000000000..5a2c72dab
--- /dev/null
+++ b/lib/api/doctrine/orm/id/package-frame.html
@@ -0,0 +1,31 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Id (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Id</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/orm/id/abstractidgenerator.html" target="main">AbstractIdGenerator</a></li>
+<li><a href="../../../doctrine/orm/id/assignedgenerator.html" target="main">AssignedGenerator</a></li>
+<li><a href="../../../doctrine/orm/id/identitygenerator.html" target="main">IdentityGenerator</a></li>
+<li><a href="../../../doctrine/orm/id/sequencegenerator.html" target="main">SequenceGenerator</a></li>
+<li><a href="../../../doctrine/orm/id/sequenceidentitygenerator.html" target="main">SequenceIdentityGenerator</a></li>
+<li><a href="../../../doctrine/orm/id/tablegenerator.html" target="main">TableGenerator</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/package-functions.html b/lib/api/doctrine/orm/id/package-functions.html
new file mode 100644
index 000000000..8433be7d0
--- /dev/null
+++ b/lib/api/doctrine/orm/id/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/package-globals.html b/lib/api/doctrine/orm/id/package-globals.html
new file mode 100644
index 000000000..438003c3c
--- /dev/null
+++ b/lib/api/doctrine/orm/id/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/package-summary.html b/lib/api/doctrine/orm/id/package-summary.html
new file mode 100644
index 000000000..1125c6d01
--- /dev/null
+++ b/lib/api/doctrine/orm/id/package-summary.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Id (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Id</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/id/assignedgenerator.html">AssignedGenerator</a></td><td class="description">Special generator for application-assigned identifiers (doesnt really generate anything).</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/id/identitygenerator.html">IdentityGenerator</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/id/sequencegenerator.html">SequenceGenerator</a></td><td class="description">Represents an ID generator that uses a database sequence.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/id/sequenceidentitygenerator.html">SequenceIdentityGenerator</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/id/tablegenerator.html">TableGenerator</a></td><td class="description">Id generator that uses a single-row database table and a hi/lo algorithm.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/package-tree.html b/lib/api/doctrine/orm/id/package-tree.html
new file mode 100644
index 000000000..8f9cc9370
--- /dev/null
+++ b/lib/api/doctrine/orm/id/package-tree.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Id (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Id</h1><ul>
+<li><a href="../../../doctrine/orm/id/abstractidgenerator.html">Doctrine\ORM\Id\AbstractIdGenerator</a><ul>
+<li><a href="../../../doctrine/orm/id/assignedgenerator.html">Doctrine\ORM\Id\AssignedGenerator</a></li>
+<li><a href="../../../doctrine/orm/id/identitygenerator.html">Doctrine\ORM\Id\IdentityGenerator</a><ul>
+<li><a href="../../../doctrine/orm/id/sequenceidentitygenerator.html">Doctrine\ORM\Id\SequenceIdentityGenerator</a></li>
+</ul>
+</li>
+<li><a href="../../../doctrine/orm/id/sequencegenerator.html">Doctrine\ORM\Id\SequenceGenerator</a></li>
+<li><a href="../../../doctrine/orm/id/tablegenerator.html">Doctrine\ORM\Id\TableGenerator</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/sequencegenerator.html b/lib/api/doctrine/orm/id/sequencegenerator.html
new file mode 100644
index 000000000..3b1c5c979
--- /dev/null
+++ b/lib/api/doctrine/orm/id/sequencegenerator.html
@@ -0,0 +1,185 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SequenceGenerator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/sequencegenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Id\SequenceGenerator</div>
+<div class="location">/Doctrine/ORM/Id/SequenceGenerator.php at line 32</div>
+
+<h1>Class SequenceGenerator</h1>
+
+<pre class="tree">Class:SequenceGenerator - Superclass: AbstractIdGenerator
+<a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a><br>   &lfloor;&nbsp;<strong>SequenceGenerator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SequenceGenerator</strong><br>extends <a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Represents an ID generator that uses a database sequence.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SequenceGenerator()">SequenceGenerator</a>(string sequenceName, integer allocationSize, Doctrine\ORM\EntityManager em)</p><p class="description">Initializes a new sequence generator.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> integer|float</td>
+<td class="description"><p class="name"><a href="#generate()">generate</a>(mixed em, object entity)</p><p class="description">Generates an ID for the given entity.</p></td>
+</tr>
+<tr>
+<td class="type"> integer|float</td>
+<td class="description"><p class="name"><a href="#getCurrentMaxValue()">getCurrentMaxValue</a>()</p><p class="description">Gets the maximum value of the currently allocated bag of values.</p></td>
+</tr>
+<tr>
+<td class="type"> integer|float</td>
+<td class="description"><p class="name"><a href="#getNextValue()">getNextValue</a>()</p><p class="description">Gets the next value that will be returned by generate().</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#serialize()">serialize</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#unserialize()">unserialize</a>(mixed serialized)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Id\AbstractIdGenerator</th></tr>
+<tr><td><a href="../../../doctrine/orm/id/abstractidgenerator.html#generate()">generate</a>, <a href="../../../doctrine/orm/id/abstractidgenerator.html#isPostInsertGenerator()">isPostInsertGenerator</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Id/SequenceGenerator.php at line 46</div>
+<h3 id="SequenceGenerator()">SequenceGenerator</h3>
+<code class="signature">public <strong>SequenceGenerator</strong>(string sequenceName, integer allocationSize, Doctrine\ORM\EntityManager em)</code>
+<div class="details">
+<p>Initializes a new sequence generator.</p><dl>
+<dt>Parameters:</dt>
+<dd>em - The EntityManager to use.</dd>
+<dd>sequenceName - The name of the sequence.</dd>
+<dd>allocationSize - The allocation size of the sequence.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Id/SequenceGenerator.php at line 59</div>
+<h3 id="generate()">generate</h3>
+<code class="signature">public  integer|float <strong>generate</strong>(mixed em, object entity)</code>
+<div class="details">
+<p>Generates an ID for the given entity.</p><dl>
+<dt>Returns:</dt>
+<dd>The generated value.</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Id/SequenceGenerator.php at line 76</div>
+<h3 id="getCurrentMaxValue()">getCurrentMaxValue</h3>
+<code class="signature">public  integer|float <strong>getCurrentMaxValue</strong>()</code>
+<div class="details">
+<p>Gets the maximum value of the currently allocated bag of values.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Id/SequenceGenerator.php at line 86</div>
+<h3 id="getNextValue()">getNextValue</h3>
+<code class="signature">public  integer|float <strong>getNextValue</strong>()</code>
+<div class="details">
+<p>Gets the next value that will be returned by generate().</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Id/SequenceGenerator.php at line 91</div>
+<h3 id="serialize()">serialize</h3>
+<code class="signature">public  void <strong>serialize</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Id/SequenceGenerator.php at line 99</div>
+<h3 id="unserialize()">unserialize</h3>
+<code class="signature">public  void <strong>unserialize</strong>(mixed serialized)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/sequencegenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/sequenceidentitygenerator.html b/lib/api/doctrine/orm/id/sequenceidentitygenerator.html
new file mode 100644
index 000000000..f331063ea
--- /dev/null
+++ b/lib/api/doctrine/orm/id/sequenceidentitygenerator.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SequenceIdentityGenerator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/sequenceidentitygenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Id\SequenceIdentityGenerator</div>
+<div class="location">/Doctrine/ORM/Id/SequenceIdentityGenerator.php at line 7</div>
+
+<h1>Class SequenceIdentityGenerator</h1>
+
+<pre class="tree">Class:SequenceIdentityGenerator - Superclass: IdentityGenerator
+Class:IdentityGenerator - Superclass: AbstractIdGenerator
+<a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a><br>   &lfloor;&nbsp;<a href="../../../doctrine/orm/id/identitygenerator.html">IdentityGenerator</a><br>      &lfloor;&nbsp;<strong>SequenceIdentityGenerator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SequenceIdentityGenerator</strong><br>extends <a href="../../../doctrine/orm/id/identitygenerator.html">IdentityGenerator</a>
+
+</p>
+
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SequenceIdentityGenerator()">SequenceIdentityGenerator</a>(mixed sequenceName)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#generate()">generate</a>(mixed em, Doctrine\ORM\Entity entity)</p><p class="description">Generates an identifier for an entity.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isPostInsertGenerator()">isPostInsertGenerator</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Id\IdentityGenerator</th></tr>
+<tr><td><a href="../../../doctrine/orm/id/identitygenerator.html#generate()">generate</a>, <a href="../../../doctrine/orm/id/identitygenerator.html#isPostInsertGenerator()">isPostInsertGenerator</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Id\AbstractIdGenerator</th></tr>
+<tr><td><a href="../../../doctrine/orm/id/abstractidgenerator.html#generate()">generate</a>, <a href="../../../doctrine/orm/id/abstractidgenerator.html#isPostInsertGenerator()">isPostInsertGenerator</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Id/SequenceIdentityGenerator.php at line 11</div>
+<h3 id="SequenceIdentityGenerator()">SequenceIdentityGenerator</h3>
+<code class="signature">public <strong>SequenceIdentityGenerator</strong>(mixed sequenceName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Id/SequenceIdentityGenerator.php at line 16</div>
+<h3 id="generate()">generate</h3>
+<code class="signature">public  mixed <strong>generate</strong>(mixed em, Doctrine\ORM\Entity entity)</code>
+<div class="details">
+<p>Generates an identifier for an entity.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Id/SequenceIdentityGenerator.php at line 25</div>
+<h3 id="isPostInsertGenerator()">isPostInsertGenerator</h3>
+<code class="signature">public  boolean <strong>isPostInsertGenerator</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/sequenceidentitygenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/id/tablegenerator.html b/lib/api/doctrine/orm/id/tablegenerator.html
new file mode 100644
index 000000000..66576b331
--- /dev/null
+++ b/lib/api/doctrine/orm/id/tablegenerator.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>TableGenerator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/tablegenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Id\TableGenerator</div>
+<div class="location">/Doctrine/ORM/Id/TableGenerator.php at line 19</div>
+
+<h1>Class TableGenerator</h1>
+
+<pre class="tree">Class:TableGenerator - Superclass: AbstractIdGenerator
+<a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a><br>   &lfloor;&nbsp;<strong>TableGenerator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>TableGenerator</strong><br>extends <a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Id generator that uses a single-row database table and a hi/lo algorithm.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#TableGenerator()">TableGenerator</a>(mixed tableName, mixed sequenceName, mixed allocationSize)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#generate()">generate</a>(mixed em, Doctrine\ORM\Entity entity)</p><p class="description">Generates an identifier for an entity.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Id\AbstractIdGenerator</th></tr>
+<tr><td><a href="../../../doctrine/orm/id/abstractidgenerator.html#generate()">generate</a>, <a href="../../../doctrine/orm/id/abstractidgenerator.html#isPostInsertGenerator()">isPostInsertGenerator</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Id/TableGenerator.php at line 27</div>
+<h3 id="TableGenerator()">TableGenerator</h3>
+<code class="signature">public <strong>TableGenerator</strong>(mixed tableName, mixed sequenceName, mixed allocationSize)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Id/TableGenerator.php at line 34</div>
+<h3 id="generate()">generate</h3>
+<code class="signature">public  mixed <strong>generate</strong>(mixed em, Doctrine\ORM\Entity entity)</code>
+<div class="details">
+<p>Generates an identifier for an entity.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/id/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/id/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/id/tablegenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/commitordercalculator.html b/lib/api/doctrine/orm/internal/commitordercalculator.html
new file mode 100644
index 000000000..54da5646b
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/commitordercalculator.html
@@ -0,0 +1,199 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>CommitOrderCalculator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/internal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/internal/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/internal/commitordercalculator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Internal\CommitOrderCalculator</div>
+<div class="location">/Doctrine/ORM/Internal/CommitOrderCalculator.php at line 31</div>
+
+<h1>Class CommitOrderCalculator</h1>
+
+<pre class="tree"><strong>CommitOrderCalculator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>CommitOrderCalculator</strong></p>
+
+<div class="comment" id="overview_description"><p>The CommitOrderCalculator is used by the UnitOfWork to sort out the
+correct order in which changes to entities need to be persisted.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#IN_PROGRESS">IN_PROGRESS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#NOT_VISITED">NOT_VISITED</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#VISITED">VISITED</a></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addClass()">addClass</a>(mixed class)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addDependency()">addDependency</a>(mixed fromClass, mixed toClass)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#clear()">clear</a>()</p><p class="description">Clears the current graph.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getCommitOrder()">getCommitOrder</a>()</p><p class="description">Gets a valid commit order for all current nodes.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#hasClass()">hasClass</a>(mixed className)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Internal/CommitOrderCalculator.php at line 34</div>
+<h3 id="IN_PROGRESS">IN_PROGRESS</h3>
+<code class="signature">public final  int <strong>IN_PROGRESS</strong> = 2</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/CommitOrderCalculator.php at line 33</div>
+<h3 id="NOT_VISITED">NOT_VISITED</h3>
+<code class="signature">public final  int <strong>NOT_VISITED</strong> = 1</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/CommitOrderCalculator.php at line 35</div>
+<h3 id="VISITED">VISITED</h3>
+<code class="signature">public final  int <strong>VISITED</strong> = 3</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Internal/CommitOrderCalculator.php at line 116</div>
+<h3 id="addClass()">addClass</h3>
+<code class="signature">public  void <strong>addClass</strong>(mixed class)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/CommitOrderCalculator.php at line 106</div>
+<h3 id="addDependency()">addDependency</h3>
+<code class="signature">public  void <strong>addDependency</strong>(mixed fromClass, mixed toClass)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/CommitOrderCalculator.php at line 47</div>
+<h3 id="clear()">clear</h3>
+<code class="signature">public  void <strong>clear</strong>()</code>
+<div class="details">
+<p>Clears the current graph.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/CommitOrderCalculator.php at line 61</div>
+<h3 id="getCommitOrder()">getCommitOrder</h3>
+<code class="signature">public  array <strong>getCommitOrder</strong>()</code>
+<div class="details">
+<p>Gets a valid commit order for all current nodes.</p><p>Uses a depth-first search (DFS) to traverse the graph.
+The desired topological sorting is the reverse postorder of these searches.</p><dl>
+<dt>Returns:</dt>
+<dd>The list of ordered classes.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/CommitOrderCalculator.php at line 111</div>
+<h3 id="hasClass()">hasClass</h3>
+<code class="signature">public  void <strong>hasClass</strong>(mixed className)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/internal/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/internal/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/internal/commitordercalculator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/abstracthydrator.html b/lib/api/doctrine/orm/internal/hydration/abstracthydrator.html
new file mode 100644
index 000000000..5b464f479
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/abstracthydrator.html
@@ -0,0 +1,246 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>AbstractHydrator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Internal\Hydration\AbstractHydrator</div>
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 40</div>
+
+<h1>Class AbstractHydrator</h1>
+
+<pre class="tree"><strong>AbstractHydrator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractHydrator</strong></p>
+
+<div class="comment" id="overview_description"><p>Base class for all hydrators. A hydrator is a class that provides some form
+of transformation of an SQL result set into another structure.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3192 $</dd>
+<dt>Author:</dt>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_cache">$_cache</a></p><p class="description">@var array The cache used during row-by-row hydration.</p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_em">$_em</a></p><p class="description">@var EntityManager The EntityManager instance.</p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_hints">$_hints</a></p><p class="description">@var array The query hints.</p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_platform">$_platform</a></p><p class="description">@var AbstractPlatform The dbms Platform instance</p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_rsm">$_rsm</a></p><p class="description">@var ResultSetMapping The ResultSetMapping.</p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_stmt">$_stmt</a></p><p class="description">@var Statement The statement that provides the data to hydrate.</p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_uow">$_uow</a></p><p class="description">@var UnitOfWork The UnitOfWork of the associated EntityManager.</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AbstractHydrator()">AbstractHydrator</a>(Doctrine\ORM\EntityManager em)</p><p class="description">Initializes a new instance of a class derived from AbstractHydrator.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#hydrateAll()">hydrateAll</a>(object stmt, object resultSetMapping, mixed hints)</p><p class="description">Hydrates all rows returned by the passed statement instance at once.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#hydrateRow()">hydrateRow</a>()</p><p class="description">Hydrates a single row returned by the current statement instance during
+row-by-row hydration with {@link iterate()}.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../../doctrine/orm/internal/hydration/iterableresult.html">IterableResult</a></td>
+<td class="description"><p class="name"><a href="#iterate()">iterate</a>(object stmt, object resultSetMapping, mixed hints)</p><p class="description">Initiates a row-by-row hydration.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 55</div>
+<h3 id="_cache">_cache</h3>
+<code class="signature">protected  mixed <strong>$_cache</strong> = array()</code>
+<div class="details">
+<p>array The cache used during row-by-row hydration.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 46</div>
+<h3 id="_em">_em</h3>
+<code class="signature">protected  mixed <strong>$_em</strong></code>
+<div class="details">
+<p>EntityManager The EntityManager instance.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 61</div>
+<h3 id="_hints">_hints</h3>
+<code class="signature">protected  mixed <strong>$_hints</strong></code>
+<div class="details">
+<p>array The query hints.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 49</div>
+<h3 id="_platform">_platform</h3>
+<code class="signature">protected  mixed <strong>$_platform</strong></code>
+<div class="details">
+<p>AbstractPlatform The dbms Platform instance</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 43</div>
+<h3 id="_rsm">_rsm</h3>
+<code class="signature">protected  mixed <strong>$_rsm</strong></code>
+<div class="details">
+<p>ResultSetMapping The ResultSetMapping.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 58</div>
+<h3 id="_stmt">_stmt</h3>
+<code class="signature">protected  mixed <strong>$_stmt</strong></code>
+<div class="details">
+<p>Statement The statement that provides the data to hydrate.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 52</div>
+<h3 id="_uow">_uow</h3>
+<code class="signature">protected  mixed <strong>$_uow</strong></code>
+<div class="details">
+<p>UnitOfWork The UnitOfWork of the associated EntityManager.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 68</div>
+<h3 id="AbstractHydrator()">AbstractHydrator</h3>
+<code class="signature">public <strong>AbstractHydrator</strong>(Doctrine\ORM\EntityManager em)</code>
+<div class="details">
+<p>Initializes a new instance of a class derived from <tt>AbstractHydrator</tt>.</p><dl>
+<dt>Parameters:</dt>
+<dd>em - The EntityManager to use.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 98</div>
+<h3 id="hydrateAll()">hydrateAll</h3>
+<code class="signature">public  mixed <strong>hydrateAll</strong>(object stmt, object resultSetMapping, mixed hints)</code>
+<div class="details">
+<p>Hydrates all rows returned by the passed statement instance at once.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 115</div>
+<h3 id="hydrateRow()">hydrateRow</h3>
+<code class="signature">public  mixed <strong>hydrateRow</strong>()</code>
+<div class="details">
+<p>Hydrates a single row returned by the current statement instance during
+row-by-row hydration with <code>iterate()</code>.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/AbstractHydrator.php at line 82</div>
+<h3 id="iterate()">iterate</h3>
+<code class="signature">public  <a href="../../../../doctrine/orm/internal/hydration/iterableresult.html">IterableResult</a> <strong>iterate</strong>(object stmt, object resultSetMapping, mixed hints)</code>
+<div class="details">
+<p>Initiates a row-by-row hydration.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/arrayhydrator.html b/lib/api/doctrine/orm/internal/hydration/arrayhydrator.html
new file mode 100644
index 000000000..d6e7d2c93
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/arrayhydrator.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ArrayHydrator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/arrayhydrator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Internal\Hydration\ArrayHydrator</div>
+<div class="location">/Doctrine/ORM/Internal/Hydration/ArrayHydrator.php at line 33</div>
+
+<h1>Class ArrayHydrator</h1>
+
+<pre class="tree">Class:ArrayHydrator - Superclass: AbstractHydrator
+<a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html">AbstractHydrator</a><br>   &lfloor;&nbsp;<strong>ArrayHydrator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ArrayHydrator</strong><br>extends <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html">AbstractHydrator</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>The ArrayHydrator produces a nested array "graph" that is often (not always)
+interchangeable with the corresponding object graph for read-only access.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision: 3192 $</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Internal\Hydration\AbstractHydrator</th></tr>
+<tr><td><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_cache">_cache</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_em">_em</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_hints">_hints</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_platform">_platform</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_rsm">_rsm</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_stmt">_stmt</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_uow">_uow</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Internal\Hydration\AbstractHydrator</th></tr>
+<tr><td><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#hydrateAll()">hydrateAll</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#hydrateRow()">hydrateRow</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#iterate()">iterate</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/arrayhydrator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/hydrationexception.html b/lib/api/doctrine/orm/internal/hydration/hydrationexception.html
new file mode 100644
index 000000000..60a03e307
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/hydrationexception.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>HydrationException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/hydrationexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Internal\Hydration\HydrationException</div>
+<div class="location">/Doctrine/ORM/Internal/Hydration/HydrationException.php at line 5</div>
+
+<h1>Class HydrationException</h1>
+
+<pre class="tree">Class:HydrationException - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>HydrationException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>HydrationException</strong><br>extends Doctrine
+
+</p>
+
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#nonUniqueResult()">nonUniqueResult</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#parentObjectOfRelationNotFound()">parentObjectOfRelationNotFound</a>(mixed alias, mixed parentAlias)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Internal/Hydration/HydrationException.php at line 7</div>
+<h3 id="nonUniqueResult()">nonUniqueResult</h3>
+<code class="signature">public static  void <strong>nonUniqueResult</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/HydrationException.php at line 12</div>
+<h3 id="parentObjectOfRelationNotFound()">parentObjectOfRelationNotFound</h3>
+<code class="signature">public static  void <strong>parentObjectOfRelationNotFound</strong>(mixed alias, mixed parentAlias)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/hydrationexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/iterableresult.html b/lib/api/doctrine/orm/internal/hydration/iterableresult.html
new file mode 100644
index 000000000..d035b72eb
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/iterableresult.html
@@ -0,0 +1,168 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>IterableResult (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/iterableresult.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Internal\Hydration\IterableResult</div>
+<div class="location">/Doctrine/ORM/Internal/Hydration/IterableResult.php at line 31</div>
+
+<h1>Class IterableResult</h1>
+
+<pre class="tree"><strong>IterableResult</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>IterableResult</strong></p>
+
+<div class="comment" id="overview_description"><p>Represents a result structure that can be iterated over, hydrating row-by-row
+during the iteration. An IterableResult is obtained by AbstractHydrator#iterate().</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>robo</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#IterableResult()">IterableResult</a>(Doctrine\ORM\Internal\Hydration\AbstractHydrator hydrator)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#current()">current</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> int</td>
+<td class="description"><p class="name"><a href="#key()">key</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#next()">next</a>()</p><p class="description">Gets the next set of results.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#rewind()">rewind</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#valid()">valid</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Internal/Hydration/IterableResult.php at line 56</div>
+<h3 id="IterableResult()">IterableResult</h3>
+<code class="signature">public <strong>IterableResult</strong>(Doctrine\ORM\Internal\Hydration\AbstractHydrator hydrator)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Internal/Hydration/IterableResult.php at line 86</div>
+<h3 id="current()">current</h3>
+<code class="signature">public  mixed <strong>current</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/IterableResult.php at line 94</div>
+<h3 id="key()">key</h3>
+<code class="signature">public  int <strong>key</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/IterableResult.php at line 76</div>
+<h3 id="next()">next</h3>
+<code class="signature">public  array <strong>next</strong>()</code>
+<div class="details">
+<p>Gets the next set of results.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/IterableResult.php at line 61</div>
+<h3 id="rewind()">rewind</h3>
+<code class="signature">public  void <strong>rewind</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Internal/Hydration/IterableResult.php at line 102</div>
+<h3 id="valid()">valid</h3>
+<code class="signature">public  bool <strong>valid</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/iterableresult.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/objecthydrator.html b/lib/api/doctrine/orm/internal/hydration/objecthydrator.html
new file mode 100644
index 000000000..4bada0a5f
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/objecthydrator.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ObjectHydrator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/objecthydrator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Internal\Hydration\ObjectHydrator</div>
+<div class="location">/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php at line 37</div>
+
+<h1>Class ObjectHydrator</h1>
+
+<pre class="tree">Class:ObjectHydrator - Superclass: AbstractHydrator
+<a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html">AbstractHydrator</a><br>   &lfloor;&nbsp;<strong>ObjectHydrator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ObjectHydrator</strong><br>extends <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html">AbstractHydrator</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>The ObjectHydrator constructs an object graph out of an SQL result set.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Internal:</dt>
+<dd>Highly performance-sensitive code.</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision: 3192 $</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Internal\Hydration\AbstractHydrator</th></tr>
+<tr><td><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_cache">_cache</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_em">_em</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_hints">_hints</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_platform">_platform</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_rsm">_rsm</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_stmt">_stmt</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_uow">_uow</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Internal\Hydration\AbstractHydrator</th></tr>
+<tr><td><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#hydrateAll()">hydrateAll</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#hydrateRow()">hydrateRow</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#iterate()">iterate</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/objecthydrator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/package-frame.html b/lib/api/doctrine/orm/internal/hydration/package-frame.html
new file mode 100644
index 000000000..297760b53
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/package-frame.html
@@ -0,0 +1,32 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Internal\Hydration (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Internal\Hydration</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html" target="main">AbstractHydrator</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/arrayhydrator.html" target="main">ArrayHydrator</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/hydrationexception.html" target="main">HydrationException</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/iterableresult.html" target="main">IterableResult</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/objecthydrator.html" target="main">ObjectHydrator</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/scalarhydrator.html" target="main">ScalarHydrator</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/singlescalarhydrator.html" target="main">SingleScalarHydrator</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/package-functions.html b/lib/api/doctrine/orm/internal/hydration/package-functions.html
new file mode 100644
index 000000000..ad32d640b
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/package-globals.html b/lib/api/doctrine/orm/internal/hydration/package-globals.html
new file mode 100644
index 000000000..4160c2153
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/package-summary.html b/lib/api/doctrine/orm/internal/hydration/package-summary.html
new file mode 100644
index 000000000..618960fa6
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/package-summary.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Internal\Hydration (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Internal\Hydration</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html">AbstractHydrator</a></td><td class="description">Base class for all hydrators. </td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/internal/hydration/arrayhydrator.html">ArrayHydrator</a></td><td class="description">The ArrayHydrator produces a nested array "graph" that is often (not always)
+interchangeable with the corresponding object graph for read-only access.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/internal/hydration/hydrationexception.html">HydrationException</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/internal/hydration/iterableresult.html">IterableResult</a></td><td class="description">Represents a result structure that can be iterated over, hydrating row-by-row
+during the iteration. </td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/internal/hydration/objecthydrator.html">ObjectHydrator</a></td><td class="description">The ObjectHydrator constructs an object graph out of an SQL result set.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/internal/hydration/scalarhydrator.html">ScalarHydrator</a></td><td class="description">Hydrator that produces flat, rectangular results of scalar data.
+</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/internal/hydration/singlescalarhydrator.html">SingleScalarHydrator</a></td><td class="description">Hydrator that hydrates a single scalar value from the result set.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/package-tree.html b/lib/api/doctrine/orm/internal/hydration/package-tree.html
new file mode 100644
index 000000000..616cf465e
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/package-tree.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Internal\Hydration (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Internal\Hydration</h1><ul>
+<li><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html">Doctrine\ORM\Internal\Hydration\AbstractHydrator</a><ul>
+<li><a href="../../../../doctrine/orm/internal/hydration/arrayhydrator.html">Doctrine\ORM\Internal\Hydration\ArrayHydrator</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/objecthydrator.html">Doctrine\ORM\Internal\Hydration\ObjectHydrator</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/scalarhydrator.html">Doctrine\ORM\Internal\Hydration\ScalarHydrator</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/singlescalarhydrator.html">Doctrine\ORM\Internal\Hydration\SingleScalarHydrator</a></li>
+</ul>
+</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/iterableresult.html">Doctrine\ORM\Internal\Hydration\IterableResult</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/scalarhydrator.html b/lib/api/doctrine/orm/internal/hydration/scalarhydrator.html
new file mode 100644
index 000000000..826860fd5
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/scalarhydrator.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ScalarHydrator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/scalarhydrator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Internal\Hydration\ScalarHydrator</div>
+<div class="location">/Doctrine/ORM/Internal/Hydration/ScalarHydrator.php at line 34</div>
+
+<h1>Class ScalarHydrator</h1>
+
+<pre class="tree">Class:ScalarHydrator - Superclass: AbstractHydrator
+<a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html">AbstractHydrator</a><br>   &lfloor;&nbsp;<strong>ScalarHydrator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ScalarHydrator</strong><br>extends <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html">AbstractHydrator</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Hydrator that produces flat, rectangular results of scalar data.
+The created result is almost the same as a regular SQL result set, except
+that column names are mapped to field names and data type conversions take place.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision: 3192 $</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Internal\Hydration\AbstractHydrator</th></tr>
+<tr><td><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_cache">_cache</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_em">_em</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_hints">_hints</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_platform">_platform</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_rsm">_rsm</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_stmt">_stmt</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_uow">_uow</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Internal\Hydration\AbstractHydrator</th></tr>
+<tr><td><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#hydrateAll()">hydrateAll</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#hydrateRow()">hydrateRow</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#iterate()">iterate</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/scalarhydrator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/hydration/singlescalarhydrator.html b/lib/api/doctrine/orm/internal/hydration/singlescalarhydrator.html
new file mode 100644
index 000000000..a2d27c1d4
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/hydration/singlescalarhydrator.html
@@ -0,0 +1,103 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>SingleScalarHydrator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/singlescalarhydrator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Internal\Hydration\SingleScalarHydrator</div>
+<div class="location">/Doctrine/ORM/Internal/Hydration/SingleScalarHydrator.php at line 32</div>
+
+<h1>Class SingleScalarHydrator</h1>
+
+<pre class="tree">Class:SingleScalarHydrator - Superclass: AbstractHydrator
+<a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html">AbstractHydrator</a><br>   &lfloor;&nbsp;<strong>SingleScalarHydrator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SingleScalarHydrator</strong><br>extends <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html">AbstractHydrator</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Hydrator that hydrates a single scalar value from the result set.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision: 3192 $</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Internal\Hydration\AbstractHydrator</th></tr>
+<tr><td><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_cache">_cache</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_em">_em</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_hints">_hints</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_platform">_platform</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_rsm">_rsm</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_stmt">_stmt</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#_uow">_uow</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Internal\Hydration\AbstractHydrator</th></tr>
+<tr><td><a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#hydrateAll()">hydrateAll</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#hydrateRow()">hydrateRow</a>, <a href="../../../../doctrine/orm/internal/hydration/abstracthydrator.html#iterate()">iterate</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/internal/hydration/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/internal/hydration/singlescalarhydrator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/package-frame.html b/lib/api/doctrine/orm/internal/package-frame.html
new file mode 100644
index 000000000..3130b159c
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/package-frame.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Internal (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Internal</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/orm/internal/commitordercalculator.html" target="main">CommitOrderCalculator</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/package-functions.html b/lib/api/doctrine/orm/internal/package-functions.html
new file mode 100644
index 000000000..553ea031b
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/internal/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/internal/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/internal/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/internal/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/package-globals.html b/lib/api/doctrine/orm/internal/package-globals.html
new file mode 100644
index 000000000..23bfdb1b4
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/internal/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/internal/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/internal/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/internal/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/package-summary.html b/lib/api/doctrine/orm/internal/package-summary.html
new file mode 100644
index 000000000..8e384345b
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/package-summary.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Internal (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/internal/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/internal/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Internal</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/internal/commitordercalculator.html">CommitOrderCalculator</a></td><td class="description">The CommitOrderCalculator is used by the UnitOfWork to sort out the
+correct order in which changes to entities need to be persisted.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/internal/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/internal/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/internal/package-tree.html b/lib/api/doctrine/orm/internal/package-tree.html
new file mode 100644
index 000000000..568d99cad
--- /dev/null
+++ b/lib/api/doctrine/orm/internal/package-tree.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Internal (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/internal/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/internal/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Internal</h1><ul>
+<li><a href="../../../doctrine/orm/internal/commitordercalculator.html">Doctrine\ORM\Internal\CommitOrderCalculator</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/internal/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/internal/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/associationmapping.html b/lib/api/doctrine/orm/mapping/associationmapping.html
new file mode 100644
index 000000000..d6d09617f
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/associationmapping.html
@@ -0,0 +1,471 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AssociationMapping (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/associationmapping.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\AssociationMapping</div>
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 36</div>
+
+<h1>Class AssociationMapping</h1>
+
+<pre class="tree"><strong>AssociationMapping</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AssociationMapping</strong></p>
+
+<div class="comment" id="overview_description"><p>Base class for association mappings.</p><p><b>IMPORTANT NOTE:</b></p><p>The fields of this class are only public for 2 reasons:
+1) To allow fast, internal READ access.
+2) To drastically reduce the size of a serialized instance (private/protected members
+get the whole class name, namespace inclusive, prepended to every property in
+the serialized representation).</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  integer</td>
+<td class="description"><p class="name"><a href="#FETCH_EAGER">FETCH_EAGER</a></p><p class="description">Specifies that an association is to be fetched when the owner of the
+association is fetched.</p></td>
+</tr>
+<tr>
+<td class="type">final  integer</td>
+<td class="description"><p class="name"><a href="#FETCH_LAZY">FETCH_LAZY</a></p><p class="description">Specifies that an association is to be fetched when it is first accessed.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#declared">$declared</a></p><p class="description">READ-ONLY: The name of the entity or mapped superclass that declares
+the association field in an inheritance hierarchy.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#fetchMode">$fetchMode</a></p><p class="description">READ-ONLY: The fetch mode used for the association.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#inherited">$inherited</a></p><p class="description">READ-ONLY: The name of the entity class from which the association was
+inherited in an inheritance hierarchy.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#inversedBy">$inversedBy</a></p><p class="description">READ-ONLY: Identifies the field on the inverse side of a bidirectional association.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isCascadeDetach">$isCascadeDetach</a></p><p class="description">READ-ONLY: Whether the association cascades detach() operations from the source entity
+to the target entity/entities.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isCascadeMerge">$isCascadeMerge</a></p><p class="description">READ-ONLY: Whether the association cascades merge() operations from the source entity
+to the target entity/entities.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isCascadePersist">$isCascadePersist</a></p><p class="description">READ-ONLY: Whether the association cascades save() operations from the source entity
+to the target entity/entities.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isCascadeRefresh">$isCascadeRefresh</a></p><p class="description">READ-ONLY: Whether the association cascades refresh() operations from the source entity
+to the target entity/entities.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isCascadeRemove">$isCascadeRemove</a></p><p class="description">READ-ONLY: Whether the association cascades delete() operations from the source entity
+to the target entity/entities.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isOwningSide">$isOwningSide</a></p><p class="description">READ-ONLY: Flag that indicates whether the class that defines this mapping is
+the owning side of the association.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#joinTable">$joinTable</a></p><p class="description">READ-ONLY: The join table definition, if any.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#mappedBy">$mappedBy</a></p><p class="description">READ-ONLY: Identifies the field on the owning side of a bidirectional association that
+controls the mapping for the association. </p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#sourceEntityName">$sourceEntityName</a></p><p class="description">READ-ONLY: The name of the source Entity (the Entity that defines this mapping).</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#sourceFieldName">$sourceFieldName</a></p><p class="description">READ-ONLY: Identifies the field on the source class (the class this AssociationMapping
+belongs to) that represents the association and stores the reference to the
+other entity/entities.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#targetEntityName">$targetEntityName</a></p><p class="description">READ-ONLY: The name of the target Entity (the Enitity that is the target of the
+association).</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AssociationMapping()">AssociationMapping</a>(array mapping)</p><p class="description">Initializes a new instance of a class derived from AssociationMapping.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getQuotedJoinTableName()">getQuotedJoinTableName</a>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the (possibly quoted) name of the join table.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#hasCascades()">hasCascades</a>()</p><p class="description">Checks whether the association has any cascades configured.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isEagerlyFetched()">isEagerlyFetched</a>()</p><p class="description">Whether the target entity/entities of the association are eagerly fetched.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isLazilyFetched()">isLazilyFetched</a>()</p><p class="description">Whether the target entity/entities of the association are lazily fetched.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isManyToMany()">isManyToMany</a>()</p><p class="description">Whether the association is a many-to-many association.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isOneToMany()">isOneToMany</a>()</p><p class="description">Whether the association is a one-to-many association.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isOneToOne()">isOneToOne</a>()</p><p class="description">Whether the association is a one-to-one association.</p></td>
+</tr>
+<tr>
+<td class="type">abstract  void</td>
+<td class="description"><p class="name"><a href="#load()">load</a>(object sourceEntity, object target, <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, array joinColumnValues)</p><p class="description">Loads data in $target domain object using this association.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#usesJoinTable()">usesJoinTable</a>()</p><p class="description">Whether the association uses a join table for the mapping.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 50</div>
+<h3 id="FETCH_EAGER">FETCH_EAGER</h3>
+<code class="signature">public final  integer <strong>FETCH_EAGER</strong> = 3</code>
+<div class="details">
+<p>Specifies that an association is to be fetched when the owner of the
+association is fetched.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 43</div>
+<h3 id="FETCH_LAZY">FETCH_LAZY</h3>
+<code class="signature">public final  integer <strong>FETCH_LAZY</strong> = 2</code>
+<div class="details">
+<p>Specifies that an association is to be fetched when it is first accessed.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 169</div>
+<h3 id="declared">declared</h3>
+<code class="signature">public  string <strong>$declared</strong></code>
+<div class="details">
+<p>READ-ONLY: The name of the entity or mapped superclass that declares
+the association field in an inheritance hierarchy.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 97</div>
+<h3 id="fetchMode">fetchMode</h3>
+<code class="signature">public  integer <strong>$fetchMode</strong></code>
+<div class="details">
+<p>READ-ONLY: The fetch mode used for the association.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 161</div>
+<h3 id="inherited">inherited</h3>
+<code class="signature">public  string <strong>$inherited</strong></code>
+<div class="details">
+<p>READ-ONLY: The name of the entity class from which the association was
+inherited in an inheritance hierarchy.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 146</div>
+<h3 id="inversedBy">inversedBy</h3>
+<code class="signature">public  string <strong>$inversedBy</strong></code>
+<div class="details">
+<p>READ-ONLY: Identifies the field on the inverse side of a bidirectional association.
+This is only set on the owning side of an association.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 90</div>
+<h3 id="isCascadeDetach">isCascadeDetach</h3>
+<code class="signature">public  boolean <strong>$isCascadeDetach</strong></code>
+<div class="details">
+<p>READ-ONLY: Whether the association cascades detach() operations from the source entity
+to the target entity/entities.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 82</div>
+<h3 id="isCascadeMerge">isCascadeMerge</h3>
+<code class="signature">public  boolean <strong>$isCascadeMerge</strong></code>
+<div class="details">
+<p>READ-ONLY: Whether the association cascades merge() operations from the source entity
+to the target entity/entities.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 66</div>
+<h3 id="isCascadePersist">isCascadePersist</h3>
+<code class="signature">public  boolean <strong>$isCascadePersist</strong></code>
+<div class="details">
+<p>READ-ONLY: Whether the association cascades save() operations from the source entity
+to the target entity/entities.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 74</div>
+<h3 id="isCascadeRefresh">isCascadeRefresh</h3>
+<code class="signature">public  boolean <strong>$isCascadeRefresh</strong></code>
+<div class="details">
+<p>READ-ONLY: Whether the association cascades refresh() operations from the source entity
+to the target entity/entities.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 58</div>
+<h3 id="isCascadeRemove">isCascadeRemove</h3>
+<code class="signature">public  boolean <strong>$isCascadeRemove</strong></code>
+<div class="details">
+<p>READ-ONLY: Whether the association cascades delete() operations from the source entity
+to the target entity/entities.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 105</div>
+<h3 id="isOwningSide">isOwningSide</h3>
+<code class="signature">public  boolean <strong>$isOwningSide</strong> = true</code>
+<div class="details">
+<p>READ-ONLY: Flag that indicates whether the class that defines this mapping is
+the owning side of the association.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 153</div>
+<h3 id="joinTable">joinTable</h3>
+<code class="signature">public  array <strong>$joinTable</strong></code>
+<div class="details">
+<p>READ-ONLY: The join table definition, if any.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 138</div>
+<h3 id="mappedBy">mappedBy</h3>
+<code class="signature">public  string <strong>$mappedBy</strong></code>
+<div class="details">
+<p>READ-ONLY: Identifies the field on the owning side of a bidirectional association that
+controls the mapping for the association. This is only set on the inverse side
+of an association.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 112</div>
+<h3 id="sourceEntityName">sourceEntityName</h3>
+<code class="signature">public  string <strong>$sourceEntityName</strong></code>
+<div class="details">
+<p>READ-ONLY: The name of the source Entity (the Entity that defines this mapping).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 129</div>
+<h3 id="sourceFieldName">sourceFieldName</h3>
+<code class="signature">public  string <strong>$sourceFieldName</strong></code>
+<div class="details">
+<p>READ-ONLY: Identifies the field on the source class (the class this AssociationMapping
+belongs to) that represents the association and stores the reference to the
+other entity/entities.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 120</div>
+<h3 id="targetEntityName">targetEntityName</h3>
+<code class="signature">public  string <strong>$targetEntityName</strong></code>
+<div class="details">
+<p>READ-ONLY: The name of the target Entity (the Enitity that is the target of the
+association).</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 176</div>
+<h3 id="AssociationMapping()">AssociationMapping</h3>
+<code class="signature">public <strong>AssociationMapping</strong>(array mapping)</code>
+<div class="details">
+<p>Initializes a new instance of a class derived from AssociationMapping.</p><dl>
+<dt>Parameters:</dt>
+<dd>mapping - The mapping definition.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 337</div>
+<h3 id="getQuotedJoinTableName()">getQuotedJoinTableName</h3>
+<code class="signature">public  string <strong>getQuotedJoinTableName</strong>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the (possibly quoted) name of the join table.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 309</div>
+<h3 id="hasCascades()">hasCascades</h3>
+<code class="signature">public  boolean <strong>hasCascades</strong>()</code>
+<div class="details">
+<p>Checks whether the association has any cascades configured.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 249</div>
+<h3 id="isEagerlyFetched()">isEagerlyFetched</h3>
+<code class="signature">public  boolean <strong>isEagerlyFetched</strong>()</code>
+<div class="details">
+<p>Whether the target entity/entities of the association are eagerly fetched.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 259</div>
+<h3 id="isLazilyFetched()">isLazilyFetched</h3>
+<code class="signature">public  boolean <strong>isLazilyFetched</strong>()</code>
+<div class="details">
+<p>Whether the target entity/entities of the association are lazily fetched.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 289</div>
+<h3 id="isManyToMany()">isManyToMany</h3>
+<code class="signature">public  boolean <strong>isManyToMany</strong>()</code>
+<div class="details">
+<p>Whether the association is a many-to-many association.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 279</div>
+<h3 id="isOneToMany()">isOneToMany</h3>
+<code class="signature">public  boolean <strong>isOneToMany</strong>()</code>
+<div class="details">
+<p>Whether the association is a one-to-many association.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 269</div>
+<h3 id="isOneToOne()">isOneToOne</h3>
+<code class="signature">public  boolean <strong>isOneToOne</strong>()</code>
+<div class="details">
+<p>Whether the association is a one-to-one association.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 329</div>
+<h3 id="load()">load</h3>
+<code class="signature">public abstract  void <strong>load</strong>(object sourceEntity, object target, <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, array joinColumnValues)</code>
+<div class="details">
+<p>Loads data in $target domain object using this association.
+The data comes from the association navigated from $sourceEntity
+using $em.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>target - an entity or a collection</dd>
+<dd></dd>
+<dd>joinColumnValues - foreign keys (significative for this association) of $sourceEntity, if needed</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/AssociationMapping.php at line 299</div>
+<h3 id="usesJoinTable()">usesJoinTable</h3>
+<code class="signature">public  boolean <strong>usesJoinTable</strong>()</code>
+<div class="details">
+<p>Whether the association uses a join table for the mapping.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/associationmapping.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/changetrackingpolicy.html b/lib/api/doctrine/orm/mapping/changetrackingpolicy.html
new file mode 100644
index 000000000..a3616b9fb
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/changetrackingpolicy.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ChangeTrackingPolicy (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/changetrackingpolicy.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\ChangeTrackingPolicy</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 125</div>
+
+<h1>Class ChangeTrackingPolicy</h1>
+
+<pre class="tree">Class:ChangeTrackingPolicy - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>ChangeTrackingPolicy</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>ChangeTrackingPolicy</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/changetrackingpolicy.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/classmetadata.html b/lib/api/doctrine/orm/mapping/classmetadata.html
new file mode 100644
index 000000000..d8a9badb7
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/classmetadata.html
@@ -0,0 +1,309 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ClassMetadata (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/classmetadata.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\ClassMetadata</div>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 42</div>
+
+<h1>Class ClassMetadata</h1>
+
+<pre class="tree">Class:ClassMetadata - Superclass: ClassMetadataInfo
+<a href="../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a><br>   &lfloor;&nbsp;<strong>ClassMetadata</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ClassMetadata</strong><br>extends <a href="../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>A <tt>ClassMetadata</tt> instance holds all the object-relational mapping metadata
+of an entity and it's associations.</p><p>Once populated, ClassMetadata instances are usually cached in a serialized form.</p><p><b>IMPORTANT NOTE:</b></p><p>The fields of this class are only public for 2 reasons:
+1) To allow fast READ access.
+2) To drastically reduce the size of a serialized instance (private/protected members
+get the whole class name, namespace inclusive, prepended to every property in
+the serialized representation).</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> ReflectionClass</td>
+<td class="description"><p class="name"><a href="#reflClass">$reflClass</a></p><p class="description">The ReflectionClass instance of the mapped class.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#reflFields">$reflFields</a></p><p class="description">The ReflectionProperty instances of the mapped class.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Mapping\ClassMetadataInfo</th></tr>
+<tr><td><a href="../../../doctrine/orm/mapping/classmetadatainfo.html#CHANGETRACKING_DEFERRED_EXPLICIT">CHANGETRACKING_DEFERRED_EXPLICIT</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#CHANGETRACKING_DEFERRED_IMPLICIT">CHANGETRACKING_DEFERRED_IMPLICIT</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#CHANGETRACKING_NOTIFY">CHANGETRACKING_NOTIFY</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#GENERATOR_TYPE_AUTO">GENERATOR_TYPE_AUTO</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#GENERATOR_TYPE_IDENTITY">GENERATOR_TYPE_IDENTITY</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#GENERATOR_TYPE_NONE">GENERATOR_TYPE_NONE</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#GENERATOR_TYPE_SEQUENCE">GENERATOR_TYPE_SEQUENCE</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#GENERATOR_TYPE_TABLE">GENERATOR_TYPE_TABLE</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#INHERITANCE_TYPE_JOINED">INHERITANCE_TYPE_JOINED</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#INHERITANCE_TYPE_NONE">INHERITANCE_TYPE_NONE</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#INHERITANCE_TYPE_SINGLE_TABLE">INHERITANCE_TYPE_SINGLE_TABLE</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#INHERITANCE_TYPE_TABLE_PER_CLASS">INHERITANCE_TYPE_TABLE_PER_CLASS</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#associationMappings">associationMappings</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#changeTrackingPolicy">changeTrackingPolicy</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#columnNames">columnNames</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#customRepositoryClassName">customRepositoryClassName</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#discriminatorColumn">discriminatorColumn</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#discriminatorMap">discriminatorMap</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#discriminatorValue">discriminatorValue</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#fieldMappings">fieldMappings</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#fieldNames">fieldNames</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#generatorType">generatorType</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#idGenerator">idGenerator</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#identifier">identifier</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#inheritanceType">inheritanceType</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isIdentifierComposite">isIdentifierComposite</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isMappedSuperclass">isMappedSuperclass</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isVersioned">isVersioned</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#lifecycleCallbacks">lifecycleCallbacks</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#name">name</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#namespace">namespace</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#parentClasses">parentClasses</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#rootEntityName">rootEntityName</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#sequenceGeneratorDefinition">sequenceGeneratorDefinition</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#subClasses">subClasses</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#table">table</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#tableGeneratorDefinition">tableGeneratorDefinition</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#versionField">versionField</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ClassMetadata()">ClassMetadata</a>(string entityName)</p><p class="description">Initializes a new ClassMetadata instance that will hold the object-relational mapping
+metadata of the class with the given name.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getFieldValue()">getFieldValue</a>(object entity, string field)</p><p class="description">Gets the specified field's value off the given entity.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getIdentifierValues()">getIdentifierValues</a>(object entity)</p><p class="description">Extracts the identifier values of an entity of this class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getQuotedColumnName()">getQuotedColumnName</a>(string field, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the (possibly quoted) column name of a mapped field for safe use
+in an SQL statement.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getQuotedTableName()">getQuotedTableName</a>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</p><p class="description">Gets the (possibly quoted) primary table name of this class for safe use
+in an SQL statement.</p></td>
+</tr>
+<tr>
+<td class="type"> ReflectionClass</td>
+<td class="description"><p class="name"><a href="#getReflectionClass()">getReflectionClass</a>()</p><p class="description">Gets the ReflectionClass instance of the mapped class.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getReflectionProperties()">getReflectionProperties</a>()</p><p class="description">Gets the ReflectionPropertys of the mapped class.</p></td>
+</tr>
+<tr>
+<td class="type"> ReflectionProperty</td>
+<td class="description"><p class="name"><a href="#getReflectionProperty()">getReflectionProperty</a>(string name)</p><p class="description">Gets a ReflectionProperty for a specific field of the mapped class.</p></td>
+</tr>
+<tr>
+<td class="type"> ReflectionProperty</td>
+<td class="description"><p class="name"><a href="#getSingleIdReflectionProperty()">getSingleIdReflectionProperty</a>()</p><p class="description">Gets the ReflectionProperty for the single identifier field.</p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#newInstance()">newInstance</a>()</p><p class="description">Creates a new instance of the mapped class, without invoking the constructor.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setFieldValue()">setFieldValue</a>(object entity, string field, mixed value)</p><p class="description">Sets the specified field to the specified value on the given entity.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setIdentifierValues()">setIdentifierValues</a>(object entity, mixed id)</p><p class="description">Populates the entity identifier of an entity.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Mapping\ClassMetadataInfo</th></tr>
+<tr><td><a href="../../../doctrine/orm/mapping/classmetadatainfo.html#addInheritedAssociationMapping()">addInheritedAssociationMapping</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#addInheritedFieldMapping()">addInheritedFieldMapping</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#addLifecycleCallback()">addLifecycleCallback</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getAssociationMapping()">getAssociationMapping</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getAssociationMappings()">getAssociationMappings</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getColumnName()">getColumnName</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getColumnNames()">getColumnNames</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getFieldMapping()">getFieldMapping</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getFieldName()">getFieldName</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getIdentifierColumnNames()">getIdentifierColumnNames</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getIdentifierFieldNames()">getIdentifierFieldNames</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getLifecycleCallbacks()">getLifecycleCallbacks</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getSingleIdentifierColumnName()">getSingleIdentifierColumnName</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getSingleIdentifierFieldName()">getSingleIdentifierFieldName</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getTableName()">getTableName</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getTemporaryIdTableName()">getTemporaryIdTableName</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getTypeOfColumn()">getTypeOfColumn</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#getTypeOfField()">getTypeOfField</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#hasAssociation()">hasAssociation</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#hasField()">hasField</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#hasLifecycleCallbacks()">hasLifecycleCallbacks</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#invokeLifecycleCallbacks()">invokeLifecycleCallbacks</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isChangeTrackingDeferredExplicit()">isChangeTrackingDeferredExplicit</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isChangeTrackingDeferredImplicit()">isChangeTrackingDeferredImplicit</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isChangeTrackingNotify()">isChangeTrackingNotify</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isCollectionValuedAssociation()">isCollectionValuedAssociation</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isIdGeneratorIdentity()">isIdGeneratorIdentity</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isIdGeneratorSequence()">isIdGeneratorSequence</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isIdGeneratorTable()">isIdGeneratorTable</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isIdentifier()">isIdentifier</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isIdentifierNatural()">isIdentifierNatural</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isInheritanceTypeJoined()">isInheritanceTypeJoined</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isInheritanceTypeNone()">isInheritanceTypeNone</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isInheritanceTypeSingleTable()">isInheritanceTypeSingleTable</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isInheritanceTypeTablePerClass()">isInheritanceTypeTablePerClass</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isInheritedAssociation()">isInheritedAssociation</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isInheritedField()">isInheritedField</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isNullable()">isNullable</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isSingleValuedAssociation()">isSingleValuedAssociation</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#isUniqueField()">isUniqueField</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#mapField()">mapField</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#mapManyToMany()">mapManyToMany</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#mapManyToOne()">mapManyToOne</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#mapOneToMany()">mapOneToMany</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#mapOneToOne()">mapOneToOne</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setChangeTrackingPolicy()">setChangeTrackingPolicy</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setCustomRepositoryClass()">setCustomRepositoryClass</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setDiscriminatorColumn()">setDiscriminatorColumn</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setDiscriminatorMap()">setDiscriminatorMap</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setIdGenerator()">setIdGenerator</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setIdGeneratorType()">setIdGeneratorType</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setIdentifier()">setIdentifier</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setInheritanceType()">setInheritanceType</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setLifecycleCallbacks()">setLifecycleCallbacks</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setParentClasses()">setParentClasses</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setPrimaryTable()">setPrimaryTable</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setSequenceGeneratorDefinition()">setSequenceGeneratorDefinition</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setSubclasses()">setSubclasses</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setTableName()">setTableName</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setVersionField()">setVersionField</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setVersionMapping()">setVersionMapping</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#setVersioned()">setVersioned</a>, <a href="../../../doctrine/orm/mapping/classmetadatainfo.html#usesIdGenerator()">usesIdGenerator</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 49</div>
+<h3 id="reflClass">reflClass</h3>
+<code class="signature">public  ReflectionClass <strong>$reflClass</strong></code>
+<div class="details">
+<p>The ReflectionClass instance of the mapped class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 56</div>
+<h3 id="reflFields">reflFields</h3>
+<code class="signature">public  array <strong>$reflFields</strong> = array()</code>
+<div class="details">
+<p>The ReflectionProperty instances of the mapped class.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 71</div>
+<h3 id="ClassMetadata()">ClassMetadata</h3>
+<code class="signature">public <strong>ClassMetadata</strong>(string entityName)</code>
+<div class="details">
+<p>Initializes a new ClassMetadata instance that will hold the object-relational mapping
+metadata of the class with the given name.</p><dl>
+<dt>Parameters:</dt>
+<dd>entityName - The name of the entity class the new instance is used for.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 203</div>
+<h3 id="getFieldValue()">getFieldValue</h3>
+<code class="signature">public  void <strong>getFieldValue</strong>(object entity, string field)</code>
+<div class="details">
+<p>Gets the specified field's value off the given entity.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 151</div>
+<h3 id="getIdentifierValues()">getIdentifierValues</h3>
+<code class="signature">public  array <strong>getIdentifierValues</strong>(object entity)</code>
+<div class="details">
+<p>Extracts the identifier values of an entity of this class.</p><p>For composite identifiers, the identifier values are returned as an array
+with the same order as the field order in <code><a href="../../../doctrine/orm/mapping/classmetadatainfo.html#identifier">identifier</a></code>.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 233</div>
+<h3 id="getQuotedColumnName()">getQuotedColumnName</h3>
+<code class="signature">public  string <strong>getQuotedColumnName</strong>(string field, <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the (possibly quoted) column name of a mapped field for safe use
+in an SQL statement.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 247</div>
+<h3 id="getQuotedTableName()">getQuotedTableName</h3>
+<code class="signature">public  string <strong>getQuotedTableName</strong>(<a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> platform)</code>
+<div class="details">
+<p>Gets the (possibly quoted) primary table name of this class for safe use
+in an SQL statement.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 84</div>
+<h3 id="getReflectionClass()">getReflectionClass</h3>
+<code class="signature">public  ReflectionClass <strong>getReflectionClass</strong>()</code>
+<div class="details">
+<p>Gets the ReflectionClass instance of the mapped class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 94</div>
+<h3 id="getReflectionProperties()">getReflectionProperties</h3>
+<code class="signature">public  array <strong>getReflectionProperties</strong>()</code>
+<div class="details">
+<p>Gets the ReflectionPropertys of the mapped class.</p><dl>
+<dt>Returns:</dt>
+<dd>An array of ReflectionProperty instances.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 105</div>
+<h3 id="getReflectionProperty()">getReflectionProperty</h3>
+<code class="signature">public  ReflectionProperty <strong>getReflectionProperty</strong>(string name)</code>
+<div class="details">
+<p>Gets a ReflectionProperty for a specific field of the mapped class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 116</div>
+<h3 id="getSingleIdReflectionProperty()">getSingleIdReflectionProperty</h3>
+<code class="signature">public  ReflectionProperty <strong>getSingleIdReflectionProperty</strong>()</code>
+<div class="details">
+<p>Gets the ReflectionProperty for the single identifier field.</p><dl>
+<dt>Throws:</dt>
+<dd>If the class has a composite identifier.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 340</div>
+<h3 id="newInstance()">newInstance</h3>
+<code class="signature">public  object <strong>newInstance</strong>()</code>
+<div class="details">
+<p>Creates a new instance of the mapped class, without invoking the constructor.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 192</div>
+<h3 id="setFieldValue()">setFieldValue</h3>
+<code class="signature">public  void <strong>setFieldValue</strong>(object entity, string field, mixed value)</code>
+<div class="details">
+<p>Sets the specified field to the specified value on the given entity.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadata.php at line 174</div>
+<h3 id="setIdentifierValues()">setIdentifierValues</h3>
+<code class="signature">public  void <strong>setIdentifierValues</strong>(object entity, mixed id)</code>
+<div class="details">
+<p>Populates the entity identifier of an entity.</p><dl>
+<dt>Todo:</dt>
+<dd>Rename to assignIdentifier()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/classmetadata.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/classmetadatafactory.html b/lib/api/doctrine/orm/mapping/classmetadatafactory.html
new file mode 100644
index 000000000..a513af02a
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/classmetadatafactory.html
@@ -0,0 +1,221 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ClassMetadataFactory (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/classmetadatafactory.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\ClassMetadataFactory</div>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataFactory.php at line 42</div>
+
+<h1>Class ClassMetadataFactory</h1>
+
+<pre class="tree"><strong>ClassMetadataFactory</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ClassMetadataFactory</strong></p>
+
+<div class="comment" id="overview_description"><p>The ClassMetadataFactory is used to create ClassMetadata objects that contain all the
+metadata mapping informations of a class which describes how a class should be mapped
+to a relational database.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ClassMetadataFactory()">ClassMetadataFactory</a>(mixed em, $driver The)</p><p class="description">Creates a new factory instance that uses the given metadata driver implementation.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getAllMetadata()">getAllMetadata</a>()</p><p class="description">Forces the factory to load the metadata of all classes known to the underlying
+mapping driver.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\Common\Cache\Cache</td>
+<td class="description"><p class="name"><a href="#getCacheDriver()">getCacheDriver</a>()</p><p class="description">Gets the cache driver used by the factory to cache ClassMetadata instances.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getLoadedMetadata()">getLoadedMetadata</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Mapping\ClassMetadata</td>
+<td class="description"><p class="name"><a href="#getMetadataFor()">getMetadataFor</a>(string className)</p><p class="description">Gets the class metadata descriptor for a class.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#hasMetadataFor()">hasMetadataFor</a>(string className)</p><p class="description">Checks whether the factory has the metadata for a class loaded already.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setCacheDriver()">setCacheDriver</a>(Doctrine\Common\Cache\Cache cacheDriver)</p><p class="description">Sets the cache driver used by the factory to cache ClassMetadata instances.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setMetadataFor()">setMetadataFor</a>(string className, <a href="../../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> class)</p><p class="description">Sets the metadata descriptor for a specific class.
+</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataFactory.php at line 61</div>
+<h3 id="ClassMetadataFactory()">ClassMetadataFactory</h3>
+<code class="signature">public <strong>ClassMetadataFactory</strong>(mixed em, $driver The)</code>
+<div class="details">
+<p>Creates a new factory instance that uses the given metadata driver implementation.</p><dl>
+<dt>Parameters:</dt>
+<dd>The - metadata driver to use.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataFactory.php at line 97</div>
+<h3 id="getAllMetadata()">getAllMetadata</h3>
+<code class="signature">public  array <strong>getAllMetadata</strong>()</code>
+<div class="details">
+<p>Forces the factory to load the metadata of all classes known to the underlying
+mapping driver.</p><dl>
+<dt>Returns:</dt>
+<dd>The ClassMetadata instances of all mapped classes.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataFactory.php at line 81</div>
+<h3 id="getCacheDriver()">getCacheDriver</h3>
+<code class="signature">public  Doctrine\Common\Cache\Cache <strong>getCacheDriver</strong>()</code>
+<div class="details">
+<p>Gets the cache driver used by the factory to cache ClassMetadata instances.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataFactory.php at line 86</div>
+<h3 id="getLoadedMetadata()">getLoadedMetadata</h3>
+<code class="signature">public  void <strong>getLoadedMetadata</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataFactory.php at line 129</div>
+<h3 id="getMetadataFor()">getMetadataFor</h3>
+<code class="signature">public  Doctrine\ORM\Mapping\ClassMetadata <strong>getMetadataFor</strong>(string className)</code>
+<div class="details">
+<p>Gets the class metadata descriptor for a class.</p><dl>
+<dt>Parameters:</dt>
+<dd>className - The name of the class.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataFactory.php at line 176</div>
+<h3 id="hasMetadataFor()">hasMetadataFor</h3>
+<code class="signature">public  boolean <strong>hasMetadataFor</strong>(string className)</code>
+<div class="details">
+<p>Checks whether the factory has the metadata for a class loaded already.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the metadata of the class in question is already loaded, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataFactory.php at line 71</div>
+<h3 id="setCacheDriver()">setCacheDriver</h3>
+<code class="signature">public  void <strong>setCacheDriver</strong>(Doctrine\Common\Cache\Cache cacheDriver)</code>
+<div class="details">
+<p>Sets the cache driver used by the factory to cache ClassMetadata instances.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataFactory.php at line 189</div>
+<h3 id="setMetadataFor()">setMetadataFor</h3>
+<code class="signature">public  void <strong>setMetadataFor</strong>(string className, <a href="../../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> class)</code>
+<div class="details">
+<p>Sets the metadata descriptor for a specific class.</p><p>NOTE: This is only useful in very special cases, like when generating proxy classes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/classmetadatafactory.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/classmetadatainfo.html b/lib/api/doctrine/orm/mapping/classmetadatainfo.html
new file mode 100644
index 000000000..e9639e307
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/classmetadatainfo.html
@@ -0,0 +1,1635 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ClassMetadataInfo (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/classmetadatainfo.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\ClassMetadataInfo</div>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 40</div>
+
+<h1>Class ClassMetadataInfo</h1>
+
+<pre class="tree"><strong>ClassMetadataInfo</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ClassMetadataInfo</strong></p>
+
+<div class="comment" id="overview_description"><p>A <tt>ClassMetadata</tt> instance holds all the object-relational mapping metadata
+of an entity and it's associations.</p><p>Once populated, ClassMetadata instances are usually cached in a serialized form.</p><p><b>IMPORTANT NOTE:</b></p><p>The fields of this class are only public for 2 reasons:
+1) To allow fast READ access.
+2) To drastically reduce the size of a serialized instance (private/protected members
+get the whole class name, namespace inclusive, prepended to every property in
+the serialized representation).</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#CHANGETRACKING_DEFERRED_EXPLICIT">CHANGETRACKING_DEFERRED_EXPLICIT</a></p><p class="description">DEFERRED_EXPLICIT means that changes of entities are calculated at commit-time
+by doing a property-by-property comparison with the original data. </p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#CHANGETRACKING_DEFERRED_IMPLICIT">CHANGETRACKING_DEFERRED_IMPLICIT</a></p><p class="description">DEFERRED_IMPLICIT means that changes of entities are calculated at commit-time
+by doing a property-by-property comparison with the original data. </p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#CHANGETRACKING_NOTIFY">CHANGETRACKING_NOTIFY</a></p><p class="description">NOTIFY means that Doctrine relies on the entities sending out notifications
+when their properties change. </p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#GENERATOR_TYPE_AUTO">GENERATOR_TYPE_AUTO</a></p><p class="description">AUTO means the generator type will depend on what the used platform prefers.
+</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#GENERATOR_TYPE_IDENTITY">GENERATOR_TYPE_IDENTITY</a></p><p class="description">IDENTITY means an identity column is used for id generation. </p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#GENERATOR_TYPE_NONE">GENERATOR_TYPE_NONE</a></p><p class="description">NONE means the class does not have a generated id. </p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#GENERATOR_TYPE_SEQUENCE">GENERATOR_TYPE_SEQUENCE</a></p><p class="description">SEQUENCE means a separate sequence object will be used. </p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#GENERATOR_TYPE_TABLE">GENERATOR_TYPE_TABLE</a></p><p class="description">TABLE means a separate table is used for id generation.
+</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#INHERITANCE_TYPE_JOINED">INHERITANCE_TYPE_JOINED</a></p><p class="description">JOINED means the class will be persisted according to the rules of
+Class Table Inheritance.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#INHERITANCE_TYPE_NONE">INHERITANCE_TYPE_NONE</a></p><p class="description">NONE means the class does not participate in an inheritance hierarchy
+and therefore does not need an inheritance mapping type.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#INHERITANCE_TYPE_SINGLE_TABLE">INHERITANCE_TYPE_SINGLE_TABLE</a></p><p class="description">SINGLE_TABLE means the class will be persisted according to the rules of
+Single Table Inheritance.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#INHERITANCE_TYPE_TABLE_PER_CLASS">INHERITANCE_TYPE_TABLE_PER_CLASS</a></p><p class="description">TABLE_PER_CLASS means the class will be persisted according to the rules
+of Concrete Table Inheritance.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#associationMappings">$associationMappings</a></p><p class="description">READ-ONLY: The association mappings of this class.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#changeTrackingPolicy">$changeTrackingPolicy</a></p><p class="description">READ-ONLY: The policy used for change-tracking on entities of this class.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#columnNames">$columnNames</a></p><p class="description">READ-ONLY: A map of field names to column names. </p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#customRepositoryClassName">$customRepositoryClassName</a></p><p class="description">The name of the custom repository class used for the entity class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#discriminatorColumn">$discriminatorColumn</a></p><p class="description">READ-ONLY: The definition of the descriminator column used in JOINED and SINGLE_TABLE
+inheritance mappings.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#discriminatorMap">$discriminatorMap</a></p><p class="description">READ-ONLY: The discriminator map of all mapped classes in the hierarchy.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#discriminatorValue">$discriminatorValue</a></p><p class="description">READ-ONLY: The discriminator value of this class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#fieldMappings">$fieldMappings</a></p><p class="description">READ-ONLY: The field mappings of the class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#fieldNames">$fieldNames</a></p><p class="description">READ-ONLY: An array of field names. </p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#generatorType">$generatorType</a></p><p class="description">READ-ONLY: The Id generator type used by the class.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a></td>
+<td class="description"><p class="name"><a href="#idGenerator">$idGenerator</a></p><p class="description">READ-ONLY: The ID generator used for generating IDs for this class.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#identifier">$identifier</a></p><p class="description">READ-ONLY: The field names of all fields that are part of the identifier/primary key
+of the mapped entity class.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#inheritanceType">$inheritanceType</a></p><p class="description">READ-ONLY: The inheritance mapping type used by the class.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isIdentifierComposite">$isIdentifierComposite</a></p><p class="description">READ-ONLY: Flag indicating whether the identifier/primary key of the class is composite.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isMappedSuperclass">$isMappedSuperclass</a></p><p class="description">READ-ONLY: Whether this class describes the mapping of a mapped superclass.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean $isVersioned</td>
+<td class="description"><p class="name"><a href="#isVersioned">$isVersioned</a></p><p class="description">READ-ONLY: A flag for whether or not instances of this class are to be versioned
+with optimistic locking.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#lifecycleCallbacks">$lifecycleCallbacks</a></p><p class="description">READ-ONLY: The registered lifecycle callbacks for entities of this class.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p><p class="description">READ-ONLY: The name of the entity class.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#namespace">$namespace</a></p><p class="description">READ-ONLY: The namespace the entity class is contained in.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#parentClasses">$parentClasses</a></p><p class="description">READ-ONLY: The names of the parent classes (ancestors).</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#rootEntityName">$rootEntityName</a></p><p class="description">READ-ONLY: The name of the entity class that is at the root of the mapped entity inheritance
+hierarchy. </p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#sequenceGeneratorDefinition">$sequenceGeneratorDefinition</a></p><p class="description">READ-ONLY: The definition of the sequence generator of this class. </p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#subClasses">$subClasses</a></p><p class="description">READ-ONLY: The names of all subclasses (descendants).</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#table">$table</a></p><p class="description">READ-ONLY: The primary table definition. </p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#tableGeneratorDefinition">$tableGeneratorDefinition</a></p><p class="description">READ-ONLY: The definition of the table generator of this class. </p></td>
+</tr>
+<tr>
+<td class="type"> mixed $versionField</td>
+<td class="description"><p class="name"><a href="#versionField">$versionField</a></p><p class="description">READ-ONLY: The name of the field which is used for versioning in optimistic locking (if any).</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ClassMetadataInfo()">ClassMetadataInfo</a>(string entityName)</p><p class="description">Initializes a new ClassMetadata instance that will hold the object-relational mapping
+metadata of the class with the given name.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addInheritedAssociationMapping()">addInheritedAssociationMapping</a>(<a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a> mapping, string owningClassName)</p><p class="description">INTERNAL:
+Adds an association mapping without completing/validating it.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addInheritedFieldMapping()">addInheritedFieldMapping</a>(mixed fieldMapping, array mapping)</p><p class="description">INTERNAL:
+Adds a field mapping without completing/validating it.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addLifecycleCallback()">addLifecycleCallback</a>(string callback, string event)</p><p class="description">Adds a lifecycle callback for entities of this class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Mapping\AssociationMapping</td>
+<td class="description"><p class="name"><a href="#getAssociationMapping()">getAssociationMapping</a>(string fieldName)</p><p class="description">Gets the mapping of an association.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getAssociationMappings()">getAssociationMappings</a>()</p><p class="description">Gets all association mappings of the class.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getColumnName()">getColumnName</a>(string fieldName)</p><p class="description">Gets a column name for a field name.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getColumnNames()">getColumnNames</a>(mixed fieldNames)</p><p class="description">Gets an array containing all the column names.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getFieldMapping()">getFieldMapping</a>(string fieldName)</p><p class="description">Gets the mapping of a (regular) field that holds some data but not a
+reference to another object.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getFieldName()">getFieldName</a>(string columnName)</p><p class="description">Gets the field name for a column name.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getIdentifierColumnNames()">getIdentifierColumnNames</a>()</p><p class="description">Returns an array with all the identifier column names.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getIdentifierFieldNames()">getIdentifierFieldNames</a>()</p><p class="description">Gets the identifier (primary key) field names of the class.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getLifecycleCallbacks()">getLifecycleCallbacks</a>(string event)</p><p class="description">Gets the registered lifecycle callbacks for an event.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSingleIdentifierColumnName()">getSingleIdentifierColumnName</a>()</p><p class="description">Gets the column name of the single id column. </p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSingleIdentifierFieldName()">getSingleIdentifierFieldName</a>()</p><p class="description">Gets the name of the single id field. </p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTableName()">getTableName</a>()</p><p class="description">Gets the name of the primary table.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getTemporaryIdTableName()">getTemporaryIdTableName</a>()</p><p class="description">Gets the table name to use for temporary identifier tables of this class.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Types\Type</td>
+<td class="description"><p class="name"><a href="#getTypeOfColumn()">getTypeOfColumn</a>(mixed columnName)</p><p class="description">Gets the type of a column.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Types\Type</td>
+<td class="description"><p class="name"><a href="#getTypeOfField()">getTypeOfField</a>(string fieldName)</p><p class="description">Gets the type of a field.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#hasAssociation()">hasAssociation</a>(string fieldName)</p><p class="description">Checks whether the class has a mapped association with the given field name.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#hasField()">hasField</a>(mixed fieldName)</p><p class="description">Checks whether the class has a (mapped) field with a certain name.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#hasLifecycleCallbacks()">hasLifecycleCallbacks</a>(string lifecycleEvent)</p><p class="description">Whether the class has any attached lifecycle listeners or callbacks for a lifecycle event.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#invokeLifecycleCallbacks()">invokeLifecycleCallbacks</a>(mixed lifecycleEvent, <a href="../../../doctrine/orm/mapping/entity.html">Entity</a> entity, string event)</p><p class="description">Dispatches the lifecycle event of the given entity to the registered
+lifecycle callbacks and lifecycle listeners.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isChangeTrackingDeferredExplicit()">isChangeTrackingDeferredExplicit</a>()</p><p class="description">Whether the change tracking policy of this class is "deferred explicit".</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isChangeTrackingDeferredImplicit()">isChangeTrackingDeferredImplicit</a>()</p><p class="description">Whether the change tracking policy of this class is "deferred implicit".</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isChangeTrackingNotify()">isChangeTrackingNotify</a>()</p><p class="description">Whether the change tracking policy of this class is "notify".</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isCollectionValuedAssociation()">isCollectionValuedAssociation</a>(string fieldName)</p><p class="description">Checks whether the class has a mapped association for the specified field
+and if yes, checks whether it is a collection-valued association (to-many).</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isIdGeneratorIdentity()">isIdGeneratorIdentity</a>()</p><p class="description">Checks whether the class uses an identity column for the Id generation.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isIdGeneratorSequence()">isIdGeneratorSequence</a>()</p><p class="description">Checks whether the class uses a sequence for id generation.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isIdGeneratorTable()">isIdGeneratorTable</a>()</p><p class="description">Checks whether the class uses a table for id generation.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isIdentifier()">isIdentifier</a>(string fieldName)</p><p class="description">Checks whether a field is part of the identifier/primary key field(s).</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isIdentifierNatural()">isIdentifierNatural</a>()</p><p class="description">Checks whether the class has a natural identifier/pk (which means it does
+not use any Id generator.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isInheritanceTypeJoined()">isInheritanceTypeJoined</a>()</p><p class="description">Checks whether the mapped class uses the JOINED inheritance mapping strategy.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isInheritanceTypeNone()">isInheritanceTypeNone</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isInheritanceTypeSingleTable()">isInheritanceTypeSingleTable</a>()</p><p class="description">Checks whether the mapped class uses the SINGLE_TABLE inheritance mapping strategy.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isInheritanceTypeTablePerClass()">isInheritanceTypeTablePerClass</a>()</p><p class="description">Checks whether the mapped class uses the TABLE_PER_CLASS inheritance mapping strategy.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isInheritedAssociation()">isInheritedAssociation</a>(string fieldName)</p><p class="description">Checks whether a mapped association field is inherited from a superclass.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isInheritedField()">isInheritedField</a>(mixed fieldName)</p><p class="description">Checks whether a mapped field is inherited from an entity superclass.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isNullable()">isNullable</a>(string fieldName)</p><p class="description">Check if the field is not null.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isSingleValuedAssociation()">isSingleValuedAssociation</a>(string fieldName)</p><p class="description">Checks whether the class has a mapped association for the specified field
+and if yes, checks whether it is a single-valued association (to-one).</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isUniqueField()">isUniqueField</a>(string fieldName)</p><p class="description">Check if the field is unique.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#mapField()">mapField</a>(array mapping)</p><p class="description">Adds a mapped field to the class.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#mapManyToMany()">mapManyToMany</a>(array mapping)</p><p class="description">Adds a many-to-many mapping.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#mapManyToOne()">mapManyToOne</a>(array mapping)</p><p class="description">Adds a many-to-one mapping.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#mapOneToMany()">mapOneToMany</a>(array mapping)</p><p class="description">Adds a one-to-many mapping.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#mapOneToOne()">mapOneToOne</a>(array mapping)</p><p class="description">Adds a one-to-one mapping.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setChangeTrackingPolicy()">setChangeTrackingPolicy</a>(integer policy)</p><p class="description">Sets the change tracking policy used by this class.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setCustomRepositoryClass()">setCustomRepositoryClass</a>(mixed repositoryClassName, string mapperClassName)</p><p class="description">Registers a custom repository class for the entity class.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setDiscriminatorColumn()">setDiscriminatorColumn</a>(array columnDef)</p><p class="description">Sets the discriminator column definition.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setDiscriminatorMap()">setDiscriminatorMap</a>(array map)</p><p class="description">Sets the discriminator values used by this class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setIdGenerator()">setIdGenerator</a>(<a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a> generator)</p><p class="description">Sets the ID generator used to generate IDs for instances of this class.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setIdGeneratorType()">setIdGeneratorType</a>(mixed generatorType)</p><p class="description">Sets the type of Id generator to use for the mapped class.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setIdentifier()">setIdentifier</a>(array identifier)</p><p class="description">INTERNAL:
+Sets the mapped identifier/primary key fields of this class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setInheritanceType()">setInheritanceType</a>(integer type)</p><p class="description">Sets the inheritance type used by the class and it's subclasses.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setLifecycleCallbacks()">setLifecycleCallbacks</a>(array callbacks)</p><p class="description">Sets the lifecycle callbacks for entities of this class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setParentClasses()">setParentClasses</a>(mixed classNames)</p><p class="description">Sets the parent class names.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setPrimaryTable()">setPrimaryTable</a>(array primaryTableDefinition)</p><p class="description">Sets the primary table definition. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setSequenceGeneratorDefinition()">setSequenceGeneratorDefinition</a>(array definition)</p><p class="description">Sets the definition of the sequence ID generator for this class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setSubclasses()">setSubclasses</a>(array subclasses)</p><p class="description">Sets the mapped subclasses of this class.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setTableName()">setTableName</a>(string tableName)</p><p class="description">Sets the name of the primary table the class is mapped to.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setVersionField()">setVersionField</a>(string versionField)</p><p class="description">Sets the name of the field that is to be used for versioning if this class is
+versioned for optimistic locking.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setVersionMapping()">setVersionMapping</a>(array mapping)</p><p class="description">Sets the version field mapping used for versioning. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setVersioned()">setVersioned</a>(boolean bool)</p><p class="description">Sets whether this class is to be versioned for optimistic locking.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#usesIdGenerator()">usesIdGenerator</a>()</p><p class="description">Checks whether the mapped class uses an Id generator.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 106</div>
+<h3 id="CHANGETRACKING_DEFERRED_EXPLICIT">CHANGETRACKING_DEFERRED_EXPLICIT</h3>
+<code class="signature">public final  int <strong>CHANGETRACKING_DEFERRED_EXPLICIT</strong> = 2</code>
+<div class="details">
+<p>DEFERRED_EXPLICIT means that changes of entities are calculated at commit-time
+by doing a property-by-property comparison with the original data. This will
+be done only for entities that were explicitly saved (through persist() or a cascade).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 100</div>
+<h3 id="CHANGETRACKING_DEFERRED_IMPLICIT">CHANGETRACKING_DEFERRED_IMPLICIT</h3>
+<code class="signature">public final  int <strong>CHANGETRACKING_DEFERRED_IMPLICIT</strong> = 1</code>
+<div class="details">
+<p>DEFERRED_IMPLICIT means that changes of entities are calculated at commit-time
+by doing a property-by-property comparison with the original data. This will
+be done for all entities that are in MANAGED state at commit-time.</p><p>This is the default change tracking policy.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 112</div>
+<h3 id="CHANGETRACKING_NOTIFY">CHANGETRACKING_NOTIFY</h3>
+<code class="signature">public final  int <strong>CHANGETRACKING_NOTIFY</strong> = 3</code>
+<div class="details">
+<p>NOTIFY means that Doctrine relies on the entities sending out notifications
+when their properties change. Such entity classes must implement
+the <tt>NotifyPropertyChanged</tt> interface.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 69</div>
+<h3 id="GENERATOR_TYPE_AUTO">GENERATOR_TYPE_AUTO</h3>
+<code class="signature">public final  int <strong>GENERATOR_TYPE_AUTO</strong> = 1</code>
+<div class="details">
+<p>AUTO means the generator type will depend on what the used platform prefers.
+Offers full portability.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 87</div>
+<h3 id="GENERATOR_TYPE_IDENTITY">GENERATOR_TYPE_IDENTITY</h3>
+<code class="signature">public final  int <strong>GENERATOR_TYPE_IDENTITY</strong> = 4</code>
+<div class="details">
+<p>IDENTITY means an identity column is used for id generation. The database
+will fill in the id column on insertion. Platforms that do not support
+native identity columns may emulate them. Full portability is currently
+not guaranteed.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 92</div>
+<h3 id="GENERATOR_TYPE_NONE">GENERATOR_TYPE_NONE</h3>
+<code class="signature">public final  int <strong>GENERATOR_TYPE_NONE</strong> = 5</code>
+<div class="details">
+<p>NONE means the class does not have a generated id. That means the class
+must have a natural, manually assigned id.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 75</div>
+<h3 id="GENERATOR_TYPE_SEQUENCE">GENERATOR_TYPE_SEQUENCE</h3>
+<code class="signature">public final  int <strong>GENERATOR_TYPE_SEQUENCE</strong> = 2</code>
+<div class="details">
+<p>SEQUENCE means a separate sequence object will be used. Platforms that do
+not have native sequence support may emulate it. Full portability is currently
+not guaranteed.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 80</div>
+<h3 id="GENERATOR_TYPE_TABLE">GENERATOR_TYPE_TABLE</h3>
+<code class="signature">public final  int <strong>GENERATOR_TYPE_TABLE</strong> = 3</code>
+<div class="details">
+<p>TABLE means a separate table is used for id generation.
+Offers full portability.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 52</div>
+<h3 id="INHERITANCE_TYPE_JOINED">INHERITANCE_TYPE_JOINED</h3>
+<code class="signature">public final  int <strong>INHERITANCE_TYPE_JOINED</strong> = 2</code>
+<div class="details">
+<p>JOINED means the class will be persisted according to the rules of
+<tt>Class Table Inheritance</tt>.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 47</div>
+<h3 id="INHERITANCE_TYPE_NONE">INHERITANCE_TYPE_NONE</h3>
+<code class="signature">public final  int <strong>INHERITANCE_TYPE_NONE</strong> = 1</code>
+<div class="details">
+<p>NONE means the class does not participate in an inheritance hierarchy
+and therefore does not need an inheritance mapping type.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 57</div>
+<h3 id="INHERITANCE_TYPE_SINGLE_TABLE">INHERITANCE_TYPE_SINGLE_TABLE</h3>
+<code class="signature">public final  int <strong>INHERITANCE_TYPE_SINGLE_TABLE</strong> = 3</code>
+<div class="details">
+<p>SINGLE_TABLE means the class will be persisted according to the rules of
+<tt>Single Table Inheritance</tt>.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 62</div>
+<h3 id="INHERITANCE_TYPE_TABLE_PER_CLASS">INHERITANCE_TYPE_TABLE_PER_CLASS</h3>
+<code class="signature">public final  int <strong>INHERITANCE_TYPE_TABLE_PER_CLASS</strong> = 4</code>
+<div class="details">
+<p>TABLE_PER_CLASS means the class will be persisted according to the rules
+of <tt>Concrete Table Inheritance</tt>.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 305</div>
+<h3 id="associationMappings">associationMappings</h3>
+<code class="signature">public  array <strong>$associationMappings</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: The association mappings of this class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 352</div>
+<h3 id="changeTrackingPolicy">changeTrackingPolicy</h3>
+<code class="signature">public  integer <strong>$changeTrackingPolicy</strong> = self::CHANGETRACKING_DEFERRED_IMPLICIT</code>
+<div class="details">
+<p>READ-ONLY: The policy used for change-tracking on entities of this class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 247</div>
+<h3 id="columnNames">columnNames</h3>
+<code class="signature">public  array <strong>$columnNames</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: A map of field names to column names. Keys are field names and values column names.
+Used to look up column names from field names.
+This is the reverse lookup map of $_fieldNames.</p><dl>
+<dt>Todo:</dt>
+<dd>We could get rid of this array by just using $fieldMappings[$fieldName]['columnName'].</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 142</div>
+<h3 id="customRepositoryClassName">customRepositoryClassName</h3>
+<code class="signature">public  string <strong>$customRepositoryClassName</strong></code>
+<div class="details">
+<p>The name of the custom repository class used for the entity class.
+(Optional).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 277</div>
+<h3 id="discriminatorColumn">discriminatorColumn</h3>
+<code class="signature">public  array <strong>$discriminatorColumn</strong></code>
+<div class="details">
+<p>READ-ONLY: The definition of the descriminator column used in JOINED and SINGLE_TABLE
+inheritance mappings.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 269</div>
+<h3 id="discriminatorMap">discriminatorMap</h3>
+<code class="signature">public  mixed <strong>$discriminatorMap</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: The discriminator map of all mapped classes in the hierarchy.</p><p><b>This does only apply to the JOINED and SINGLE_TABLE inheritance mapping strategies
+where a discriminator column is used.</b></p><dl>
+<dt>See Also:</dt>
+<dd><a href="../../../doctrine/orm/mapping/classmetadatainfo.html#discriminatorColumn">discriminatorColumn</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 258</div>
+<h3 id="discriminatorValue">discriminatorValue</h3>
+<code class="signature">public  mixed <strong>$discriminatorValue</strong></code>
+<div class="details">
+<p>READ-ONLY: The discriminator value of this class.</p><p><b>This does only apply to the JOINED and SINGLE_TABLE inheritance mapping strategies
+where a discriminator column is used.</b></p><dl>
+<dt>See Also:</dt>
+<dd><a href="../../../doctrine/orm/mapping/classmetadatainfo.html#discriminatorColumn">discriminatorColumn</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 228</div>
+<h3 id="fieldMappings">fieldMappings</h3>
+<code class="signature">public  array <strong>$fieldMappings</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: The field mappings of the class.
+Keys are field names and values are mapping definitions.</p><p>The mapping definition array has the following values:</p><p>- <b>fieldName</b> (string)
+The name of the field in the Entity.</p><p>- <b>type</b> (string)
+The type name of the mapped field. Can be one of Doctrine's mapping types
+or a custom mapping type.</p><p>- <b>columnName</b> (string, optional)
+The column name. Optional. Defaults to the field name.</p><p>- <b>length</b> (integer, optional)
+The database length of the column. Optional. Default value taken from
+the type.</p><p>- <b>id</b> (boolean, optional)
+Marks the field as the primary key of the entity. Multiple fields of an
+entity can have the id attribute, forming a composite key.</p><p>- <b>nullable</b> (boolean, optional)
+Whether the column is nullable. Defaults to FALSE.</p><p>- <b>columnDefinition</b> (string, optional, schema-only)
+The SQL fragment that is used when generating the DDL for the column.</p><p>- <b>precision</b> (integer, optional, schema-only)
+The precision of a decimal column. Only valid if the column type is decimal.</p><p>- <b>scale</b> (integer, optional, schema-only)
+The scale of a decimal column. Only valid if the column type is decimal.</p><p>- <b>unique (string, optional, schema-only)</b>
+Whether a unique constraint should be generated for the column.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 237</div>
+<h3 id="fieldNames">fieldNames</h3>
+<code class="signature">public  array <strong>$fieldNames</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: An array of field names. Used to look up field names from column names.
+Keys are column names and values are field names.
+This is the reverse lookup map of $_columnNames.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 185</div>
+<h3 id="generatorType">generatorType</h3>
+<code class="signature">public  string <strong>$generatorType</strong> = self::GENERATOR_TYPE_NONE</code>
+<div class="details">
+<p>READ-ONLY: The Id generator type used by the class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 320</div>
+<h3 id="idGenerator">idGenerator</h3>
+<code class="signature">public  <a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a> <strong>$idGenerator</strong></code>
+<div class="details">
+<p>READ-ONLY: The ID generator used for generating IDs for this class.</p><dl>
+<dt>Todo:</dt>
+<dd>Remove</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 171</div>
+<h3 id="identifier">identifier</h3>
+<code class="signature">public  array <strong>$identifier</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: The field names of all fields that are part of the identifier/primary key
+of the mapped entity class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 178</div>
+<h3 id="inheritanceType">inheritanceType</h3>
+<code class="signature">public  integer <strong>$inheritanceType</strong> = self::INHERITANCE_TYPE_NONE</code>
+<div class="details">
+<p>READ-ONLY: The inheritance mapping type used by the class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 312</div>
+<h3 id="isIdentifierComposite">isIdentifierComposite</h3>
+<code class="signature">public  boolean <strong>$isIdentifierComposite</strong> = false</code>
+<div class="details">
+<p>READ-ONLY: Flag indicating whether the identifier/primary key of the class is composite.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 149</div>
+<h3 id="isMappedSuperclass">isMappedSuperclass</h3>
+<code class="signature">public  boolean <strong>$isMappedSuperclass</strong> = false</code>
+<div class="details">
+<p>READ-ONLY: Whether this class describes the mapping of a mapped superclass.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 360</div>
+<h3 id="isVersioned">isVersioned</h3>
+<code class="signature">public  boolean $isVersioned <strong>$isVersioned</strong></code>
+<div class="details">
+<p>READ-ONLY: A flag for whether or not instances of this class are to be versioned
+with optimistic locking.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 298</div>
+<h3 id="lifecycleCallbacks">lifecycleCallbacks</h3>
+<code class="signature">public  array <strong>$lifecycleCallbacks</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: The registered lifecycle callbacks for entities of this class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 117</div>
+<h3 id="name">name</h3>
+<code class="signature">public  mixed <strong>$name</strong></code>
+<div class="details">
+<p>READ-ONLY: The name of the entity class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 125</div>
+<h3 id="namespace">namespace</h3>
+<code class="signature">public  string <strong>$namespace</strong></code>
+<div class="details">
+<p>READ-ONLY: The namespace the entity class is contained in.</p><dl>
+<dt>Todo:</dt>
+<dd>Not really needed. Usage could be localized.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 156</div>
+<h3 id="parentClasses">parentClasses</h3>
+<code class="signature">public  array <strong>$parentClasses</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: The names of the parent classes (ancestors).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 134</div>
+<h3 id="rootEntityName">rootEntityName</h3>
+<code class="signature">public  string <strong>$rootEntityName</strong></code>
+<div class="details">
+<p>READ-ONLY: The name of the entity class that is at the root of the mapped entity inheritance
+hierarchy. If the entity is not part of a mapped inheritance hierarchy this is the same
+as <code>$entityName</code>.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 337</div>
+<h3 id="sequenceGeneratorDefinition">sequenceGeneratorDefinition</h3>
+<code class="signature">public  array <strong>$sequenceGeneratorDefinition</strong></code>
+<div class="details">
+<p>READ-ONLY: The definition of the sequence generator of this class. Only used for the
+SEQUENCE generation strategy.</p><p>The definition has the following structure:
+<code>
+array(
+'sequenceName' => 'name',
+'allocationSize' => 20,
+'initialValue' => 1
+)
+</code></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 163</div>
+<h3 id="subClasses">subClasses</h3>
+<code class="signature">public  array <strong>$subClasses</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: The names of all subclasses (descendants).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 291</div>
+<h3 id="table">table</h3>
+<code class="signature">public  array <strong>$table</strong></code>
+<div class="details">
+<p>READ-ONLY: The primary table definition. The definition is an array with the
+following entries:</p><p>name => <tableName>
+schema => <schemaName>
+indexes => array
+uniqueConstraints => array</p><dl>
+<dt>Todo:</dt>
+<dd>Rename to just $table</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 345</div>
+<h3 id="tableGeneratorDefinition">tableGeneratorDefinition</h3>
+<code class="signature">public  array <strong>$tableGeneratorDefinition</strong></code>
+<div class="details">
+<p>READ-ONLY: The definition of the table generator of this class. Only used for the
+TABLE generation strategy.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 367</div>
+<h3 id="versionField">versionField</h3>
+<code class="signature">public  mixed $versionField <strong>$versionField</strong></code>
+<div class="details">
+<p>READ-ONLY: The name of the field which is used for versioning in optimistic locking (if any).</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 375</div>
+<h3 id="ClassMetadataInfo()">ClassMetadataInfo</h3>
+<code class="signature">public <strong>ClassMetadataInfo</strong>(string entityName)</code>
+<div class="details">
+<p>Initializes a new ClassMetadata instance that will hold the object-relational mapping
+metadata of the class with the given name.</p><dl>
+<dt>Parameters:</dt>
+<dd>entityName - The name of the entity class the new instance is used for.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 957</div>
+<h3 id="addInheritedAssociationMapping()">addInheritedAssociationMapping</h3>
+<code class="signature">public  void <strong>addInheritedAssociationMapping</strong>(<a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a> mapping, string owningClassName)</code>
+<div class="details">
+<p>INTERNAL:
+Adds an association mapping without completing/validating it.
+This is mainly used to add inherited association mappings to derived classes.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>owningClassName - The name of the class that defined this mapping.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 973</div>
+<h3 id="addInheritedFieldMapping()">addInheritedFieldMapping</h3>
+<code class="signature">public  void <strong>addInheritedFieldMapping</strong>(mixed fieldMapping, array mapping)</code>
+<div class="details">
+<p>INTERNAL:
+Adds a field mapping without completing/validating it.
+This is mainly used to add inherited field mappings to derived classes.</p><dl>
+<dt>Todo:</dt>
+<dd>Rename: addInheritedFieldMapping</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1096</div>
+<h3 id="addLifecycleCallback()">addLifecycleCallback</h3>
+<code class="signature">public  void <strong>addLifecycleCallback</strong>(string callback, string event)</code>
+<div class="details">
+<p>Adds a lifecycle callback for entities of this class.</p><p>Note: If the same callback is registered more than once, the old one
+will be overridden.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 502</div>
+<h3 id="getAssociationMapping()">getAssociationMapping</h3>
+<code class="signature">public  Doctrine\ORM\Mapping\AssociationMapping <strong>getAssociationMapping</strong>(string fieldName)</code>
+<div class="details">
+<p>Gets the mapping of an association.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldName - The field name that represents the association in the object model.</dd>
+<dt>Returns:</dt>
+<dd>The mapping.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 515</div>
+<h3 id="getAssociationMappings()">getAssociationMappings</h3>
+<code class="signature">public  array <strong>getAssociationMappings</strong>()</code>
+<div class="details">
+<p>Gets all association mappings of the class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 474</div>
+<h3 id="getColumnName()">getColumnName</h3>
+<code class="signature">public  string <strong>getColumnName</strong>(string fieldName)</code>
+<div class="details">
+<p>Gets a column name for a field name.
+If the column name for the field cannot be found, the given field name
+is returned.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldName - The field name.</dd>
+<dt>Returns:</dt>
+<dd>The column name.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 643</div>
+<h3 id="getColumnNames()">getColumnNames</h3>
+<code class="signature">public  array <strong>getColumnNames</strong>(mixed fieldNames)</code>
+<div class="details">
+<p>Gets an array containing all the column names.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 487</div>
+<h3 id="getFieldMapping()">getFieldMapping</h3>
+<code class="signature">public  array <strong>getFieldMapping</strong>(string fieldName)</code>
+<div class="details">
+<p>Gets the mapping of a (regular) field that holds some data but not a
+reference to another object.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldName - The field name.</dd>
+<dt>Returns:</dt>
+<dd>The field mapping.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 527</div>
+<h3 id="getFieldName()">getFieldName</h3>
+<code class="signature">public  string <strong>getFieldName</strong>(string columnName)</code>
+<div class="details">
+<p>Gets the field name for a column name.
+If no field name can be found the column name is returned.</p><dl>
+<dt>Parameters:</dt>
+<dd>columnName - column name</dd>
+<dt>Returns:</dt>
+<dd>column alias</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 661</div>
+<h3 id="getIdentifierColumnNames()">getIdentifierColumnNames</h3>
+<code class="signature">public  array <strong>getIdentifierColumnNames</strong>()</code>
+<div class="details">
+<p>Returns an array with all the identifier column names.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 584</div>
+<h3 id="getIdentifierFieldNames()">getIdentifierFieldNames</h3>
+<code class="signature">public  mixed <strong>getIdentifierFieldNames</strong>()</code>
+<div class="details">
+<p>Gets the identifier (primary key) field names of the class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1082</div>
+<h3 id="getLifecycleCallbacks()">getLifecycleCallbacks</h3>
+<code class="signature">public  array <strong>getLifecycleCallbacks</strong>(string event)</code>
+<div class="details">
+<p>Gets the registered lifecycle callbacks for an event.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 611</div>
+<h3 id="getSingleIdentifierColumnName()">getSingleIdentifierColumnName</h3>
+<code class="signature">public  string <strong>getSingleIdentifierColumnName</strong>()</code>
+<div class="details">
+<p>Gets the column name of the single id column. Note that this only works on
+entity classes that have a single-field pk.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../../doctrine/orm/mapping/mappingexception.html">If the class has a composite primary key.</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 596</div>
+<h3 id="getSingleIdentifierFieldName()">getSingleIdentifierFieldName</h3>
+<code class="signature">public  string <strong>getSingleIdentifierFieldName</strong>()</code>
+<div class="details">
+<p>Gets the name of the single id field. Note that this only works on
+entity classes that have a single-field pk.</p><dl>
+<dt>Throws:</dt>
+<dd><a href="../../../doctrine/orm/mapping/mappingexception.html">If the class has a composite primary key.</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 801</div>
+<h3 id="getTableName()">getTableName</h3>
+<code class="signature">public  string <strong>getTableName</strong>()</code>
+<div class="details">
+<p>Gets the name of the primary table.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 811</div>
+<h3 id="getTemporaryIdTableName()">getTemporaryIdTableName</h3>
+<code class="signature">public  string <strong>getTemporaryIdTableName</strong>()</code>
+<div class="details">
+<p>Gets the table name to use for temporary identifier tables of this class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 791</div>
+<h3 id="getTypeOfColumn()">getTypeOfColumn</h3>
+<code class="signature">public  Doctrine\DBAL\Types\Type <strong>getTypeOfColumn</strong>(mixed columnName)</code>
+<div class="details">
+<p>Gets the type of a column.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 780</div>
+<h3 id="getTypeOfField()">getTypeOfField</h3>
+<code class="signature">public  Doctrine\DBAL\Types\Type <strong>getTypeOfField</strong>(string fieldName)</code>
+<div class="details">
+<p>Gets the type of a field.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1167</div>
+<h3 id="hasAssociation()">hasAssociation</h3>
+<code class="signature">public  boolean <strong>hasAssociation</strong>(string fieldName)</code>
+<div class="details">
+<p>Checks whether the class has a mapped association with the given field name.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 633</div>
+<h3 id="hasField()">hasField</h3>
+<code class="signature">public  boolean <strong>hasField</strong>(mixed fieldName)</code>
+<div class="details">
+<p>Checks whether the class has a (mapped) field with a certain name.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1071</div>
+<h3 id="hasLifecycleCallbacks()">hasLifecycleCallbacks</h3>
+<code class="signature">public  boolean <strong>hasLifecycleCallbacks</strong>(string lifecycleEvent)</code>
+<div class="details">
+<p>Whether the class has any attached lifecycle listeners or callbacks for a lifecycle event.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1058</div>
+<h3 id="invokeLifecycleCallbacks()">invokeLifecycleCallbacks</h3>
+<code class="signature">public  void <strong>invokeLifecycleCallbacks</strong>(mixed lifecycleEvent, <a href="../../../doctrine/orm/mapping/entity.html">Entity</a> entity, string event)</code>
+<div class="details">
+<p>Dispatches the lifecycle event of the given entity to the registered
+lifecycle callbacks and lifecycle listeners.</p><dl>
+<dt>Parameters:</dt>
+<dd>event - The lifecycle event.</dd>
+<dd>entity - The Entity on which the event occured.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 396</div>
+<h3 id="isChangeTrackingDeferredExplicit()">isChangeTrackingDeferredExplicit</h3>
+<code class="signature">public  boolean <strong>isChangeTrackingDeferredExplicit</strong>()</code>
+<div class="details">
+<p>Whether the change tracking policy of this class is "deferred explicit".</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 406</div>
+<h3 id="isChangeTrackingDeferredImplicit()">isChangeTrackingDeferredImplicit</h3>
+<code class="signature">public  boolean <strong>isChangeTrackingDeferredImplicit</strong>()</code>
+<div class="details">
+<p>Whether the change tracking policy of this class is "deferred implicit".</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 416</div>
+<h3 id="isChangeTrackingNotify()">isChangeTrackingNotify</h3>
+<code class="signature">public  boolean <strong>isChangeTrackingNotify</strong>()</code>
+<div class="details">
+<p>Whether the change tracking policy of this class is "notify".</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1192</div>
+<h3 id="isCollectionValuedAssociation()">isCollectionValuedAssociation</h3>
+<code class="signature">public  boolean <strong>isCollectionValuedAssociation</strong>(string fieldName)</code>
+<div class="details">
+<p>Checks whether the class has a mapped association for the specified field
+and if yes, checks whether it is a collection-valued association (to-many).</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the association exists and is collection-valued, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 738</div>
+<h3 id="isIdGeneratorIdentity()">isIdGeneratorIdentity</h3>
+<code class="signature">public  boolean <strong>isIdGeneratorIdentity</strong>()</code>
+<div class="details">
+<p>Checks whether the class uses an identity column for the Id generation.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the class uses the IDENTITY generator, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 748</div>
+<h3 id="isIdGeneratorSequence()">isIdGeneratorSequence</h3>
+<code class="signature">public  boolean <strong>isIdGeneratorSequence</strong>()</code>
+<div class="details">
+<p>Checks whether the class uses a sequence for id generation.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the class uses the SEQUENCE generator, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 758</div>
+<h3 id="isIdGeneratorTable()">isIdGeneratorTable</h3>
+<code class="signature">public  boolean <strong>isIdGeneratorTable</strong>()</code>
+<div class="details">
+<p>Checks whether the class uses a table for id generation.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the class uses the TABLE generator, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 428</div>
+<h3 id="isIdentifier()">isIdentifier</h3>
+<code class="signature">public  boolean <strong>isIdentifier</strong>(string fieldName)</code>
+<div class="details">
+<p>Checks whether a field is part of the identifier/primary key field(s).</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldName - The field name</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the field is part of the table identifier/primary key field(s), FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 769</div>
+<h3 id="isIdentifierNatural()">isIdentifierNatural</h3>
+<code class="signature">public  boolean <strong>isIdentifierNatural</strong>()</code>
+<div class="details">
+<p>Checks whether the class has a natural identifier/pk (which means it does
+not use any Id generator.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 706</div>
+<h3 id="isInheritanceTypeJoined()">isInheritanceTypeJoined</h3>
+<code class="signature">public  boolean <strong>isInheritanceTypeJoined</strong>()</code>
+<div class="details">
+<p>Checks whether the mapped class uses the JOINED inheritance mapping strategy.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the class participates in a JOINED inheritance mapping, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 695</div>
+<h3 id="isInheritanceTypeNone()">isInheritanceTypeNone</h3>
+<code class="signature">public  boolean <strong>isInheritanceTypeNone</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 717</div>
+<h3 id="isInheritanceTypeSingleTable()">isInheritanceTypeSingleTable</h3>
+<code class="signature">public  boolean <strong>isInheritanceTypeSingleTable</strong>()</code>
+<div class="details">
+<p>Checks whether the mapped class uses the SINGLE_TABLE inheritance mapping strategy.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the class participates in a SINGLE_TABLE inheritance mapping, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 728</div>
+<h3 id="isInheritanceTypeTablePerClass()">isInheritanceTypeTablePerClass</h3>
+<code class="signature">public  boolean <strong>isInheritanceTypeTablePerClass</strong>()</code>
+<div class="details">
+<p>Checks whether the mapped class uses the TABLE_PER_CLASS inheritance mapping strategy.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the class participates in a TABLE_PER_CLASS inheritance mapping, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 874</div>
+<h3 id="isInheritedAssociation()">isInheritedAssociation</h3>
+<code class="signature">public  boolean <strong>isInheritedAssociation</strong>(string fieldName)</code>
+<div class="details">
+<p>Checks whether a mapped association field is inherited from a superclass.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the field is inherited, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 863</div>
+<h3 id="isInheritedField()">isInheritedField</h3>
+<code class="signature">public  boolean <strong>isInheritedField</strong>(mixed fieldName)</code>
+<div class="details">
+<p>Checks whether a mapped field is inherited from an entity superclass.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the field is inherited, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 457</div>
+<h3 id="isNullable()">isNullable</h3>
+<code class="signature">public  boolean <strong>isNullable</strong>(string fieldName)</code>
+<div class="details">
+<p>Check if the field is not null.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldName - The field name</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the field is not null, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1179</div>
+<h3 id="isSingleValuedAssociation()">isSingleValuedAssociation</h3>
+<code class="signature">public  boolean <strong>isSingleValuedAssociation</strong>(string fieldName)</code>
+<div class="details">
+<p>Checks whether the class has a mapped association for the specified field
+and if yes, checks whether it is a single-valued association (to-one).</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the association exists and is single-valued, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 442</div>
+<h3 id="isUniqueField()">isUniqueField</h3>
+<code class="signature">public  boolean <strong>isUniqueField</strong>(string fieldName)</code>
+<div class="details">
+<p>Check if the field is unique.</p><dl>
+<dt>Parameters:</dt>
+<dd>fieldName - The field name</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the field is unique, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 940</div>
+<h3 id="mapField()">mapField</h3>
+<code class="signature">public  void <strong>mapField</strong>(array mapping)</code>
+<div class="details">
+<p>Adds a mapped field to the class.</p><dl>
+<dt>Parameters:</dt>
+<dd>mapping - The field mapping.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1020</div>
+<h3 id="mapManyToMany()">mapManyToMany</h3>
+<code class="signature">public  void <strong>mapManyToMany</strong>(array mapping)</code>
+<div class="details">
+<p>Adds a many-to-many mapping.</p><dl>
+<dt>Parameters:</dt>
+<dd>mapping - The mapping.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1009</div>
+<h3 id="mapManyToOne()">mapManyToOne</h3>
+<code class="signature">public  void <strong>mapManyToOne</strong>(array mapping)</code>
+<div class="details">
+<p>Adds a many-to-one mapping.</p><dl>
+<dt>Parameters:</dt>
+<dd>mapping - The mapping.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 997</div>
+<h3 id="mapOneToMany()">mapOneToMany</h3>
+<code class="signature">public  void <strong>mapOneToMany</strong>(array mapping)</code>
+<div class="details">
+<p>Adds a one-to-many mapping.</p><dl>
+<dt>Parameters:</dt>
+<dd>mapping - The mapping.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 985</div>
+<h3 id="mapOneToOne()">mapOneToOne</h3>
+<code class="signature">public  void <strong>mapOneToOne</strong>(array mapping)</code>
+<div class="details">
+<p>Adds a one-to-one mapping.</p><dl>
+<dt>Parameters:</dt>
+<dd>mapping - The mapping.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 386</div>
+<h3 id="setChangeTrackingPolicy()">setChangeTrackingPolicy</h3>
+<code class="signature">public  void <strong>setChangeTrackingPolicy</strong>(integer policy)</code>
+<div class="details">
+<p>Sets the change tracking policy used by this class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1046</div>
+<h3 id="setCustomRepositoryClass()">setCustomRepositoryClass</h3>
+<code class="signature">public  void <strong>setCustomRepositoryClass</strong>(mixed repositoryClassName, string mapperClassName)</code>
+<div class="details">
+<p>Registers a custom repository class for the entity class.</p><dl>
+<dt>Parameters:</dt>
+<dd>mapperClassName - The class name of the custom mapper.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1118</div>
+<h3 id="setDiscriminatorColumn()">setDiscriminatorColumn</h3>
+<code class="signature">public  void <strong>setDiscriminatorColumn</strong>(array columnDef)</code>
+<div class="details">
+<p>Sets the discriminator column definition.</p><dl>
+<dt>See Also:</dt>
+<dd>getDiscriminatorColumn()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1141</div>
+<h3 id="setDiscriminatorMap()">setDiscriminatorMap</h3>
+<code class="signature">public  void <strong>setDiscriminatorMap</strong>(array map)</code>
+<div class="details">
+<p>Sets the discriminator values used by this class.
+Used for JOINED and SINGLE_TABLE inheritance mapping strategies.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1203</div>
+<h3 id="setIdGenerator()">setIdGenerator</h3>
+<code class="signature">public  void <strong>setIdGenerator</strong>(<a href="../../../doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator</a> generator)</code>
+<div class="details">
+<p>Sets the ID generator used to generate IDs for instances of this class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 677</div>
+<h3 id="setIdGeneratorType()">setIdGeneratorType</h3>
+<code class="signature">public  void <strong>setIdGeneratorType</strong>(mixed generatorType)</code>
+<div class="details">
+<p>Sets the type of Id generator to use for the mapped class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 623</div>
+<h3 id="setIdentifier()">setIdentifier</h3>
+<code class="signature">public  void <strong>setIdentifier</strong>(array identifier)</code>
+<div class="details">
+<p>INTERNAL:
+Sets the mapped identifier/primary key fields of this class.
+Mainly used by the ClassMetadataFactory to assign inherited identifiers.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 850</div>
+<h3 id="setInheritanceType()">setInheritanceType</h3>
+<code class="signature">public  void <strong>setInheritanceType</strong>(integer type)</code>
+<div class="details">
+<p>Sets the inheritance type used by the class and it's subclasses.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1107</div>
+<h3 id="setLifecycleCallbacks()">setLifecycleCallbacks</h3>
+<code class="signature">public  void <strong>setLifecycleCallbacks</strong>(array callbacks)</code>
+<div class="details">
+<p>Sets the lifecycle callbacks for entities of this class.
+Any previously registered callbacks are overwritten.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 837</div>
+<h3 id="setParentClasses()">setParentClasses</h3>
+<code class="signature">public  void <strong>setParentClasses</strong>(mixed classNames)</code>
+<div class="details">
+<p>Sets the parent class names.
+Assumes that the class names in the passed array are in the order:
+directParent -> directParentParent -> directParentParentParent ... -> root.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 900</div>
+<h3 id="setPrimaryTable()">setPrimaryTable</h3>
+<code class="signature">public  void <strong>setPrimaryTable</strong>(array primaryTableDefinition)</code>
+<div class="details">
+<p>Sets the primary table definition. The provided array must have the
+following structure:</p><p>name => <tableName>
+schema => <schemaName>
+catalog => <catalogName></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1222</div>
+<h3 id="setSequenceGeneratorDefinition()">setSequenceGeneratorDefinition</h3>
+<code class="signature">public  void <strong>setSequenceGeneratorDefinition</strong>(array definition)</code>
+<div class="details">
+<p>Sets the definition of the sequence ID generator for this class.</p><p>The definition must have the following structure:
+<code>
+array(
+'sequenceName' => 'name',
+'allocationSize' => 20,
+'initialValue' => 1
+)
+</code></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 821</div>
+<h3 id="setSubclasses()">setSubclasses</h3>
+<code class="signature">public  void <strong>setSubclasses</strong>(array subclasses)</code>
+<div class="details">
+<p>Sets the mapped subclasses of this class.</p><dl>
+<dt>Parameters:</dt>
+<dd>subclasses - The names of all mapped subclasses.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 885</div>
+<h3 id="setTableName()">setTableName</h3>
+<code class="signature">public  void <strong>setTableName</strong>(string tableName)</code>
+<div class="details">
+<p>Sets the name of the primary table the class is mapped to.</p><dl>
+<dt>Parameters:</dt>
+<dd>tableName - The table name.</dd>
+<dt>Deprecated.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1265</div>
+<h3 id="setVersionField()">setVersionField</h3>
+<code class="signature">public  void <strong>setVersionField</strong>(string versionField)</code>
+<div class="details">
+<p>Sets the name of the field that is to be used for versioning if this class is
+versioned for optimistic locking.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1233</div>
+<h3 id="setVersionMapping()">setVersionMapping</h3>
+<code class="signature">public  void <strong>setVersionMapping</strong>(array mapping)</code>
+<div class="details">
+<p>Sets the version field mapping used for versioning. Sets the default
+value to use depending on the column type.</p><dl>
+<dt>Parameters:</dt>
+<dd>mapping - The version field mapping array</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 1254</div>
+<h3 id="setVersioned()">setVersioned</h3>
+<code class="signature">public  void <strong>setVersioned</strong>(boolean bool)</code>
+<div class="details">
+<p>Sets whether this class is to be versioned for optimistic locking.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ClassMetadataInfo.php at line 687</div>
+<h3 id="usesIdGenerator()">usesIdGenerator</h3>
+<code class="signature">public  boolean <strong>usesIdGenerator</strong>()</code>
+<div class="details">
+<p>Checks whether the mapped class uses an Id generator.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the mapped class uses an Id generator, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/classmetadatainfo.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/column.html b/lib/api/doctrine/orm/mapping/column.html
new file mode 100644
index 000000000..20c6d2913
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/column.html
@@ -0,0 +1,214 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Column (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/column.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Column</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 56</div>
+
+<h1>Class Column</h1>
+
+<pre class="tree">Class:Column - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>Column</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>Column</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#columnDefinition">$columnDefinition</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#length">$length</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#nullable">$nullable</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#options">$options</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#precision">$precision</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#scale">$scale</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#type">$type</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#unique">$unique</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 67</div>
+<h3 id="columnDefinition">columnDefinition</h3>
+<code class="signature">public  mixed <strong>$columnDefinition</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 58</div>
+<h3 id="length">length</h3>
+<code class="signature">public  mixed <strong>$length</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 65</div>
+<h3 id="name">name</h3>
+<code class="signature">public  mixed <strong>$name</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 64</div>
+<h3 id="nullable">nullable</h3>
+<code class="signature">public  mixed <strong>$nullable</strong> = false</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 66</div>
+<h3 id="options">options</h3>
+<code class="signature">public  mixed <strong>$options</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 60</div>
+<h3 id="precision">precision</h3>
+<code class="signature">public  mixed <strong>$precision</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 62</div>
+<h3 id="scale">scale</h3>
+<code class="signature">public  mixed <strong>$scale</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 57</div>
+<h3 id="type">type</h3>
+<code class="signature">public  mixed <strong>$type</strong> = 'string'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 63</div>
+<h3 id="unique">unique</h3>
+<code class="signature">public  mixed <strong>$unique</strong> = false</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/column.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/discriminatorcolumn.html b/lib/api/doctrine/orm/mapping/discriminatorcolumn.html
new file mode 100644
index 000000000..8f0d7ffbd
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/discriminatorcolumn.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>DiscriminatorColumn (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/discriminatorcolumn.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\DiscriminatorColumn</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 33</div>
+
+<h1>Class DiscriminatorColumn</h1>
+
+<pre class="tree">Class:DiscriminatorColumn - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>DiscriminatorColumn</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>DiscriminatorColumn</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fieldName">$fieldName</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#length">$length</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#type">$type</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 35</div>
+<h3 id="fieldName">fieldName</h3>
+<code class="signature">public  mixed <strong>$fieldName</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 37</div>
+<h3 id="length">length</h3>
+<code class="signature">public  mixed <strong>$length</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 34</div>
+<h3 id="name">name</h3>
+<code class="signature">public  mixed <strong>$name</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 36</div>
+<h3 id="type">type</h3>
+<code class="signature">public  mixed <strong>$type</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/discriminatorcolumn.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/discriminatormap.html b/lib/api/doctrine/orm/mapping/discriminatormap.html
new file mode 100644
index 000000000..a04d4b858
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/discriminatormap.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>DiscriminatorMap (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/discriminatormap.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\DiscriminatorMap</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 39</div>
+
+<h1>Class DiscriminatorMap</h1>
+
+<pre class="tree">Class:DiscriminatorMap - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>DiscriminatorMap</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>DiscriminatorMap</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/discriminatormap.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/abstractfiledriver.html b/lib/api/doctrine/orm/mapping/driver/abstractfiledriver.html
new file mode 100644
index 000000000..31457b7ac
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/abstractfiledriver.html
@@ -0,0 +1,262 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>AbstractFileDriver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Driver\AbstractFileDriver</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 43</div>
+
+<h1>Class AbstractFileDriver</h1>
+
+<pre class="tree"><strong>AbstractFileDriver</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractFileDriver</strong></p>
+
+<div class="comment" id="overview_description"><p>Base driver for file-based metadata drivers.</p><p>A file driver operates in a mode where it loads the mapping files of individual
+classes on demand. This requires the user to adhere to the convention of 1 mapping
+file per class and the file names of the mapping files must correspond to the full
+class name, including namespace, with the namespace delimiters '\', replaced by dots '.'.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author		Benjamin:</dt>
+<dd>Eberlei <kontakt@beberlei.de></dd>
+<dt>Author		Guilherme:</dt>
+<dd>Blanco <guilhermeblanco@hotmail.com></dd>
+<dt>Author:</dt>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_fileExtension">$_fileExtension</a></p><p class="description">The file extension of mapping documents.</p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_paths">$_paths</a></p><p class="description">The paths where to look for mapping files.</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AbstractFileDriver()">AbstractFileDriver</a>(string|array paths)</p><p class="description">Initializes a new FileDriver that looks in the given path(s) for mapping 
+documents and operates in the specified operating mode.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addPaths()">addPaths</a>(array paths)</p><p class="description">Append lookup paths to metadata driver.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getAllClassNames()">getAllClassNames</a>()</p><p class="description">Gets the names of all mapped classes known to this driver.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getElement()">getElement</a>(mixed className)</p><p class="description">Get the element of schema meta data for the class from the mapping file.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getFileExtension()">getFileExtension</a>()</p><p class="description">Get the file extension used to look for mapping files under</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getPaths()">getPaths</a>()</p><p class="description">Retrieve the defined metadata lookup paths.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isTransient()">isTransient</a>(string className)</p><p class="description">Whether the class with the specified name should have its metadata loaded.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setFileExtension()">setFileExtension</a>(string fileExtension)</p><p class="description">Set the file extension used to look for mapping files under</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 57</div>
+<h3 id="_fileExtension">_fileExtension</h3>
+<code class="signature">protected  string <strong>$_fileExtension</strong></code>
+<div class="details">
+<p>The file extension of mapping documents.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 50</div>
+<h3 id="_paths">_paths</h3>
+<code class="signature">protected  array <strong>$_paths</strong> = array()</code>
+<div class="details">
+<p>The paths where to look for mapping files.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 65</div>
+<h3 id="AbstractFileDriver()">AbstractFileDriver</h3>
+<code class="signature">public <strong>AbstractFileDriver</strong>(string|array paths)</code>
+<div class="details">
+<p>Initializes a new FileDriver that looks in the given path(s) for mapping 
+documents and operates in the specified operating mode.</p><dl>
+<dt>Parameters:</dt>
+<dd>paths - One or multiple paths where mapping documents can be found.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 75</div>
+<h3 id="addPaths()">addPaths</h3>
+<code class="signature">public  void <strong>addPaths</strong>(array paths)</code>
+<div class="details">
+<p>Append lookup paths to metadata driver.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 151</div>
+<h3 id="getAllClassNames()">getAllClassNames</h3>
+<code class="signature">public  array <strong>getAllClassNames</strong>()</code>
+<div class="details">
+<p>Gets the names of all mapped classes known to this driver.</p><dl>
+<dt>Returns:</dt>
+<dd>The names of all mapped classes known to this driver.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 117</div>
+<h3 id="getElement()">getElement</h3>
+<code class="signature">public  array <strong>getElement</strong>(mixed className)</code>
+<div class="details">
+<p>Get the element of schema meta data for the class from the mapping file.
+This will lazily load the mapping file if it is not loaded yet</p><dl>
+<dt>Returns:</dt>
+<dd>$element The element of schema meta data</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 95</div>
+<h3 id="getFileExtension()">getFileExtension</h3>
+<code class="signature">public  void <strong>getFileExtension</strong>()</code>
+<div class="details">
+<p>Get the file extension used to look for mapping files under</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 85</div>
+<h3 id="getPaths()">getPaths</h3>
+<code class="signature">public  array <strong>getPaths</strong>()</code>
+<div class="details">
+<p>Retrieve the defined metadata lookup paths.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 132</div>
+<h3 id="isTransient()">isTransient</h3>
+<code class="signature">public  boolean <strong>isTransient</strong>(string className)</code>
+<div class="details">
+<p>Whether the class with the specified name should have its metadata loaded.
+This is only the case if it is either mapped as an Entity or a
+MappedSuperclass.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AbstractFileDriver.php at line 106</div>
+<h3 id="setFileExtension()">setFileExtension</h3>
+<code class="signature">public  void <strong>setFileExtension</strong>(string fileExtension)</code>
+<div class="details">
+<p>Set the file extension used to look for mapping files under</p><dl>
+<dt>Parameters:</dt>
+<dd>fileExtension - The file extension to set</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/annotationdriver.html b/lib/api/doctrine/orm/mapping/driver/annotationdriver.html
new file mode 100644
index 000000000..7c537ed58
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/annotationdriver.html
@@ -0,0 +1,277 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>AnnotationDriver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/annotationdriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Driver\AnnotationDriver</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 43</div>
+
+<h1>Class AnnotationDriver</h1>
+
+<pre class="tree"><strong>AnnotationDriver</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>AnnotationDriver</strong></p>
+
+<div class="comment" id="overview_description"><p>The AnnotationDriver reads the mapping metadata from docblock annotations.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author		Benjamin:</dt>
+<dd>Eberlei <kontakt@beberlei.de></dd>
+<dt>Author		Guilherme:</dt>
+<dd>Blanco <guilhermeblanco@hotmail.com></dd>
+<dt>Author:</dt>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_classNames">$_classNames</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_fileExtension">$_fileExtension</a></p><p class="description">The file extension of mapping documents.</p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_paths">$_paths</a></p><p class="description">The paths where to look for mapping files.</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AnnotationDriver()">AnnotationDriver</a>(mixed reader, string|array paths, $reader The)</p><p class="description">Initializes a new AnnotationDriver that uses the given AnnotationReader for reading
+docblock annotations.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addPaths()">addPaths</a>(array paths)</p><p class="description">Append lookup paths to metadata driver.</p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../../doctrine/orm/mapping/driver/annotationdriver.html">AnnotationDriver</a></td>
+<td class="description"><p class="name"><a href="#create()">create</a>(array|string paths, <a href="../../../../doctrine/common/annotations/annotationreader.html">AnnotationReader</a> reader)</p><p class="description">Factory method for the Annotation Driver</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getAllClassNames()">getAllClassNames</a>()</p><p class="description">{@inheritDoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getFileExtension()">getFileExtension</a>()</p><p class="description">Get the file extension used to look for mapping files under</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getPaths()">getPaths</a>()</p><p class="description">Retrieve the defined metadata lookup paths.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isTransient()">isTransient</a>(string className)</p><p class="description">Whether the class with the specified name is transient. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#loadMetadataForClass()">loadMetadataForClass</a>(mixed className, mixed metadata)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setFileExtension()">setFileExtension</a>(string fileExtension)</p><p class="description">Set the file extension used to look for mapping files under</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 69</div>
+<h3 id="_classNames">_classNames</h3>
+<code class="signature">protected  mixed <strong>$_classNames</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 64</div>
+<h3 id="_fileExtension">_fileExtension</h3>
+<code class="signature">protected  string <strong>$_fileExtension</strong> = '.php'</code>
+<div class="details">
+<p>The file extension of mapping documents.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 57</div>
+<h3 id="_paths">_paths</h3>
+<code class="signature">protected  array <strong>$_paths</strong> = array()</code>
+<div class="details">
+<p>The paths where to look for mapping files.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 78</div>
+<h3 id="AnnotationDriver()">AnnotationDriver</h3>
+<code class="signature">public <strong>AnnotationDriver</strong>(mixed reader, string|array paths, $reader The)</code>
+<div class="details">
+<p>Initializes a new AnnotationDriver that uses the given AnnotationReader for reading
+docblock annotations.</p><dl>
+<dt>Parameters:</dt>
+<dd>The - AnnotationReader to use.</dd>
+<dd>paths - One or multiple paths where mapping classes can be found.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 91</div>
+<h3 id="addPaths()">addPaths</h3>
+<code class="signature">public  void <strong>addPaths</strong>(array paths)</code>
+<div class="details">
+<p>Append lookup paths to metadata driver.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 481</div>
+<h3 id="create()">create</h3>
+<code class="signature">public static  <a href="../../../../doctrine/orm/mapping/driver/annotationdriver.html">AnnotationDriver</a> <strong>create</strong>(array|string paths, <a href="../../../../doctrine/common/annotations/annotationreader.html">AnnotationReader</a> reader)</code>
+<div class="details">
+<p>Factory method for the Annotation Driver</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 425</div>
+<h3 id="getAllClassNames()">getAllClassNames</h3>
+<code class="signature">public  void <strong>getAllClassNames</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 111</div>
+<h3 id="getFileExtension()">getFileExtension</h3>
+<code class="signature">public  void <strong>getFileExtension</strong>()</code>
+<div class="details">
+<p>Get the file extension used to look for mapping files under</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 101</div>
+<h3 id="getPaths()">getPaths</h3>
+<code class="signature">public  array <strong>getPaths</strong>()</code>
+<div class="details">
+<p>Retrieve the defined metadata lookup paths.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 414</div>
+<h3 id="isTransient()">isTransient</h3>
+<code class="signature">public  boolean <strong>isTransient</strong>(string className)</code>
+<div class="details">
+<p>Whether the class with the specified name is transient. Only non-transient
+classes, that is entities and mapped superclasses, should have their metadata loaded.
+A class is non-transient if it is annotated with either @Entity or</p><dl>
+<dt>MappedSuperclass:</dt>
+<dd>in the class doc block.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 130</div>
+<h3 id="loadMetadataForClass()">loadMetadataForClass</h3>
+<code class="signature">public  void <strong>loadMetadataForClass</strong>(mixed className, mixed metadata)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/AnnotationDriver.php at line 122</div>
+<h3 id="setFileExtension()">setFileExtension</h3>
+<code class="signature">public  void <strong>setFileExtension</strong>(string fileExtension)</code>
+<div class="details">
+<p>Set the file extension used to look for mapping files under</p><dl>
+<dt>Parameters:</dt>
+<dd>fileExtension - The file extension to set</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/annotationdriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/databasedriver.html b/lib/api/doctrine/orm/mapping/driver/databasedriver.html
new file mode 100644
index 000000000..9f6e8c6b2
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/databasedriver.html
@@ -0,0 +1,161 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>DatabaseDriver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/databasedriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Driver\DatabaseDriver</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php at line 41</div>
+
+<h1>Class DatabaseDriver</h1>
+
+<pre class="tree"><strong>DatabaseDriver</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>DatabaseDriver</strong></p>
+
+<div class="comment" id="overview_description"><p>The DatabaseDriver reverse engineers the mapping metadata from a database.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#DatabaseDriver()">DatabaseDriver</a>(mixed schemaManager, <a href="../../../../doctrine/common/annotations/annotationreader.html">AnnotationReader</a> reader)</p><p class="description">Initializes a new AnnotationDriver that uses the given AnnotationReader for reading
+docblock annotations.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getAllClassNames()">getAllClassNames</a>()</p><p class="description">{@inheritDoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isTransient()">isTransient</a>(mixed className)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#loadMetadataForClass()">loadMetadataForClass</a>(mixed className, mixed metadata)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php at line 52</div>
+<h3 id="DatabaseDriver()">DatabaseDriver</h3>
+<code class="signature">public <strong>DatabaseDriver</strong>(mixed schemaManager, <a href="../../../../doctrine/common/annotations/annotationreader.html">AnnotationReader</a> reader)</code>
+<div class="details">
+<p>Initializes a new AnnotationDriver that uses the given AnnotationReader for reading
+docblock annotations.</p><dl>
+<dt>Parameters:</dt>
+<dd>reader - The AnnotationReader to use.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php at line 158</div>
+<h3 id="getAllClassNames()">getAllClassNames</h3>
+<code class="signature">public  void <strong>getAllClassNames</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php at line 150</div>
+<h3 id="isTransient()">isTransient</h3>
+<code class="signature">public  void <strong>isTransient</strong>(mixed className)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DatabaseDriver.php at line 60</div>
+<h3 id="loadMetadataForClass()">loadMetadataForClass</h3>
+<code class="signature">public  void <strong>loadMetadataForClass</strong>(mixed className, mixed metadata)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/databasedriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/driver.html b/lib/api/doctrine/orm/mapping/driver/driver.html
new file mode 100644
index 000000000..9af81ce02
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/driver.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Driver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Driver\Driver</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/Driver.php at line 36</div>
+
+<h1>Interface Driver</h1>
+
+<pre class="tree"><strong>Driver</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>Driver</strong></p>
+
+<div class="comment" id="overview_description"><p>Contract for metadata drivers.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 1393 $</dd>
+<dt>Author:</dt>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dt>Todo:</dt>
+<dd>Rename: MetadataDriver</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getAllClassNames()">getAllClassNames</a>()</p><p class="description">Gets the names of all mapped classes known to this driver.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isTransient()">isTransient</a>(string className)</p><p class="description">Whether the class with the specified name should have its metadata loaded.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#loadMetadataForClass()">loadMetadataForClass</a>(string className, <a href="../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</p><p class="description">Loads the metadata for the specified class into the provided container.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/Driver.php at line 51</div>
+<h3 id="getAllClassNames()">getAllClassNames</h3>
+<code class="signature">public  array <strong>getAllClassNames</strong>()</code>
+<div class="details">
+<p>Gets the names of all mapped classes known to this driver.</p><dl>
+<dt>Returns:</dt>
+<dd>The names of all mapped classes known to this driver.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/Driver.php at line 61</div>
+<h3 id="isTransient()">isTransient</h3>
+<code class="signature">public  boolean <strong>isTransient</strong>(string className)</code>
+<div class="details">
+<p>Whether the class with the specified name should have its metadata loaded.
+This is only the case if it is either mapped as an Entity or a
+MappedSuperclass.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/Driver.php at line 44</div>
+<h3 id="loadMetadataForClass()">loadMetadataForClass</h3>
+<code class="signature">public  void <strong>loadMetadataForClass</strong>(string className, <a href="../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</code>
+<div class="details">
+<p>Loads the metadata for the specified class into the provided container.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/driver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/driverchain.html b/lib/api/doctrine/orm/mapping/driver/driverchain.html
new file mode 100644
index 000000000..d234089e7
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/driverchain.html
@@ -0,0 +1,179 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>DriverChain (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/driverchain.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Driver\DriverChain</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DriverChain.php at line 41</div>
+
+<h1>Class DriverChain</h1>
+
+<pre class="tree"><strong>DriverChain</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Driver </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>DriverChain</strong></p>
+
+<div class="comment" id="overview_description"><p>The DriverChain allows you to add multiple other mapping drivers for
+certain namespaces</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author		Benjamin:</dt>
+<dd>Eberlei <kontakt@beberlei.de></dd>
+<dt>Author		Guilherme:</dt>
+<dd>Blanco <guilhermeblanco@hotmail.com></dd>
+<dt>Author:</dt>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addDriver()">addDriver</a>(<a href="../../../../doctrine/dbal/driver.html">Driver</a> nestedDriver, string namespace)</p><p class="description">Add a nested driver.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getAllClassNames()">getAllClassNames</a>()</p><p class="description">Gets the names of all mapped classes known to this driver.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getDrivers()">getDrivers</a>()</p><p class="description">Get the array of nested drivers.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isTransient()">isTransient</a>(string className)</p><p class="description">Whether the class with the specified name should have its metadata loaded.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#loadMetadataForClass()">loadMetadataForClass</a>(string className, <a href="../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</p><p class="description">Loads the metadata for the specified class into the provided container.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DriverChain.php at line 54</div>
+<h3 id="addDriver()">addDriver</h3>
+<code class="signature">public  void <strong>addDriver</strong>(<a href="../../../../doctrine/dbal/driver.html">Driver</a> nestedDriver, string namespace)</code>
+<div class="details">
+<p>Add a nested driver.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DriverChain.php at line 92</div>
+<h3 id="getAllClassNames()">getAllClassNames</h3>
+<code class="signature">public  array <strong>getAllClassNames</strong>()</code>
+<div class="details">
+<p>Gets the names of all mapped classes known to this driver.</p><dl>
+<dt>Returns:</dt>
+<dd>The names of all mapped classes known to this driver.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DriverChain.php at line 64</div>
+<h3 id="getDrivers()">getDrivers</h3>
+<code class="signature">public  array <strong>getDrivers</strong>()</code>
+<div class="details">
+<p>Get the array of nested drivers.</p><dl>
+<dt>Returns:</dt>
+<dd>$drivers</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DriverChain.php at line 109</div>
+<h3 id="isTransient()">isTransient</h3>
+<code class="signature">public  boolean <strong>isTransient</strong>(string className)</code>
+<div class="details">
+<p>Whether the class with the specified name should have its metadata loaded.
+This is only the case if it is either mapped as an Entity or a
+MappedSuperclass.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DriverChain.php at line 75</div>
+<h3 id="loadMetadataForClass()">loadMetadataForClass</h3>
+<code class="signature">public  void <strong>loadMetadataForClass</strong>(string className, <a href="../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</code>
+<div class="details">
+<p>Loads the metadata for the specified class into the provided container.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/driverchain.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/package-frame.html b/lib/api/doctrine/orm/mapping/driver/package-frame.html
new file mode 100644
index 000000000..739ea7891
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/package-frame.html
@@ -0,0 +1,37 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Mapping\Driver (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Mapping\Driver</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html" target="main">AbstractFileDriver</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/annotationdriver.html" target="main">AnnotationDriver</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/databasedriver.html" target="main">DatabaseDriver</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/driverchain.html" target="main">DriverChain</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/phpdriver.html" target="main">PhpDriver</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/xmldriver.html" target="main">XmlDriver</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/yamldriver.html" target="main">YamlDriver</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../../../doctrine/orm/mapping/driver/driver.html" target="main">Driver</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/package-functions.html b/lib/api/doctrine/orm/mapping/driver/package-functions.html
new file mode 100644
index 000000000..65198ab77
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/package-globals.html b/lib/api/doctrine/orm/mapping/driver/package-globals.html
new file mode 100644
index 000000000..d868b741d
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/package-summary.html b/lib/api/doctrine/orm/mapping/driver/package-summary.html
new file mode 100644
index 000000000..a546bef43
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/package-summary.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Mapping\Driver (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Mapping\Driver</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html">AbstractFileDriver</a></td><td class="description">Base driver for file-based metadata drivers.
+</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/mapping/driver/annotationdriver.html">AnnotationDriver</a></td><td class="description">The AnnotationDriver reads the mapping metadata from docblock annotations.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/mapping/driver/databasedriver.html">DatabaseDriver</a></td><td class="description">The DatabaseDriver reverse engineers the mapping metadata from a database.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/mapping/driver/driverchain.html">DriverChain</a></td><td class="description">The DriverChain allows you to add multiple other mapping drivers for
+certain namespaces</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/mapping/driver/phpdriver.html">PhpDriver</a></td><td class="description">The PhpDriver includes php files which just populate ClassMetadataInfo
+instances with plain php code</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/mapping/driver/xmldriver.html">XmlDriver</a></td><td class="description">XmlDriver is a metadata driver that enables mapping through XML files.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/mapping/driver/yamldriver.html">YamlDriver</a></td><td class="description">The YamlDriver reads the mapping metadata from yaml schema files.</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/mapping/driver/driver.html">Driver</a></td><td class="description">Contract for metadata drivers.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/package-tree.html b/lib/api/doctrine/orm/mapping/driver/package-tree.html
new file mode 100644
index 000000000..7a3b35e88
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/package-tree.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Mapping\Driver (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Mapping\Driver</h1><ul>
+<li><a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html">Doctrine\ORM\Mapping\Driver\AbstractFileDriver</a><ul>
+<li><a href="../../../../doctrine/orm/mapping/driver/phpdriver.html">Doctrine\ORM\Mapping\Driver\PhpDriver</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/xmldriver.html">Doctrine\ORM\Mapping\Driver\XmlDriver</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/yamldriver.html">Doctrine\ORM\Mapping\Driver\YamlDriver</a></li>
+</ul>
+</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/annotationdriver.html">Doctrine\ORM\Mapping\Driver\AnnotationDriver</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/databasedriver.html">Doctrine\ORM\Mapping\Driver\DatabaseDriver</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/driverchain.html">Doctrine\ORM\Mapping\Driver\DriverChain</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/phpdriver.html b/lib/api/doctrine/orm/mapping/driver/phpdriver.html
new file mode 100644
index 000000000..d779a7993
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/phpdriver.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>PhpDriver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/phpdriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Driver\PhpDriver</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/PhpDriver.php at line 46</div>
+
+<h1>Class PhpDriver</h1>
+
+<pre class="tree">Class:PhpDriver - Superclass: AbstractFileDriver
+<a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html">AbstractFileDriver</a><br>   &lfloor;&nbsp;<strong>PhpDriver</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>PhpDriver</strong><br>extends <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html">AbstractFileDriver</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>The PhpDriver includes php files which just populate ClassMetadataInfo
+instances with plain php code</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author		Benjamin:</dt>
+<dd>Eberlei <kontakt@beberlei.de></dd>
+<dt>Author		Guilherme:</dt>
+<dd>Blanco <guilhermeblanco@hotmail.com></dd>
+<dt>Author:</dt>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Todo:</dt>
+<dd>Rename: PHPDriver</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_fileExtension">$_fileExtension</a></p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_metadata">$_metadata</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Mapping\Driver\AbstractFileDriver</th></tr>
+<tr><td><a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#_fileExtension">_fileExtension</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#_paths">_paths</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#loadMetadataForClass()">loadMetadataForClass</a>(mixed className, mixed metadata)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Mapping\Driver\AbstractFileDriver</th></tr>
+<tr><td><a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#addPaths()">addPaths</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getAllClassNames()">getAllClassNames</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getElement()">getElement</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getFileExtension()">getFileExtension</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getPaths()">getPaths</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#isTransient()">isTransient</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#setFileExtension()">setFileExtension</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/PhpDriver.php at line 51</div>
+<h3 id="_fileExtension">_fileExtension</h3>
+<code class="signature">protected  mixed <strong>$_fileExtension</strong> = '.php'</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/PhpDriver.php at line 52</div>
+<h3 id="_metadata">_metadata</h3>
+<code class="signature">protected  mixed <strong>$_metadata</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/PhpDriver.php at line 57</div>
+<h3 id="loadMetadataForClass()">loadMetadataForClass</h3>
+<code class="signature">public  void <strong>loadMetadataForClass</strong>(mixed className, mixed metadata)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/phpdriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/xmldriver.html b/lib/api/doctrine/orm/mapping/driver/xmldriver.html
new file mode 100644
index 000000000..c2747834e
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/xmldriver.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>XmlDriver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/xmldriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Driver\XmlDriver</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/XmlDriver.php at line 40</div>
+
+<h1>Class XmlDriver</h1>
+
+<pre class="tree">Class:XmlDriver - Superclass: AbstractFileDriver
+<a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html">AbstractFileDriver</a><br>   &lfloor;&nbsp;<strong>XmlDriver</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>XmlDriver</strong><br>extends <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html">AbstractFileDriver</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>XmlDriver is a metadata driver that enables mapping through XML files.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author		Benjamin:</dt>
+<dd>Eberlei <kontakt@beberlei.de></dd>
+<dt>Author		Guilherme:</dt>
+<dd>Blanco <guilhermeblanco@hotmail.com></dd>
+<dt>Author:</dt>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_fileExtension">$_fileExtension</a></p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Mapping\Driver\AbstractFileDriver</th></tr>
+<tr><td><a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#_fileExtension">_fileExtension</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#_paths">_paths</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#loadMetadataForClass()">loadMetadataForClass</a>(mixed className, mixed metadata)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Mapping\Driver\AbstractFileDriver</th></tr>
+<tr><td><a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#addPaths()">addPaths</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getAllClassNames()">getAllClassNames</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getElement()">getElement</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getFileExtension()">getFileExtension</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getPaths()">getPaths</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#isTransient()">isTransient</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#setFileExtension()">setFileExtension</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/XmlDriver.php at line 45</div>
+<h3 id="_fileExtension">_fileExtension</h3>
+<code class="signature">protected  mixed <strong>$_fileExtension</strong> = '.dcm.xml'</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/XmlDriver.php at line 50</div>
+<h3 id="loadMetadataForClass()">loadMetadataForClass</h3>
+<code class="signature">public  void <strong>loadMetadataForClass</strong>(mixed className, mixed metadata)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/xmldriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/driver/yamldriver.html b/lib/api/doctrine/orm/mapping/driver/yamldriver.html
new file mode 100644
index 000000000..769ad9f15
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/driver/yamldriver.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>YamlDriver (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/yamldriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Driver\YamlDriver</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/YamlDriver.php at line 39</div>
+
+<h1>Class YamlDriver</h1>
+
+<pre class="tree">Class:YamlDriver - Superclass: AbstractFileDriver
+<a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html">AbstractFileDriver</a><br>   &lfloor;&nbsp;<strong>YamlDriver</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>YamlDriver</strong><br>extends <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html">AbstractFileDriver</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>The YamlDriver reads the mapping metadata from yaml schema files.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author		Benjamin:</dt>
+<dd>Eberlei <kontakt@beberlei.de></dd>
+<dt>Author		Guilherme:</dt>
+<dd>Blanco <guilhermeblanco@hotmail.com></dd>
+<dt>Author:</dt>
+<dd>Jonathan H. Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_fileExtension">$_fileExtension</a></p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Mapping\Driver\AbstractFileDriver</th></tr>
+<tr><td><a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#_fileExtension">_fileExtension</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#_paths">_paths</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#loadMetadataForClass()">loadMetadataForClass</a>(mixed className, mixed metadata)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Mapping\Driver\AbstractFileDriver</th></tr>
+<tr><td><a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#addPaths()">addPaths</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getAllClassNames()">getAllClassNames</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getElement()">getElement</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getFileExtension()">getFileExtension</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#getPaths()">getPaths</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#isTransient()">isTransient</a>, <a href="../../../../doctrine/orm/mapping/driver/abstractfiledriver.html#setFileExtension()">setFileExtension</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/YamlDriver.php at line 44</div>
+<h3 id="_fileExtension">_fileExtension</h3>
+<code class="signature">protected  mixed <strong>$_fileExtension</strong> = '.dcm.yml'</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/YamlDriver.php at line 49</div>
+<h3 id="loadMetadataForClass()">loadMetadataForClass</h3>
+<code class="signature">public  void <strong>loadMetadataForClass</strong>(mixed className, mixed metadata)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/mapping/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/mapping/driver/yamldriver.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/elementcollection.html b/lib/api/doctrine/orm/mapping/elementcollection.html
new file mode 100644
index 000000000..9c7624d86
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/elementcollection.html
@@ -0,0 +1,118 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ElementCollection (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/elementcollection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\ElementCollection</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 97</div>
+
+<h1>Class ElementCollection</h1>
+
+<pre class="tree">Class:ElementCollection - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>ElementCollection</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>ElementCollection</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#tableName">$tableName</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 98</div>
+<h3 id="tableName">tableName</h3>
+<code class="signature">public  mixed <strong>$tableName</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/elementcollection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/entity.html b/lib/api/doctrine/orm/mapping/entity.html
new file mode 100644
index 000000000..b923a39b2
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/entity.html
@@ -0,0 +1,118 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Entity (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/entity.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Entity</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 28</div>
+
+<h1>Class Entity</h1>
+
+<pre class="tree">Class:Entity - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>Entity</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>Entity</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#repositoryClass">$repositoryClass</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 29</div>
+<h3 id="repositoryClass">repositoryClass</h3>
+<code class="signature">public  mixed <strong>$repositoryClass</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/entity.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/generatedvalue.html b/lib/api/doctrine/orm/mapping/generatedvalue.html
new file mode 100644
index 000000000..cf1ca5bcd
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/generatedvalue.html
@@ -0,0 +1,118 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>GeneratedValue (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/generatedvalue.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\GeneratedValue</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 41</div>
+
+<h1>Class GeneratedValue</h1>
+
+<pre class="tree">Class:GeneratedValue - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>GeneratedValue</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>GeneratedValue</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#strategy">$strategy</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 42</div>
+<h3 id="strategy">strategy</h3>
+<code class="signature">public  mixed <strong>$strategy</strong> = 'AUTO'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/generatedvalue.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/haslifecyclecallbacks.html b/lib/api/doctrine/orm/mapping/haslifecyclecallbacks.html
new file mode 100644
index 000000000..c5ebfbb91
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/haslifecyclecallbacks.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>HasLifecycleCallbacks (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/haslifecyclecallbacks.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\HasLifecycleCallbacks</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 129</div>
+
+<h1>Class HasLifecycleCallbacks</h1>
+
+<pre class="tree">Class:HasLifecycleCallbacks - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>HasLifecycleCallbacks</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>HasLifecycleCallbacks</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/haslifecyclecallbacks.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/id.html b/lib/api/doctrine/orm/mapping/id.html
new file mode 100644
index 000000000..2b7d45a91
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/id.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Id (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/id.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Id</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 40</div>
+
+<h1>Class Id</h1>
+
+<pre class="tree">Class:Id - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>Id</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>Id</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/id.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/index.html b/lib/api/doctrine/orm/mapping/index.html
new file mode 100644
index 000000000..3413a6c01
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/index.html
@@ -0,0 +1,130 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Index (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/index.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Index</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 110</div>
+
+<h1>Class Index</h1>
+
+<pre class="tree">Class:Index - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>Index</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>Index</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#columns">$columns</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 112</div>
+<h3 id="columns">columns</h3>
+<code class="signature">public  mixed <strong>$columns</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 111</div>
+<h3 id="name">name</h3>
+<code class="signature">public  mixed <strong>$name</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/index.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/inheritancetype.html b/lib/api/doctrine/orm/mapping/inheritancetype.html
new file mode 100644
index 000000000..f8950559a
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/inheritancetype.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>InheritanceType (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/inheritancetype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\InheritanceType</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 32</div>
+
+<h1>Class InheritanceType</h1>
+
+<pre class="tree">Class:InheritanceType - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>InheritanceType</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>InheritanceType</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/inheritancetype.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/joincolumn.html b/lib/api/doctrine/orm/mapping/joincolumn.html
new file mode 100644
index 000000000..aed27607a
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/joincolumn.html
@@ -0,0 +1,202 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>JoinColumn (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/joincolumn.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\JoinColumn</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 45</div>
+
+<h1>Class JoinColumn</h1>
+
+<pre class="tree">Class:JoinColumn - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>JoinColumn</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>JoinColumn</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#columnDefinition">$columnDefinition</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fieldName">$fieldName</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#nullable">$nullable</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#onDelete">$onDelete</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#onUpdate">$onUpdate</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#referencedColumnName">$referencedColumnName</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#unique">$unique</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 53</div>
+<h3 id="columnDefinition">columnDefinition</h3>
+<code class="signature">public  mixed <strong>$columnDefinition</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 47</div>
+<h3 id="fieldName">fieldName</h3>
+<code class="signature">public  mixed <strong>$fieldName</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 46</div>
+<h3 id="name">name</h3>
+<code class="signature">public  mixed <strong>$name</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 50</div>
+<h3 id="nullable">nullable</h3>
+<code class="signature">public  mixed <strong>$nullable</strong> = true</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 51</div>
+<h3 id="onDelete">onDelete</h3>
+<code class="signature">public  mixed <strong>$onDelete</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 52</div>
+<h3 id="onUpdate">onUpdate</h3>
+<code class="signature">public  mixed <strong>$onUpdate</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 48</div>
+<h3 id="referencedColumnName">referencedColumnName</h3>
+<code class="signature">public  mixed <strong>$referencedColumnName</strong> = 'id'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 49</div>
+<h3 id="unique">unique</h3>
+<code class="signature">public  mixed <strong>$unique</strong> = false</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/joincolumn.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/joincolumns.html b/lib/api/doctrine/orm/mapping/joincolumns.html
new file mode 100644
index 000000000..400f5839c
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/joincolumns.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>JoinColumns (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/joincolumns.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\JoinColumns</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 55</div>
+
+<h1>Class JoinColumns</h1>
+
+<pre class="tree">Class:JoinColumns - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>JoinColumns</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>JoinColumns</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/joincolumns.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/jointable.html b/lib/api/doctrine/orm/mapping/jointable.html
new file mode 100644
index 000000000..3380fd99e
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/jointable.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>JoinTable (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/jointable.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\JoinTable</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 114</div>
+
+<h1>Class JoinTable</h1>
+
+<pre class="tree">Class:JoinTable - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>JoinTable</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>JoinTable</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#inverseJoinColumns">$inverseJoinColumns</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#joinColumns">$joinColumns</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#schema">$schema</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 118</div>
+<h3 id="inverseJoinColumns">inverseJoinColumns</h3>
+<code class="signature">public  mixed <strong>$inverseJoinColumns</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 117</div>
+<h3 id="joinColumns">joinColumns</h3>
+<code class="signature">public  mixed <strong>$joinColumns</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 115</div>
+<h3 id="name">name</h3>
+<code class="signature">public  mixed <strong>$name</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 116</div>
+<h3 id="schema">schema</h3>
+<code class="signature">public  mixed <strong>$schema</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/jointable.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/manytomany.html b/lib/api/doctrine/orm/mapping/manytomany.html
new file mode 100644
index 000000000..f26b9636d
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/manytomany.html
@@ -0,0 +1,166 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ManyToMany (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/manytomany.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\ManyToMany</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 90</div>
+
+<h1>Class ManyToMany</h1>
+
+<pre class="tree">Class:ManyToMany - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>ManyToMany</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>ManyToMany</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#cascade">$cascade</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fetch">$fetch</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#inversedBy">$inversedBy</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#mappedBy">$mappedBy</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#targetEntity">$targetEntity</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 94</div>
+<h3 id="cascade">cascade</h3>
+<code class="signature">public  mixed <strong>$cascade</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 95</div>
+<h3 id="fetch">fetch</h3>
+<code class="signature">public  mixed <strong>$fetch</strong> = 'LAZY'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 93</div>
+<h3 id="inversedBy">inversedBy</h3>
+<code class="signature">public  mixed <strong>$inversedBy</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 92</div>
+<h3 id="mappedBy">mappedBy</h3>
+<code class="signature">public  mixed <strong>$mappedBy</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 91</div>
+<h3 id="targetEntity">targetEntity</h3>
+<code class="signature">public  mixed <strong>$targetEntity</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/manytomany.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/manytomanymapping.html b/lib/api/doctrine/orm/mapping/manytomanymapping.html
new file mode 100644
index 000000000..af9f17953
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/manytomanymapping.html
@@ -0,0 +1,196 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ManyToManyMapping (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/manytomanymapping.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\ManyToManyMapping</div>
+<div class="location">/Doctrine/ORM/Mapping/ManyToManyMapping.php at line 43</div>
+
+<h1>Class ManyToManyMapping</h1>
+
+<pre class="tree">Class:ManyToManyMapping - Superclass: AssociationMapping
+<a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a><br>   &lfloor;&nbsp;<strong>ManyToManyMapping</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ManyToManyMapping</strong><br>extends <a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>A many-to-many mapping describes the mapping between two collections of
+entities.</p><p><b>IMPORTANT NOTE:</b></p><p>The fields of this class are only public for 2 reasons:
+1) To allow fast READ access.
+2) To drastically reduce the size of a serialized instance (private/protected members
+get the whole class name, namespace inclusive, prepended to every property in
+the serialized representation).</p><p>Instances of this class are stored serialized in the metadata cache together with the
+owning <tt>ClassMetadata</tt> instance.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Giorgio Sironi <piccoloprincipeazzurro@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#joinTableColumns">$joinTableColumns</a></p><p class="description">READ-ONLY: List of aggregated column names on the join table.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#orderBy">$orderBy</a></p><p class="description">READ-ONLY: Order this collection by the given DQL snippet.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#relationToSourceKeyColumns">$relationToSourceKeyColumns</a></p><p class="description">READ-ONLY: Maps the columns in the relational table to the columns in the source table.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#relationToTargetKeyColumns">$relationToTargetKeyColumns</a></p><p class="description">READ-ONLY: Maps the columns in the relation table to the columns in the target table.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Mapping\AssociationMapping</th></tr>
+<tr><td><a href="../../../doctrine/orm/mapping/associationmapping.html#FETCH_EAGER">FETCH_EAGER</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#FETCH_LAZY">FETCH_LAZY</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#declared">declared</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#fetchMode">fetchMode</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#inherited">inherited</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#inversedBy">inversedBy</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeDetach">isCascadeDetach</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeMerge">isCascadeMerge</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadePersist">isCascadePersist</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeRefresh">isCascadeRefresh</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeRemove">isCascadeRemove</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isOwningSide">isOwningSide</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#joinTable">joinTable</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#mappedBy">mappedBy</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#sourceEntityName">sourceEntityName</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#sourceFieldName">sourceFieldName</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#targetEntityName">targetEntityName</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isManyToMany()">isManyToMany</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#load()">load</a>(object sourceEntity, mixed targetCollection, <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, array joinColumnValues, object The, array , object target)</p><p class="description">Loads entities in $targetCollection using $em.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Mapping\AssociationMapping</th></tr>
+<tr><td><a href="../../../doctrine/orm/mapping/associationmapping.html#getQuotedJoinTableName()">getQuotedJoinTableName</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#hasCascades()">hasCascades</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isEagerlyFetched()">isEagerlyFetched</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isLazilyFetched()">isLazilyFetched</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isManyToMany()">isManyToMany</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isOneToMany()">isOneToMany</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isOneToOne()">isOneToOne</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#load()">load</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#usesJoinTable()">usesJoinTable</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/ManyToManyMapping.php at line 58</div>
+<h3 id="joinTableColumns">joinTableColumns</h3>
+<code class="signature">public  mixed <strong>$joinTableColumns</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: List of aggregated column names on the join table.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ManyToManyMapping.php at line 70</div>
+<h3 id="orderBy">orderBy</h3>
+<code class="signature">public  array <strong>$orderBy</strong></code>
+<div class="details">
+<p>READ-ONLY: Order this collection by the given DQL snippet.</p><p>Only simple unqualified field names and ASC|DESC are allowed</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ManyToManyMapping.php at line 48</div>
+<h3 id="relationToSourceKeyColumns">relationToSourceKeyColumns</h3>
+<code class="signature">public  mixed <strong>$relationToSourceKeyColumns</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: Maps the columns in the relational table to the columns in the source table.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ManyToManyMapping.php at line 53</div>
+<h3 id="relationToTargetKeyColumns">relationToTargetKeyColumns</h3>
+<code class="signature">public  mixed <strong>$relationToTargetKeyColumns</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: Maps the columns in the relation table to the columns in the target table.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/ManyToManyMapping.php at line 181</div>
+<h3 id="isManyToMany()">isManyToMany</h3>
+<code class="signature">public  boolean <strong>isManyToMany</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/ManyToManyMapping.php at line 146</div>
+<h3 id="load()">load</h3>
+<code class="signature">public  void <strong>load</strong>(object sourceEntity, mixed targetCollection, <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, array joinColumnValues, object The, array , object target)</code>
+<div class="details">
+<p>Loads entities in $targetCollection using $em.
+The data of $sourceEntity are used to restrict the collection
+via the join table.</p><dl>
+<dt>Parameters:</dt>
+<dd>The - owner of the collection.</dd>
+<dd>The - collection to populate.</dd>
+<dd></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/manytomanymapping.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/manytoone.html b/lib/api/doctrine/orm/mapping/manytoone.html
new file mode 100644
index 000000000..f5607ec84
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/manytoone.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ManyToOne (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/manytoone.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\ManyToOne</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 84</div>
+
+<h1>Class ManyToOne</h1>
+
+<pre class="tree">Class:ManyToOne - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>ManyToOne</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>ManyToOne</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#cascade">$cascade</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fetch">$fetch</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#inversedBy">$inversedBy</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#targetEntity">$targetEntity</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 86</div>
+<h3 id="cascade">cascade</h3>
+<code class="signature">public  mixed <strong>$cascade</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 87</div>
+<h3 id="fetch">fetch</h3>
+<code class="signature">public  mixed <strong>$fetch</strong> = 'LAZY'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 88</div>
+<h3 id="inversedBy">inversedBy</h3>
+<code class="signature">public  mixed <strong>$inversedBy</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 85</div>
+<h3 id="targetEntity">targetEntity</h3>
+<code class="signature">public  mixed <strong>$targetEntity</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/manytoone.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/mappedsuperclass.html b/lib/api/doctrine/orm/mapping/mappedsuperclass.html
new file mode 100644
index 000000000..add75dbde
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/mappedsuperclass.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>MappedSuperclass (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/mappedsuperclass.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\MappedSuperclass</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 31</div>
+
+<h1>Class MappedSuperclass</h1>
+
+<pre class="tree">Class:MappedSuperclass - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>MappedSuperclass</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>MappedSuperclass</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/mappedsuperclass.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/mappingexception.html b/lib/api/doctrine/orm/mapping/mappingexception.html
new file mode 100644
index 000000000..ddbb5efbf
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/mappingexception.html
@@ -0,0 +1,419 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>MappingException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/mappingexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\MappingException</div>
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 29</div>
+
+<h1>Class MappingException</h1>
+
+<pre class="tree">Class:MappingException - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>MappingException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>MappingException</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>A MappingException indicates that something is wrong with the mapping setup.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#classIsNotAValidEntityOrMappedSuperClass()">classIsNotAValidEntityOrMappedSuperClass</a>(mixed className)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#duplicateAssociationMapping()">duplicateAssociationMapping</a>(mixed entity, mixed fieldName)</p></td>
+</tr>
+<tr>
+<td class="type">static  self</td>
+<td class="description"><p class="name"><a href="#duplicateColumnName()">duplicateColumnName</a>(string className, string columnName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#duplicateFieldMapping()">duplicateFieldMapping</a>(string entity, string fieldName)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#fileMappingDriversRequireConfiguredDirectoryPath()">fileMappingDriversRequireConfiguredDirectoryPath</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#generatorNotAllowedWithCompositeId()">generatorNotAllowedWithCompositeId</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#identifierRequired()">identifierRequired</a>(mixed entityName)</p></td>
+</tr>
+<tr>
+<td class="type">static  self</td>
+<td class="description"><p class="name"><a href="#invalidClassInDiscriminatorMap()">invalidClassInDiscriminatorMap</a>(string className, string owningClass)</p><p class="description">Throws an exception that indicates that a class used in a discriminator map does not exist.
+</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidInheritanceType()">invalidInheritanceType</a>(mixed entityName, mixed type)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidMapping()">invalidMapping</a>(string fieldName)</p><p class="description">Generic exception for invalid mappings.</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#joinColumnMustPointToMappedField()">joinColumnMustPointToMappedField</a>(mixed className, mixed joinColumn)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#joinTableRequired()">joinTableRequired</a>(mixed fieldName)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#mappingFileNotFound()">mappingFileNotFound</a>(mixed entityName, mixed fileName)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#mappingNotFound()">mappingNotFound</a>(mixed fieldName)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#missingFieldName()">missingFieldName</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  <a href="../../../doctrine/orm/mapping/mappingexception.html">MappingException</a></td>
+<td class="description"><p class="name"><a href="#missingRequiredOption()">missingRequiredOption</a>(string field, string expectedOption, string hint)</p><p class="description">Called if a required option was not found but is required</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#missingSourceEntity()">missingSourceEntity</a>(mixed fieldName)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#missingTargetEntity()">missingTargetEntity</a>(mixed fieldName)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#oneToManyRequiresMappedBy()">oneToManyRequiresMappedBy</a>(mixed fieldName)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#pathRequired()">pathRequired</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#propertyTypeIsRequired()">propertyTypeIsRequired</a>(mixed className, mixed propertyName)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#reflectionFailure()">reflectionFailure</a>(string entity, \ReflectionException previousException)</p><p class="description">Exception for reflection exceptions - adds the entity name,
+because there might be long classnames that will be shortened
+within the stacktrace</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#singleIdNotAllowedOnCompositePrimaryKey()">singleIdNotAllowedOnCompositePrimaryKey</a>(mixed entity)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#tableIdGeneratorNotImplemented()">tableIdGeneratorNotImplemented</a>(mixed className)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#unsupportedOptimisticLockingType()">unsupportedOptimisticLockingType</a>(mixed entity, mixed fieldName, mixed unsupportedType)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 137</div>
+<h3 id="classIsNotAValidEntityOrMappedSuperClass()">classIsNotAValidEntityOrMappedSuperClass</h3>
+<code class="signature">public static  void <strong>classIsNotAValidEntityOrMappedSuperClass</strong>(mixed className)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 161</div>
+<h3 id="duplicateAssociationMapping()">duplicateAssociationMapping</h3>
+<code class="signature">public static  void <strong>duplicateAssociationMapping</strong>(mixed entity, mixed fieldName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 200</div>
+<h3 id="duplicateColumnName()">duplicateColumnName</h3>
+<code class="signature">public static  self <strong>duplicateColumnName</strong>(string className, string columnName)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 157</div>
+<h3 id="duplicateFieldMapping()">duplicateFieldMapping</h3>
+<code class="signature">public static  void <strong>duplicateFieldMapping</strong>(string entity, string fieldName)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity's name</dd>
+<dd>fieldName - The name of the field that was already declared</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 175</div>
+<h3 id="fileMappingDriversRequireConfiguredDirectoryPath()">fileMappingDriversRequireConfiguredDirectoryPath</h3>
+<code class="signature">public static  void <strong>fileMappingDriversRequireConfiguredDirectoryPath</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 48</div>
+<h3 id="generatorNotAllowedWithCompositeId()">generatorNotAllowedWithCompositeId</h3>
+<code class="signature">public static  void <strong>generatorNotAllowedWithCompositeId</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 37</div>
+<h3 id="identifierRequired()">identifierRequired</h3>
+<code class="signature">public static  void <strong>identifierRequired</strong>(mixed entityName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 188</div>
+<h3 id="invalidClassInDiscriminatorMap()">invalidClassInDiscriminatorMap</h3>
+<code class="signature">public static  self <strong>invalidClassInDiscriminatorMap</strong>(string className, string owningClass)</code>
+<div class="details">
+<p>Throws an exception that indicates that a class used in a discriminator map does not exist.
+An example would be an outdated (maybe renamed) classname.</p><dl>
+<dt>Parameters:</dt>
+<dd>className - The class that could not be found</dd>
+<dd>owningClass - The class that declares the discriminator map.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 43</div>
+<h3 id="invalidInheritanceType()">invalidInheritanceType</h3>
+<code class="signature">public static  void <strong>invalidInheritanceType</strong>(mixed entityName, mixed type)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 113</div>
+<h3 id="invalidMapping()">invalidMapping</h3>
+<code class="signature">public static  void <strong>invalidMapping</strong>(string fieldName)</code>
+<div class="details">
+<p>Generic exception for invalid mappings.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 131</div>
+<h3 id="joinColumnMustPointToMappedField()">joinColumnMustPointToMappedField</h3>
+<code class="signature">public static  void <strong>joinColumnMustPointToMappedField</strong>(mixed className, mixed joinColumn)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 83</div>
+<h3 id="joinTableRequired()">joinTableRequired</h3>
+<code class="signature">public static  void <strong>joinTableRequired</strong>(mixed fieldName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 68</div>
+<h3 id="mappingFileNotFound()">mappingFileNotFound</h3>
+<code class="signature">public static  void <strong>mappingFileNotFound</strong>(mixed entityName, mixed fileName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 73</div>
+<h3 id="mappingNotFound()">mappingNotFound</h3>
+<code class="signature">public static  void <strong>mappingNotFound</strong>(mixed fieldName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 53</div>
+<h3 id="missingFieldName()">missingFieldName</h3>
+<code class="signature">public static  void <strong>missingFieldName</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 97</div>
+<h3 id="missingRequiredOption()">missingRequiredOption</h3>
+<code class="signature">public static  <a href="../../../doctrine/orm/mapping/mappingexception.html">MappingException</a> <strong>missingRequiredOption</strong>(string field, string expectedOption, string hint)</code>
+<div class="details">
+<p>Called if a required option was not found but is required</p><dl>
+<dt>Parameters:</dt>
+<dd>field - which field cannot be processed?</dd>
+<dd>expectedOption - which option is required</dd>
+<dd>hint - Can optionally be used to supply a tip for common mistakes, e.g. "Did you think of the plural s?"</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 63</div>
+<h3 id="missingSourceEntity()">missingSourceEntity</h3>
+<code class="signature">public static  void <strong>missingSourceEntity</strong>(mixed fieldName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 58</div>
+<h3 id="missingTargetEntity()">missingTargetEntity</h3>
+<code class="signature">public static  void <strong>missingTargetEntity</strong>(mixed fieldName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 78</div>
+<h3 id="oneToManyRequiresMappedBy()">oneToManyRequiresMappedBy</h3>
+<code class="signature">public static  void <strong>oneToManyRequiresMappedBy</strong>(mixed fieldName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 31</div>
+<h3 id="pathRequired()">pathRequired</h3>
+<code class="signature">public static  void <strong>pathRequired</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 142</div>
+<h3 id="propertyTypeIsRequired()">propertyTypeIsRequired</h3>
+<code class="signature">public static  void <strong>propertyTypeIsRequired</strong>(mixed className, mixed propertyName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 126</div>
+<h3 id="reflectionFailure()">reflectionFailure</h3>
+<code class="signature">public static  void <strong>reflectionFailure</strong>(string entity, \ReflectionException previousException)</code>
+<div class="details">
+<p>Exception for reflection exceptions - adds the entity name,
+because there might be long classnames that will be shortened
+within the stacktrace</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity's name</dd>
+<dd></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 165</div>
+<h3 id="singleIdNotAllowedOnCompositePrimaryKey()">singleIdNotAllowedOnCompositePrimaryKey</h3>
+<code class="signature">public static  void <strong>singleIdNotAllowedOnCompositePrimaryKey</strong>(mixed entity)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 147</div>
+<h3 id="tableIdGeneratorNotImplemented()">tableIdGeneratorNotImplemented</h3>
+<code class="signature">public static  void <strong>tableIdGeneratorNotImplemented</strong>(mixed className)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/MappingException.php at line 169</div>
+<h3 id="unsupportedOptimisticLockingType()">unsupportedOptimisticLockingType</h3>
+<code class="signature">public static  void <strong>unsupportedOptimisticLockingType</strong>(mixed entity, mixed fieldName, mixed unsupportedType)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/mappingexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/onetomany.html b/lib/api/doctrine/orm/mapping/onetomany.html
new file mode 100644
index 000000000..0ef7a17a5
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/onetomany.html
@@ -0,0 +1,166 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>OneToMany (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/onetomany.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\OneToMany</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 77</div>
+
+<h1>Class OneToMany</h1>
+
+<pre class="tree">Class:OneToMany - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>OneToMany</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>OneToMany</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#cascade">$cascade</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fetch">$fetch</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#mappedBy">$mappedBy</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#orphanRemoval">$orphanRemoval</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#targetEntity">$targetEntity</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 80</div>
+<h3 id="cascade">cascade</h3>
+<code class="signature">public  mixed <strong>$cascade</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 81</div>
+<h3 id="fetch">fetch</h3>
+<code class="signature">public  mixed <strong>$fetch</strong> = 'LAZY'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 78</div>
+<h3 id="mappedBy">mappedBy</h3>
+<code class="signature">public  mixed <strong>$mappedBy</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 82</div>
+<h3 id="orphanRemoval">orphanRemoval</h3>
+<code class="signature">public  mixed <strong>$orphanRemoval</strong> = false</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 79</div>
+<h3 id="targetEntity">targetEntity</h3>
+<code class="signature">public  mixed <strong>$targetEntity</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/onetomany.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/onetomanymapping.html b/lib/api/doctrine/orm/mapping/onetomanymapping.html
new file mode 100644
index 000000000..247f821cc
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/onetomanymapping.html
@@ -0,0 +1,190 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>OneToManyMapping (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/onetomanymapping.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\OneToManyMapping</div>
+<div class="location">/Doctrine/ORM/Mapping/OneToManyMapping.php at line 47</div>
+
+<h1>Class OneToManyMapping</h1>
+
+<pre class="tree">Class:OneToManyMapping - Superclass: AssociationMapping
+<a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a><br>   &lfloor;&nbsp;<strong>OneToManyMapping</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OneToManyMapping</strong><br>extends <a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Represents a one-to-many mapping.</p><p>NOTE: One-to-many mappings can currently not be uni-directional (one -> many).
+They must either be bidirectional (one <-> many) or unidirectional (many -> one).
+In other words, the many-side MUST be the owning side and the one-side MUST be
+the inverse side.</p><p><b>IMPORTANT NOTE:</b></p><p>The fields of this class are only public for 2 reasons:
+1) To allow fast READ access.
+2) To drastically reduce the size of a serialized instance (private/protected members
+get the whole class name, namespace inclusive, prepended to every property in
+the serialized representation).</p><p>Instances of this class are stored serialized in the metadata cache together with the
+owning <tt>ClassMetadata</tt> instance.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Giorgio Sironi <piccoloprincipeazzurro@gmail.com></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#orderBy">$orderBy</a></p><p class="description">READ-ONLY: Order this collection by the given SQL snippet.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#orphanRemoval">$orphanRemoval</a></p><p class="description">READ-ONLY: Whether to delete orphaned elements (removed from the collection)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Mapping\AssociationMapping</th></tr>
+<tr><td><a href="../../../doctrine/orm/mapping/associationmapping.html#FETCH_EAGER">FETCH_EAGER</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#FETCH_LAZY">FETCH_LAZY</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#declared">declared</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#fetchMode">fetchMode</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#inherited">inherited</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#inversedBy">inversedBy</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeDetach">isCascadeDetach</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeMerge">isCascadeMerge</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadePersist">isCascadePersist</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeRefresh">isCascadeRefresh</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeRemove">isCascadeRemove</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isOwningSide">isOwningSide</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#joinTable">joinTable</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#mappedBy">mappedBy</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#sourceEntityName">sourceEntityName</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#sourceFieldName">sourceFieldName</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#targetEntityName">targetEntityName</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isOneToMany()">isOneToMany</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#load()">load</a>(object sourceEntity, mixed targetCollection, <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, array joinColumnValues, $em The, $joinColumnValues , object target)</p><p class="description">Loads a one-to-many collection.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#shouldDeleteOrphans()">shouldDeleteOrphans</a>()</p><p class="description">Whether orphaned elements (removed from the collection) should be deleted.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Mapping\AssociationMapping</th></tr>
+<tr><td><a href="../../../doctrine/orm/mapping/associationmapping.html#getQuotedJoinTableName()">getQuotedJoinTableName</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#hasCascades()">hasCascades</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isEagerlyFetched()">isEagerlyFetched</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isLazilyFetched()">isLazilyFetched</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isManyToMany()">isManyToMany</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isOneToMany()">isOneToMany</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isOneToOne()">isOneToOne</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#load()">load</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#usesJoinTable()">usesJoinTable</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/OneToManyMapping.php at line 62</div>
+<h3 id="orderBy">orderBy</h3>
+<code class="signature">public  mixed <strong>$orderBy</strong></code>
+<div class="details">
+<p>READ-ONLY: Order this collection by the given SQL snippet.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/OneToManyMapping.php at line 54</div>
+<h3 id="orphanRemoval">orphanRemoval</h3>
+<code class="signature">public  boolean <strong>$orphanRemoval</strong> = false</code>
+<div class="details">
+<p>READ-ONLY: Whether to delete orphaned elements (removed from the collection)</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/OneToManyMapping.php at line 107</div>
+<h3 id="isOneToMany()">isOneToMany</h3>
+<code class="signature">public  boolean <strong>isOneToMany</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/OneToManyMapping.php at line 121</div>
+<h3 id="load()">load</h3>
+<code class="signature">public  void <strong>load</strong>(object sourceEntity, mixed targetCollection, <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, array joinColumnValues, $em The, $joinColumnValues , object target)</code>
+<div class="details">
+<p>Loads a one-to-many collection.</p><dl>
+<dt>Parameters:</dt>
+<dd>The - entity that owns the collection.</dd>
+<dd>The - collection to load/fill.</dd>
+<dd>The - EntityManager to use.</dd>
+<dd></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/OneToManyMapping.php at line 97</div>
+<h3 id="shouldDeleteOrphans()">shouldDeleteOrphans</h3>
+<code class="signature">public  boolean <strong>shouldDeleteOrphans</strong>()</code>
+<div class="details">
+<p>Whether orphaned elements (removed from the collection) should be deleted.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if orphaned elements should be deleted, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/onetomanymapping.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/onetoone.html b/lib/api/doctrine/orm/mapping/onetoone.html
new file mode 100644
index 000000000..7a3772531
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/onetoone.html
@@ -0,0 +1,178 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>OneToOne (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/onetoone.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\OneToOne</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 69</div>
+
+<h1>Class OneToOne</h1>
+
+<pre class="tree">Class:OneToOne - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>OneToOne</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>OneToOne</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#cascade">$cascade</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fetch">$fetch</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#inversedBy">$inversedBy</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#mappedBy">$mappedBy</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#orphanRemoval">$orphanRemoval</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#targetEntity">$targetEntity</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 73</div>
+<h3 id="cascade">cascade</h3>
+<code class="signature">public  mixed <strong>$cascade</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 74</div>
+<h3 id="fetch">fetch</h3>
+<code class="signature">public  mixed <strong>$fetch</strong> = 'LAZY'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 72</div>
+<h3 id="inversedBy">inversedBy</h3>
+<code class="signature">public  mixed <strong>$inversedBy</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 71</div>
+<h3 id="mappedBy">mappedBy</h3>
+<code class="signature">public  mixed <strong>$mappedBy</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 75</div>
+<h3 id="orphanRemoval">orphanRemoval</h3>
+<code class="signature">public  mixed <strong>$orphanRemoval</strong> = false</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 70</div>
+<h3 id="targetEntity">targetEntity</h3>
+<code class="signature">public  mixed <strong>$targetEntity</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/onetoone.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/onetoonemapping.html b/lib/api/doctrine/orm/mapping/onetoonemapping.html
new file mode 100644
index 000000000..19fa49a9a
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/onetoonemapping.html
@@ -0,0 +1,216 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>OneToOneMapping (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/onetoonemapping.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\OneToOneMapping</div>
+<div class="location">/Doctrine/ORM/Mapping/OneToOneMapping.php at line 43</div>
+
+<h1>Class OneToOneMapping</h1>
+
+<pre class="tree">Class:OneToOneMapping - Superclass: AssociationMapping
+<a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a><br>   &lfloor;&nbsp;<strong>OneToOneMapping</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OneToOneMapping</strong><br>extends <a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>A one-to-one mapping describes a uni-directional mapping from one entity 
+to another entity.</p><p><b>IMPORTANT NOTE:</b></p><p>The fields of this class are only public for 2 reasons:
+1) To allow fast READ access.
+2) To drastically reduce the size of a serialized instance (private/protected members
+get the whole class name, namespace inclusive, prepended to every property in
+the serialized representation).</p><p>Instances of this class are stored serialized in the metadata cache together with the
+owning <tt>ClassMetadata</tt> instance.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Giorgio Sironi <piccoloprincipeazzurro@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#joinColumnFieldNames">$joinColumnFieldNames</a></p><p class="description">READ-ONLY: A map of join column names to field names that are used in cases
+when the join columns are fetched as part of the query result.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#joinColumns">$joinColumns</a></p><p class="description">READ-ONLY: The join column definitions. </p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#orphanRemoval">$orphanRemoval</a></p><p class="description">READ-ONLY: Whether to delete orphaned elements (when nulled out, i.e. </p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#sourceToTargetKeyColumns">$sourceToTargetKeyColumns</a></p><p class="description">READ-ONLY: Maps the source foreign/primary key columns to the target primary/foreign key columns.
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#targetToSourceKeyColumns">$targetToSourceKeyColumns</a></p><p class="description">READ-ONLY: Maps the target primary/foreign key columns to the source foreign/primary key columns.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Mapping\AssociationMapping</th></tr>
+<tr><td><a href="../../../doctrine/orm/mapping/associationmapping.html#FETCH_EAGER">FETCH_EAGER</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#FETCH_LAZY">FETCH_LAZY</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#declared">declared</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#fetchMode">fetchMode</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#inherited">inherited</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#inversedBy">inversedBy</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeDetach">isCascadeDetach</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeMerge">isCascadeMerge</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadePersist">isCascadePersist</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeRefresh">isCascadeRefresh</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isCascadeRemove">isCascadeRemove</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isOwningSide">isOwningSide</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#joinTable">joinTable</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#mappedBy">mappedBy</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#sourceEntityName">sourceEntityName</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#sourceFieldName">sourceFieldName</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#targetEntityName">targetEntityName</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isOneToOne()">isOneToOne</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#load()">load</a>(object sourceEntity, object targetEntity, <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, array joinColumnValues, object target)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Mapping\AssociationMapping</th></tr>
+<tr><td><a href="../../../doctrine/orm/mapping/associationmapping.html#getQuotedJoinTableName()">getQuotedJoinTableName</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#hasCascades()">hasCascades</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isEagerlyFetched()">isEagerlyFetched</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isLazilyFetched()">isLazilyFetched</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isManyToMany()">isManyToMany</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isOneToMany()">isOneToMany</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#isOneToOne()">isOneToOne</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#load()">load</a>, <a href="../../../doctrine/orm/mapping/associationmapping.html#usesJoinTable()">usesJoinTable</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/OneToOneMapping.php at line 79</div>
+<h3 id="joinColumnFieldNames">joinColumnFieldNames</h3>
+<code class="signature">public  array <strong>$joinColumnFieldNames</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: A map of join column names to field names that are used in cases
+when the join columns are fetched as part of the query result.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/OneToOneMapping.php at line 71</div>
+<h3 id="joinColumns">joinColumns</h3>
+<code class="signature">public  array <strong>$joinColumns</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: The join column definitions. Only present on the owning side.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/OneToOneMapping.php at line 64</div>
+<h3 id="orphanRemoval">orphanRemoval</h3>
+<code class="signature">public  boolean <strong>$orphanRemoval</strong> = false</code>
+<div class="details">
+<p>READ-ONLY: Whether to delete orphaned elements (when nulled out, i.e. $foo->other = null)</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/OneToOneMapping.php at line 50</div>
+<h3 id="sourceToTargetKeyColumns">sourceToTargetKeyColumns</h3>
+<code class="signature">public  mixed <strong>$sourceToTargetKeyColumns</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: Maps the source foreign/primary key columns to the target primary/foreign key columns.
+i.e. source.id (pk) => target.user_id (fk).
+Reverse mapping of _targetToSourceKeyColumns.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/OneToOneMapping.php at line 57</div>
+<h3 id="targetToSourceKeyColumns">targetToSourceKeyColumns</h3>
+<code class="signature">public  mixed <strong>$targetToSourceKeyColumns</strong> = array()</code>
+<div class="details">
+<p>READ-ONLY: Maps the target primary/foreign key columns to the source foreign/primary key columns.
+i.e. target.user_id (fk) => source.id (pk).
+Reverse mapping of _sourceToTargetKeyColumns.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/OneToOneMapping.php at line 126</div>
+<h3 id="isOneToOne()">isOneToOne</h3>
+<code class="signature">public  boolean <strong>isOneToOne</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/OneToOneMapping.php at line 139</div>
+<h3 id="load()">load</h3>
+<code class="signature">public  void <strong>load</strong>(object sourceEntity, object targetEntity, <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, array joinColumnValues, object target)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>sourceEntity - the entity source of this association</dd>
+<dd>targetEntity - the entity to load data in</dd>
+<dd></dd>
+<dd>joinColumnValues - Values of the join columns of $sourceEntity.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/onetoonemapping.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/orderby.html b/lib/api/doctrine/orm/mapping/orderby.html
new file mode 100644
index 000000000..1844b8cc8
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/orderby.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>OrderBy (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/orderby.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\OrderBy</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 126</div>
+
+<h1>Class OrderBy</h1>
+
+<pre class="tree">Class:OrderBy - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>OrderBy</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>OrderBy</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/orderby.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/package-frame.html b/lib/api/doctrine/orm/mapping/package-frame.html
new file mode 100644
index 000000000..23f8a7727
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/package-frame.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Mapping (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Mapping</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/orm/mapping/associationmapping.html" target="main">AssociationMapping</a></li>
+<li><a href="../../../doctrine/orm/mapping/changetrackingpolicy.html" target="main">ChangeTrackingPolicy</a></li>
+<li><a href="../../../doctrine/orm/mapping/classmetadata.html" target="main">ClassMetadata</a></li>
+<li><a href="../../../doctrine/orm/mapping/classmetadatafactory.html" target="main">ClassMetadataFactory</a></li>
+<li><a href="../../../doctrine/orm/mapping/classmetadatainfo.html" target="main">ClassMetadataInfo</a></li>
+<li><a href="../../../doctrine/orm/mapping/column.html" target="main">Column</a></li>
+<li><a href="../../../doctrine/orm/mapping/discriminatorcolumn.html" target="main">DiscriminatorColumn</a></li>
+<li><a href="../../../doctrine/orm/mapping/discriminatormap.html" target="main">DiscriminatorMap</a></li>
+<li><a href="../../../doctrine/orm/mapping/elementcollection.html" target="main">ElementCollection</a></li>
+<li><a href="../../../doctrine/orm/mapping/entity.html" target="main">Entity</a></li>
+<li><a href="../../../doctrine/orm/mapping/generatedvalue.html" target="main">GeneratedValue</a></li>
+<li><a href="../../../doctrine/orm/mapping/haslifecyclecallbacks.html" target="main">HasLifecycleCallbacks</a></li>
+<li><a href="../../../doctrine/orm/mapping/id.html" target="main">Id</a></li>
+<li><a href="../../../doctrine/orm/mapping/index.html" target="main">Index</a></li>
+<li><a href="../../../doctrine/orm/mapping/inheritancetype.html" target="main">InheritanceType</a></li>
+<li><a href="../../../doctrine/orm/mapping/joincolumn.html" target="main">JoinColumn</a></li>
+<li><a href="../../../doctrine/orm/mapping/joincolumns.html" target="main">JoinColumns</a></li>
+<li><a href="../../../doctrine/orm/mapping/jointable.html" target="main">JoinTable</a></li>
+<li><a href="../../../doctrine/orm/mapping/manytomany.html" target="main">ManyToMany</a></li>
+<li><a href="../../../doctrine/orm/mapping/manytomanymapping.html" target="main">ManyToManyMapping</a></li>
+<li><a href="../../../doctrine/orm/mapping/manytoone.html" target="main">ManyToOne</a></li>
+<li><a href="../../../doctrine/orm/mapping/mappedsuperclass.html" target="main">MappedSuperclass</a></li>
+<li><a href="../../../doctrine/orm/mapping/mappingexception.html" target="main">MappingException</a></li>
+<li><a href="../../../doctrine/orm/mapping/onetomany.html" target="main">OneToMany</a></li>
+<li><a href="../../../doctrine/orm/mapping/onetomanymapping.html" target="main">OneToManyMapping</a></li>
+<li><a href="../../../doctrine/orm/mapping/onetoone.html" target="main">OneToOne</a></li>
+<li><a href="../../../doctrine/orm/mapping/onetoonemapping.html" target="main">OneToOneMapping</a></li>
+<li><a href="../../../doctrine/orm/mapping/orderby.html" target="main">OrderBy</a></li>
+<li><a href="../../../doctrine/orm/mapping/postload.html" target="main">PostLoad</a></li>
+<li><a href="../../../doctrine/orm/mapping/postpersist.html" target="main">PostPersist</a></li>
+<li><a href="../../../doctrine/orm/mapping/postremove.html" target="main">PostRemove</a></li>
+<li><a href="../../../doctrine/orm/mapping/postupdate.html" target="main">PostUpdate</a></li>
+<li><a href="../../../doctrine/orm/mapping/prepersist.html" target="main">PrePersist</a></li>
+<li><a href="../../../doctrine/orm/mapping/preremove.html" target="main">PreRemove</a></li>
+<li><a href="../../../doctrine/orm/mapping/preupdate.html" target="main">PreUpdate</a></li>
+<li><a href="../../../doctrine/orm/mapping/sequencegenerator.html" target="main">SequenceGenerator</a></li>
+<li><a href="../../../doctrine/orm/mapping/table.html" target="main">Table</a></li>
+<li><a href="../../../doctrine/orm/mapping/uniqueconstraint.html" target="main">UniqueConstraint</a></li>
+<li><a href="../../../doctrine/orm/mapping/version.html" target="main">Version</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/package-functions.html b/lib/api/doctrine/orm/mapping/package-functions.html
new file mode 100644
index 000000000..6fed08ae0
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/package-globals.html b/lib/api/doctrine/orm/mapping/package-globals.html
new file mode 100644
index 000000000..4821c732e
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/package-summary.html b/lib/api/doctrine/orm/mapping/package-summary.html
new file mode 100644
index 000000000..bfe18394f
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/package-summary.html
@@ -0,0 +1,114 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Mapping (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Mapping</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a></td><td class="description">Base class for association mappings.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/changetrackingpolicy.html">ChangeTrackingPolicy</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a></td><td class="description">A ClassMetadata instance holds all the object-relational mapping metadata
+of an entity and it's associations.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/classmetadatafactory.html">ClassMetadataFactory</a></td><td class="description">The ClassMetadataFactory is used to create ClassMetadata objects that contain all the
+metadata mapping informations of a class which describes how a class should be mapped
+to a relational database.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a></td><td class="description">A ClassMetadata instance holds all the object-relational mapping metadata
+of an entity and it's associations.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/column.html">Column</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/discriminatorcolumn.html">DiscriminatorColumn</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/discriminatormap.html">DiscriminatorMap</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/elementcollection.html">ElementCollection</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/entity.html">Entity</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/generatedvalue.html">GeneratedValue</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/haslifecyclecallbacks.html">HasLifecycleCallbacks</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/id.html">Id</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/index.html">Index</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/inheritancetype.html">InheritanceType</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/joincolumn.html">JoinColumn</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/joincolumns.html">JoinColumns</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/jointable.html">JoinTable</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/manytomany.html">ManyToMany</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/manytomanymapping.html">ManyToManyMapping</a></td><td class="description">A many-to-many mapping describes the mapping between two collections of
+entities.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/manytoone.html">ManyToOne</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/mappedsuperclass.html">MappedSuperclass</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/mappingexception.html">MappingException</a></td><td class="description">A MappingException indicates that something is wrong with the mapping setup.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/onetomany.html">OneToMany</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/onetomanymapping.html">OneToManyMapping</a></td><td class="description">Represents a one-to-many mapping.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/onetoone.html">OneToOne</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/onetoonemapping.html">OneToOneMapping</a></td><td class="description">A one-to-one mapping describes a uni-directional mapping from one entity 
+to another entity.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/orderby.html">OrderBy</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/postload.html">PostLoad</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/postpersist.html">PostPersist</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/postremove.html">PostRemove</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/postupdate.html">PostUpdate</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/prepersist.html">PrePersist</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/preremove.html">PreRemove</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/preupdate.html">PreUpdate</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/sequencegenerator.html">SequenceGenerator</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/table.html">Table</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/uniqueconstraint.html">UniqueConstraint</a></td><td class="description">Annotations class</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/mapping/version.html">Version</a></td><td class="description">Annotations class</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/package-tree.html b/lib/api/doctrine/orm/mapping/package-tree.html
new file mode 100644
index 000000000..b99e95b6a
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/package-tree.html
@@ -0,0 +1,100 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Mapping (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Mapping</h1><ul>
+<li><a href="../../../doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a><ul>
+<li><a href="../../../doctrine/orm/mapping/manytomanymapping.html">Doctrine\ORM\Mapping\ManyToManyMapping</a></li>
+<li><a href="../../../doctrine/orm/mapping/onetomanymapping.html">Doctrine\ORM\Mapping\OneToManyMapping</a></li>
+<li><a href="../../../doctrine/orm/mapping/onetoonemapping.html">Doctrine\ORM\Mapping\OneToOneMapping</a></li>
+</ul>
+</li>
+<li><a href="../../../doctrine/common/annotations/annotation.html">Doctrine\Common\Annotations\Annotation</a><ul>
+<li><a href="../../../doctrine/orm/mapping/changetrackingpolicy.html">Doctrine\ORM\Mapping\ChangeTrackingPolicy</a></li>
+<li><a href="../../../doctrine/orm/mapping/column.html">Doctrine\ORM\Mapping\Column</a></li>
+<li><a href="../../../doctrine/orm/mapping/discriminatorcolumn.html">Doctrine\ORM\Mapping\DiscriminatorColumn</a></li>
+<li><a href="../../../doctrine/orm/mapping/discriminatormap.html">Doctrine\ORM\Mapping\DiscriminatorMap</a></li>
+<li><a href="../../../doctrine/orm/mapping/elementcollection.html">Doctrine\ORM\Mapping\ElementCollection</a></li>
+<li><a href="../../../doctrine/orm/mapping/entity.html">Doctrine\ORM\Mapping\Entity</a></li>
+<li><a href="../../../doctrine/orm/mapping/generatedvalue.html">Doctrine\ORM\Mapping\GeneratedValue</a></li>
+<li><a href="../../../doctrine/orm/mapping/haslifecyclecallbacks.html">Doctrine\ORM\Mapping\HasLifecycleCallbacks</a></li>
+<li><a href="../../../doctrine/orm/mapping/id.html">Doctrine\ORM\Mapping\Id</a></li>
+<li><a href="../../../doctrine/orm/mapping/index.html">Doctrine\ORM\Mapping\Index</a></li>
+<li><a href="../../../doctrine/orm/mapping/inheritancetype.html">Doctrine\ORM\Mapping\InheritanceType</a></li>
+<li><a href="../../../doctrine/orm/mapping/joincolumn.html">Doctrine\ORM\Mapping\JoinColumn</a></li>
+<li><a href="../../../doctrine/orm/mapping/joincolumns.html">Doctrine\ORM\Mapping\JoinColumns</a></li>
+<li><a href="../../../doctrine/orm/mapping/jointable.html">Doctrine\ORM\Mapping\JoinTable</a></li>
+<li><a href="../../../doctrine/orm/mapping/manytomany.html">Doctrine\ORM\Mapping\ManyToMany</a></li>
+<li><a href="../../../doctrine/orm/mapping/manytoone.html">Doctrine\ORM\Mapping\ManyToOne</a></li>
+<li><a href="../../../doctrine/orm/mapping/mappedsuperclass.html">Doctrine\ORM\Mapping\MappedSuperclass</a></li>
+<li><a href="../../../doctrine/orm/mapping/onetomany.html">Doctrine\ORM\Mapping\OneToMany</a></li>
+<li><a href="../../../doctrine/orm/mapping/onetoone.html">Doctrine\ORM\Mapping\OneToOne</a></li>
+<li><a href="../../../doctrine/orm/mapping/orderby.html">Doctrine\ORM\Mapping\OrderBy</a></li>
+<li><a href="../../../doctrine/orm/mapping/postload.html">Doctrine\ORM\Mapping\PostLoad</a></li>
+<li><a href="../../../doctrine/orm/mapping/postpersist.html">Doctrine\ORM\Mapping\PostPersist</a></li>
+<li><a href="../../../doctrine/orm/mapping/postremove.html">Doctrine\ORM\Mapping\PostRemove</a></li>
+<li><a href="../../../doctrine/orm/mapping/postupdate.html">Doctrine\ORM\Mapping\PostUpdate</a></li>
+<li><a href="../../../doctrine/orm/mapping/prepersist.html">Doctrine\ORM\Mapping\PrePersist</a></li>
+<li><a href="../../../doctrine/orm/mapping/preremove.html">Doctrine\ORM\Mapping\PreRemove</a></li>
+<li><a href="../../../doctrine/orm/mapping/preupdate.html">Doctrine\ORM\Mapping\PreUpdate</a></li>
+<li><a href="../../../doctrine/orm/mapping/sequencegenerator.html">Doctrine\ORM\Mapping\SequenceGenerator</a></li>
+<li><a href="../../../doctrine/orm/mapping/table.html">Doctrine\ORM\Mapping\Table</a></li>
+<li><a href="../../../doctrine/orm/mapping/uniqueconstraint.html">Doctrine\ORM\Mapping\UniqueConstraint</a></li>
+<li><a href="../../../doctrine/orm/mapping/version.html">Doctrine\ORM\Mapping\Version</a></li>
+</ul>
+</li>
+<li><a href="../../../doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a><ul>
+<li><a href="../../../doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></li>
+</ul>
+</li>
+<li><a href="../../../doctrine/orm/mapping/classmetadatafactory.html">Doctrine\ORM\Mapping\ClassMetadataFactory</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/postload.html b/lib/api/doctrine/orm/mapping/postload.html
new file mode 100644
index 000000000..938eab40e
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/postload.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PostLoad (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/postload.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\PostLoad</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 136</div>
+
+<h1>Class PostLoad</h1>
+
+<pre class="tree">Class:PostLoad - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>PostLoad</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>PostLoad</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/postload.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/postpersist.html b/lib/api/doctrine/orm/mapping/postpersist.html
new file mode 100644
index 000000000..b4c96adb6
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/postpersist.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PostPersist (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/postpersist.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\PostPersist</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 131</div>
+
+<h1>Class PostPersist</h1>
+
+<pre class="tree">Class:PostPersist - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>PostPersist</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>PostPersist</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/postpersist.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/postremove.html b/lib/api/doctrine/orm/mapping/postremove.html
new file mode 100644
index 000000000..70363d044
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/postremove.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PostRemove (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/postremove.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\PostRemove</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 135</div>
+
+<h1>Class PostRemove</h1>
+
+<pre class="tree">Class:PostRemove - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>PostRemove</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>PostRemove</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/postremove.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/postupdate.html b/lib/api/doctrine/orm/mapping/postupdate.html
new file mode 100644
index 000000000..d0e13fee4
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/postupdate.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PostUpdate (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/postupdate.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\PostUpdate</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 133</div>
+
+<h1>Class PostUpdate</h1>
+
+<pre class="tree">Class:PostUpdate - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>PostUpdate</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>PostUpdate</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/postupdate.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/prepersist.html b/lib/api/doctrine/orm/mapping/prepersist.html
new file mode 100644
index 000000000..a50d0d43c
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/prepersist.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PrePersist (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/prepersist.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\PrePersist</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 130</div>
+
+<h1>Class PrePersist</h1>
+
+<pre class="tree">Class:PrePersist - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>PrePersist</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>PrePersist</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/prepersist.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/preremove.html b/lib/api/doctrine/orm/mapping/preremove.html
new file mode 100644
index 000000000..2b9ae0330
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/preremove.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PreRemove (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/preremove.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\PreRemove</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 134</div>
+
+<h1>Class PreRemove</h1>
+
+<pre class="tree">Class:PreRemove - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>PreRemove</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>PreRemove</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/preremove.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/preupdate.html b/lib/api/doctrine/orm/mapping/preupdate.html
new file mode 100644
index 000000000..6d1cdf223
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/preupdate.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>PreUpdate (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/preupdate.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\PreUpdate</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 132</div>
+
+<h1>Class PreUpdate</h1>
+
+<pre class="tree">Class:PreUpdate - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>PreUpdate</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>PreUpdate</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/preupdate.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/sequencegenerator.html b/lib/api/doctrine/orm/mapping/sequencegenerator.html
new file mode 100644
index 000000000..d11b3f453
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/sequencegenerator.html
@@ -0,0 +1,142 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SequenceGenerator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/sequencegenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\SequenceGenerator</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 120</div>
+
+<h1>Class SequenceGenerator</h1>
+
+<pre class="tree">Class:SequenceGenerator - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>SequenceGenerator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>SequenceGenerator</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#allocationSize">$allocationSize</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#initialValue">$initialValue</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#sequenceName">$sequenceName</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 122</div>
+<h3 id="allocationSize">allocationSize</h3>
+<code class="signature">public  mixed <strong>$allocationSize</strong> = 10</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 123</div>
+<h3 id="initialValue">initialValue</h3>
+<code class="signature">public  mixed <strong>$initialValue</strong> = 1</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 121</div>
+<h3 id="sequenceName">sequenceName</h3>
+<code class="signature">public  mixed <strong>$sequenceName</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/sequencegenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/table.html b/lib/api/doctrine/orm/mapping/table.html
new file mode 100644
index 000000000..885288f99
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/table.html
@@ -0,0 +1,154 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Table (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/table.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Table</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 100</div>
+
+<h1>Class Table</h1>
+
+<pre class="tree">Class:Table - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>Table</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>Table</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#indexes">$indexes</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#schema">$schema</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#uniqueConstraints">$uniqueConstraints</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 103</div>
+<h3 id="indexes">indexes</h3>
+<code class="signature">public  mixed <strong>$indexes</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 101</div>
+<h3 id="name">name</h3>
+<code class="signature">public  mixed <strong>$name</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 102</div>
+<h3 id="schema">schema</h3>
+<code class="signature">public  mixed <strong>$schema</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 104</div>
+<h3 id="uniqueConstraints">uniqueConstraints</h3>
+<code class="signature">public  mixed <strong>$uniqueConstraints</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/table.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/uniqueconstraint.html b/lib/api/doctrine/orm/mapping/uniqueconstraint.html
new file mode 100644
index 000000000..f192771a4
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/uniqueconstraint.html
@@ -0,0 +1,130 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>UniqueConstraint (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/uniqueconstraint.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\UniqueConstraint</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 106</div>
+
+<h1>Class UniqueConstraint</h1>
+
+<pre class="tree">Class:UniqueConstraint - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>UniqueConstraint</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>UniqueConstraint</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#columns">$columns</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 108</div>
+<h3 id="columns">columns</h3>
+<code class="signature">public  mixed <strong>$columns</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 107</div>
+<h3 id="name">name</h3>
+<code class="signature">public  mixed <strong>$name</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/uniqueconstraint.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/mapping/version.html b/lib/api/doctrine/orm/mapping/version.html
new file mode 100644
index 000000000..61a8123f7
--- /dev/null
+++ b/lib/api/doctrine/orm/mapping/version.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Version (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/version.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Mapping\Version</div>
+<div class="location">/Doctrine/ORM/Mapping/Driver/DoctrineAnnotations.php at line 44</div>
+
+<h1>Class Version</h1>
+
+<pre class="tree">Class:Version - Superclass: Annotation
+<a href="../../../doctrine/common/annotations/annotation.html">Annotation</a><br>   &lfloor;&nbsp;<strong>Version</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>Version</strong><br>extends <a href="../../../doctrine/common/annotations/annotation.html">Annotation</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Annotations class</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\Common\Annotations\Annotation</th></tr>
+<tr><td><a href="../../../doctrine/common/annotations/annotation.html#value">value</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/mapping/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/mapping/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/mapping/version.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/nativequery.html b/lib/api/doctrine/orm/nativequery.html
new file mode 100644
index 000000000..1f7387e06
--- /dev/null
+++ b/lib/api/doctrine/orm/nativequery.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>NativeQuery (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/nativequery.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\NativeQuery</div>
+<div class="location">/Doctrine/ORM/NativeQuery.php at line 28</div>
+
+<h1>Class NativeQuery</h1>
+
+<pre class="tree">Class:NativeQuery - Superclass: AbstractQuery
+<a href="../../doctrine/orm/abstractquery.html">AbstractQuery</a><br>   &lfloor;&nbsp;<strong>NativeQuery</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>NativeQuery</strong><br>extends <a href="../../doctrine/orm/abstractquery.html">AbstractQuery</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Represents a native SQL query.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\AbstractQuery</th></tr>
+<tr><td><a href="../../doctrine/orm/abstractquery.html#HYDRATE_ARRAY">HYDRATE_ARRAY</a>, <a href="../../doctrine/orm/abstractquery.html#HYDRATE_OBJECT">HYDRATE_OBJECT</a>, <a href="../../doctrine/orm/abstractquery.html#HYDRATE_SCALAR">HYDRATE_SCALAR</a>, <a href="../../doctrine/orm/abstractquery.html#HYDRATE_SINGLE_SCALAR">HYDRATE_SINGLE_SCALAR</a>, <a href="../../doctrine/orm/abstractquery.html#_em">_em</a>, <a href="../../doctrine/orm/abstractquery.html#_expireResultCache">_expireResultCache</a>, <a href="../../doctrine/orm/abstractquery.html#_hints">_hints</a>, <a href="../../doctrine/orm/abstractquery.html#_hydrationMode">_hydrationMode</a>, <a href="../../doctrine/orm/abstractquery.html#_paramTypes">_paramTypes</a>, <a href="../../doctrine/orm/abstractquery.html#_params">_params</a>, <a href="../../doctrine/orm/abstractquery.html#_resultCacheDriver">_resultCacheDriver</a>, <a href="../../doctrine/orm/abstractquery.html#_resultCacheId">_resultCacheId</a>, <a href="../../doctrine/orm/abstractquery.html#_resultCacheTTL">_resultCacheTTL</a>, <a href="../../doctrine/orm/abstractquery.html#_resultSetMapping">_resultSetMapping</a>, <a href="../../doctrine/orm/abstractquery.html#_useResultCache">_useResultCache</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getSQL()">getSQL</a>()</p><p class="description">Gets the SQL query.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/nativequery.html">NativeQuery</a></td>
+<td class="description"><p class="name"><a href="#setSQL()">setSQL</a>(string sql)</p><p class="description">Sets the SQL of the query.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\AbstractQuery</th></tr>
+<tr><td><a href="../../doctrine/orm/abstractquery.html#execute()">execute</a>, <a href="../../doctrine/orm/abstractquery.html#expireResultCache()">expireResultCache</a>, <a href="../../doctrine/orm/abstractquery.html#free()">free</a>, <a href="../../doctrine/orm/abstractquery.html#getArrayResult()">getArrayResult</a>, <a href="../../doctrine/orm/abstractquery.html#getEntityManager()">getEntityManager</a>, <a href="../../doctrine/orm/abstractquery.html#getExpireResultCache()">getExpireResultCache</a>, <a href="../../doctrine/orm/abstractquery.html#getHint()">getHint</a>, <a href="../../doctrine/orm/abstractquery.html#getHydrationMode()">getHydrationMode</a>, <a href="../../doctrine/orm/abstractquery.html#getParameter()">getParameter</a>, <a href="../../doctrine/orm/abstractquery.html#getParameters()">getParameters</a>, <a href="../../doctrine/orm/abstractquery.html#getResult()">getResult</a>, <a href="../../doctrine/orm/abstractquery.html#getResultCacheDriver()">getResultCacheDriver</a>, <a href="../../doctrine/orm/abstractquery.html#getResultCacheLifetime()">getResultCacheLifetime</a>, <a href="../../doctrine/orm/abstractquery.html#getSQL()">getSQL</a>, <a href="../../doctrine/orm/abstractquery.html#getScalarResult()">getScalarResult</a>, <a href="../../doctrine/orm/abstractquery.html#getSingleResult()">getSingleResult</a>, <a href="../../doctrine/orm/abstractquery.html#getSingleScalarResult()">getSingleScalarResult</a>, <a href="../../doctrine/orm/abstractquery.html#iterate()">iterate</a>, <a href="../../doctrine/orm/abstractquery.html#setHint()">setHint</a>, <a href="../../doctrine/orm/abstractquery.html#setHydrationMode()">setHydrationMode</a>, <a href="../../doctrine/orm/abstractquery.html#setParameter()">setParameter</a>, <a href="../../doctrine/orm/abstractquery.html#setParameters()">setParameters</a>, <a href="../../doctrine/orm/abstractquery.html#setResultCacheDriver()">setResultCacheDriver</a>, <a href="../../doctrine/orm/abstractquery.html#setResultCacheId()">setResultCacheId</a>, <a href="../../doctrine/orm/abstractquery.html#setResultCacheLifetime()">setResultCacheLifetime</a>, <a href="../../doctrine/orm/abstractquery.html#setResultSetMapping()">setResultSetMapping</a>, <a href="../../doctrine/orm/abstractquery.html#useResultCache()">useResultCache</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/NativeQuery.php at line 50</div>
+<h3 id="getSQL()">getSQL</h3>
+<code class="signature">public  mixed <strong>getSQL</strong>()</code>
+<div class="details">
+<p>Gets the SQL query.</p><dl>
+<dt>Returns:</dt>
+<dd>The built SQL query or an array of all SQL queries.</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/NativeQuery.php at line 38</div>
+<h3 id="setSQL()">setSQL</h3>
+<code class="signature">public  <a href="../../doctrine/orm/nativequery.html">NativeQuery</a> <strong>setSQL</strong>(string sql)</code>
+<div class="details">
+<p>Sets the SQL of the query.</p><dl>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/nativequery.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/nonuniqueresultexception.html b/lib/api/doctrine/orm/nonuniqueresultexception.html
new file mode 100644
index 000000000..d9fccbd8c
--- /dev/null
+++ b/lib/api/doctrine/orm/nonuniqueresultexception.html
@@ -0,0 +1,94 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>NonUniqueResultException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/nonuniqueresultexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\NonUniqueResultException</div>
+<div class="location">/Doctrine/ORM/NonUniqueResultException.php at line 11</div>
+
+<h1>Class NonUniqueResultException</h1>
+
+<pre class="tree">Class:NonUniqueResultException - Superclass: ORMException
+Class:ORMException - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<a href="../../doctrine/orm/ormexception.html">ORMException</a><br>      &lfloor;&nbsp;<strong>NonUniqueResultException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>NonUniqueResultException</strong><br>extends <a href="../../doctrine/orm/ormexception.html">ORMException</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Exception thrown when an ORM query unexpectedly returns more than one result.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>robo</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\ORMException</th></tr>
+<tr><td><a href="../../doctrine/orm/ormexception.html#detachedEntityCannotBeRemoved()">detachedEntityCannotBeRemoved</a>, <a href="../../doctrine/orm/ormexception.html#entityManagerClosed()">entityManagerClosed</a>, <a href="../../doctrine/orm/ormexception.html#entityMissingAssignedId()">entityMissingAssignedId</a>, <a href="../../doctrine/orm/ormexception.html#findByRequiresParameter()">findByRequiresParameter</a>, <a href="../../doctrine/orm/ormexception.html#invalidEntityState()">invalidEntityState</a>, <a href="../../doctrine/orm/ormexception.html#invalidFindByCall()">invalidFindByCall</a>, <a href="../../doctrine/orm/ormexception.html#invalidFlushMode()">invalidFlushMode</a>, <a href="../../doctrine/orm/ormexception.html#invalidHydrationMode()">invalidHydrationMode</a>, <a href="../../doctrine/orm/ormexception.html#invalidResultCacheDriver()">invalidResultCacheDriver</a>, <a href="../../doctrine/orm/ormexception.html#metadataCacheNotConfigured()">metadataCacheNotConfigured</a>, <a href="../../doctrine/orm/ormexception.html#mismatchedEventManager()">mismatchedEventManager</a>, <a href="../../doctrine/orm/ormexception.html#missingMappingDriverImpl()">missingMappingDriverImpl</a>, <a href="../../doctrine/orm/ormexception.html#notSupported()">notSupported</a>, <a href="../../doctrine/orm/ormexception.html#proxyClassesAlwaysRegenerating()">proxyClassesAlwaysRegenerating</a>, <a href="../../doctrine/orm/ormexception.html#queryCacheNotConfigured()">queryCacheNotConfigured</a>, <a href="../../doctrine/orm/ormexception.html#removedEntityInCollectionDetected()">removedEntityInCollectionDetected</a>, <a href="../../doctrine/orm/ormexception.html#unknownEntityNamespace()">unknownEntityNamespace</a>, <a href="../../doctrine/orm/ormexception.html#unrecognizedField()">unrecognizedField</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/nonuniqueresultexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/noresultexception.html b/lib/api/doctrine/orm/noresultexception.html
new file mode 100644
index 000000000..88e73a440
--- /dev/null
+++ b/lib/api/doctrine/orm/noresultexception.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>NoResultException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/noresultexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\NoResultException</div>
+<div class="location">/Doctrine/ORM/NoResultException.php at line 11</div>
+
+<h1>Class NoResultException</h1>
+
+<pre class="tree">Class:NoResultException - Superclass: ORMException
+Class:ORMException - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<a href="../../doctrine/orm/ormexception.html">ORMException</a><br>      &lfloor;&nbsp;<strong>NoResultException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>NoResultException</strong><br>extends <a href="../../doctrine/orm/ormexception.html">ORMException</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Exception thrown when an ORM query unexpectedly does not return any results.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>robo</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#NoResultException()">NoResultException</a>()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\ORMException</th></tr>
+<tr><td><a href="../../doctrine/orm/ormexception.html#detachedEntityCannotBeRemoved()">detachedEntityCannotBeRemoved</a>, <a href="../../doctrine/orm/ormexception.html#entityManagerClosed()">entityManagerClosed</a>, <a href="../../doctrine/orm/ormexception.html#entityMissingAssignedId()">entityMissingAssignedId</a>, <a href="../../doctrine/orm/ormexception.html#findByRequiresParameter()">findByRequiresParameter</a>, <a href="../../doctrine/orm/ormexception.html#invalidEntityState()">invalidEntityState</a>, <a href="../../doctrine/orm/ormexception.html#invalidFindByCall()">invalidFindByCall</a>, <a href="../../doctrine/orm/ormexception.html#invalidFlushMode()">invalidFlushMode</a>, <a href="../../doctrine/orm/ormexception.html#invalidHydrationMode()">invalidHydrationMode</a>, <a href="../../doctrine/orm/ormexception.html#invalidResultCacheDriver()">invalidResultCacheDriver</a>, <a href="../../doctrine/orm/ormexception.html#metadataCacheNotConfigured()">metadataCacheNotConfigured</a>, <a href="../../doctrine/orm/ormexception.html#mismatchedEventManager()">mismatchedEventManager</a>, <a href="../../doctrine/orm/ormexception.html#missingMappingDriverImpl()">missingMappingDriverImpl</a>, <a href="../../doctrine/orm/ormexception.html#notSupported()">notSupported</a>, <a href="../../doctrine/orm/ormexception.html#proxyClassesAlwaysRegenerating()">proxyClassesAlwaysRegenerating</a>, <a href="../../doctrine/orm/ormexception.html#queryCacheNotConfigured()">queryCacheNotConfigured</a>, <a href="../../doctrine/orm/ormexception.html#removedEntityInCollectionDetected()">removedEntityInCollectionDetected</a>, <a href="../../doctrine/orm/ormexception.html#unknownEntityNamespace()">unknownEntityNamespace</a>, <a href="../../doctrine/orm/ormexception.html#unrecognizedField()">unrecognizedField</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/NoResultException.php at line 13</div>
+<h3 id="NoResultException()">NoResultException</h3>
+<code class="signature">public <strong>NoResultException</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/noresultexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/optimisticlockexception.html b/lib/api/doctrine/orm/optimisticlockexception.html
new file mode 100644
index 000000000..9694f41e7
--- /dev/null
+++ b/lib/api/doctrine/orm/optimisticlockexception.html
@@ -0,0 +1,111 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>OptimisticLockException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/optimisticlockexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\OptimisticLockException</div>
+<div class="location">/Doctrine/ORM/OptimisticLockException.php at line 30</div>
+
+<h1>Class OptimisticLockException</h1>
+
+<pre class="tree">Class:OptimisticLockException - Superclass: ORMException
+Class:ORMException - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<a href="../../doctrine/orm/ormexception.html">ORMException</a><br>      &lfloor;&nbsp;<strong>OptimisticLockException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OptimisticLockException</strong><br>extends <a href="../../doctrine/orm/ormexception.html">ORMException</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>OptimisticLockException</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#lockFailed()">lockFailed</a>()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\ORMException</th></tr>
+<tr><td><a href="../../doctrine/orm/ormexception.html#detachedEntityCannotBeRemoved()">detachedEntityCannotBeRemoved</a>, <a href="../../doctrine/orm/ormexception.html#entityManagerClosed()">entityManagerClosed</a>, <a href="../../doctrine/orm/ormexception.html#entityMissingAssignedId()">entityMissingAssignedId</a>, <a href="../../doctrine/orm/ormexception.html#findByRequiresParameter()">findByRequiresParameter</a>, <a href="../../doctrine/orm/ormexception.html#invalidEntityState()">invalidEntityState</a>, <a href="../../doctrine/orm/ormexception.html#invalidFindByCall()">invalidFindByCall</a>, <a href="../../doctrine/orm/ormexception.html#invalidFlushMode()">invalidFlushMode</a>, <a href="../../doctrine/orm/ormexception.html#invalidHydrationMode()">invalidHydrationMode</a>, <a href="../../doctrine/orm/ormexception.html#invalidResultCacheDriver()">invalidResultCacheDriver</a>, <a href="../../doctrine/orm/ormexception.html#metadataCacheNotConfigured()">metadataCacheNotConfigured</a>, <a href="../../doctrine/orm/ormexception.html#mismatchedEventManager()">mismatchedEventManager</a>, <a href="../../doctrine/orm/ormexception.html#missingMappingDriverImpl()">missingMappingDriverImpl</a>, <a href="../../doctrine/orm/ormexception.html#notSupported()">notSupported</a>, <a href="../../doctrine/orm/ormexception.html#proxyClassesAlwaysRegenerating()">proxyClassesAlwaysRegenerating</a>, <a href="../../doctrine/orm/ormexception.html#queryCacheNotConfigured()">queryCacheNotConfigured</a>, <a href="../../doctrine/orm/ormexception.html#removedEntityInCollectionDetected()">removedEntityInCollectionDetected</a>, <a href="../../doctrine/orm/ormexception.html#unknownEntityNamespace()">unknownEntityNamespace</a>, <a href="../../doctrine/orm/ormexception.html#unrecognizedField()">unrecognizedField</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/OptimisticLockException.php at line 32</div>
+<h3 id="lockFailed()">lockFailed</h3>
+<code class="signature">public static  void <strong>lockFailed</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/optimisticlockexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/ormexception.html b/lib/api/doctrine/orm/ormexception.html
new file mode 100644
index 000000000..cfa163bf4
--- /dev/null
+++ b/lib/api/doctrine/orm/ormexception.html
@@ -0,0 +1,310 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>ORMException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/ormexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\ORMException</div>
+<div class="location">/Doctrine/ORM/ORMException.php at line 11</div>
+
+<h1>Class ORMException</h1>
+
+<pre class="tree">Class:ORMException - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<strong>ORMException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ORMException</strong><br>extends Exception
+
+</p>
+
+<div class="comment" id="overview_description"><p>Base exception class for all ORM exceptions.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#detachedEntityCannotBeRemoved()">detachedEntityCannotBeRemoved</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#entityManagerClosed()">entityManagerClosed</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#entityMissingAssignedId()">entityMissingAssignedId</a>(mixed entity)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#findByRequiresParameter()">findByRequiresParameter</a>(mixed methodName)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidEntityState()">invalidEntityState</a>(mixed state)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidFindByCall()">invalidFindByCall</a>(mixed entityName, mixed fieldName, mixed method)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidFlushMode()">invalidFlushMode</a>(mixed mode)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidHydrationMode()">invalidHydrationMode</a>(mixed mode)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidResultCacheDriver()">invalidResultCacheDriver</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#metadataCacheNotConfigured()">metadataCacheNotConfigured</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#mismatchedEventManager()">mismatchedEventManager</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#missingMappingDriverImpl()">missingMappingDriverImpl</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#notSupported()">notSupported</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#proxyClassesAlwaysRegenerating()">proxyClassesAlwaysRegenerating</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#queryCacheNotConfigured()">queryCacheNotConfigured</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#removedEntityInCollectionDetected()">removedEntityInCollectionDetected</a>(mixed entity, mixed assoc)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#unknownEntityNamespace()">unknownEntityNamespace</a>(mixed entityNamespaceAlias)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#unrecognizedField()">unrecognizedField</a>(mixed field)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/ORMException.php at line 41</div>
+<h3 id="detachedEntityCannotBeRemoved()">detachedEntityCannotBeRemoved</h3>
+<code class="signature">public static  void <strong>detachedEntityCannotBeRemoved</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 51</div>
+<h3 id="entityManagerClosed()">entityManagerClosed</h3>
+<code class="signature">public static  void <strong>entityManagerClosed</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 19</div>
+<h3 id="entityMissingAssignedId()">entityMissingAssignedId</h3>
+<code class="signature">public static  void <strong>entityMissingAssignedId</strong>(mixed entity)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 66</div>
+<h3 id="findByRequiresParameter()">findByRequiresParameter</h3>
+<code class="signature">public static  void <strong>findByRequiresParameter</strong>(mixed methodName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 36</div>
+<h3 id="invalidEntityState()">invalidEntityState</h3>
+<code class="signature">public static  void <strong>invalidEntityState</strong>(mixed state)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 71</div>
+<h3 id="invalidFindByCall()">invalidFindByCall</h3>
+<code class="signature">public static  void <strong>invalidFindByCall</strong>(mixed entityName, mixed fieldName, mixed method)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 46</div>
+<h3 id="invalidFlushMode()">invalidFlushMode</h3>
+<code class="signature">public static  void <strong>invalidFlushMode</strong>(mixed mode)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 56</div>
+<h3 id="invalidHydrationMode()">invalidHydrationMode</h3>
+<code class="signature">public static  void <strong>invalidHydrationMode</strong>(mixed mode)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 79</div>
+<h3 id="invalidResultCacheDriver()">invalidResultCacheDriver</h3>
+<code class="signature">public static  void <strong>invalidResultCacheDriver</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 92</div>
+<h3 id="metadataCacheNotConfigured()">metadataCacheNotConfigured</h3>
+<code class="signature">public static  void <strong>metadataCacheNotConfigured</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 61</div>
+<h3 id="mismatchedEventManager()">mismatchedEventManager</h3>
+<code class="signature">public static  void <strong>mismatchedEventManager</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 13</div>
+<h3 id="missingMappingDriverImpl()">missingMappingDriverImpl</h3>
+<code class="signature">public static  void <strong>missingMappingDriverImpl</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 83</div>
+<h3 id="notSupported()">notSupported</h3>
+<code class="signature">public static  void <strong>notSupported</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 97</div>
+<h3 id="proxyClassesAlwaysRegenerating()">proxyClassesAlwaysRegenerating</h3>
+<code class="signature">public static  void <strong>proxyClassesAlwaysRegenerating</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 87</div>
+<h3 id="queryCacheNotConfigured()">queryCacheNotConfigured</h3>
+<code class="signature">public static  void <strong>queryCacheNotConfigured</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 29</div>
+<h3 id="removedEntityInCollectionDetected()">removedEntityInCollectionDetected</h3>
+<code class="signature">public static  void <strong>removedEntityInCollectionDetected</strong>(mixed entity, mixed assoc)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 102</div>
+<h3 id="unknownEntityNamespace()">unknownEntityNamespace</h3>
+<code class="signature">public static  void <strong>unknownEntityNamespace</strong>(mixed entityNamespaceAlias)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/ORMException.php at line 24</div>
+<h3 id="unrecognizedField()">unrecognizedField</h3>
+<code class="signature">public static  void <strong>unrecognizedField</strong>(mixed field)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/ormexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/package-frame.html b/lib/api/doctrine/orm/package-frame.html
new file mode 100644
index 000000000..291be6ac6
--- /dev/null
+++ b/lib/api/doctrine/orm/package-frame.html
@@ -0,0 +1,44 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Doctrine\ORM (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../doctrine/orm/abstractquery.html" target="main">AbstractQuery</a></li>
+<li><a href="../../doctrine/orm/configuration.html" target="main">Configuration</a></li>
+<li><a href="../../doctrine/orm/entitymanager.html" target="main">EntityManager</a></li>
+<li><a href="../../doctrine/orm/entitynotfoundexception.html" target="main">EntityNotFoundException</a></li>
+<li><a href="../../doctrine/orm/entityrepository.html" target="main">EntityRepository</a></li>
+<li><a href="../../doctrine/orm/events.html" target="main">Events</a></li>
+<li><a href="../../doctrine/orm/nativequery.html" target="main">NativeQuery</a></li>
+<li><a href="../../doctrine/orm/noresultexception.html" target="main">NoResultException</a></li>
+<li><a href="../../doctrine/orm/nonuniqueresultexception.html" target="main">NonUniqueResultException</a></li>
+<li><a href="../../doctrine/orm/optimisticlockexception.html" target="main">OptimisticLockException</a></li>
+<li><a href="../../doctrine/orm/persistentcollection.html" target="main">PersistentCollection</a></li>
+<li><a href="../../doctrine/orm/query.html" target="main">Query</a></li>
+<li><a href="../../doctrine/orm/querybuilder.html" target="main">QueryBuilder</a></li>
+<li><a href="../../doctrine/orm/unitofwork.html" target="main">UnitOfWork</a></li>
+</ul>
+
+<h2>Exceptions</h2>
+<ul>
+<li><a href="../../doctrine/orm/ormexception.html" target="main">ORMException</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/package-functions.html b/lib/api/doctrine/orm/package-functions.html
new file mode 100644
index 000000000..0552ca072
--- /dev/null
+++ b/lib/api/doctrine/orm/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/package-globals.html b/lib/api/doctrine/orm/package-globals.html
new file mode 100644
index 000000000..cfd9697a7
--- /dev/null
+++ b/lib/api/doctrine/orm/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../overview-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/package-summary.html b/lib/api/doctrine/orm/package-summary.html
new file mode 100644
index 000000000..792d53636
--- /dev/null
+++ b/lib/api/doctrine/orm/package-summary.html
@@ -0,0 +1,90 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Doctrine\ORM (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../doctrine/orm/abstractquery.html">AbstractQuery</a></td><td class="description">Base contract for ORM queries. </td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/configuration.html">Configuration</a></td><td class="description">Configuration container for all configuration options of Doctrine.
+</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/entitymanager.html">EntityManager</a></td><td class="description">The EntityManager is the central access point to ORM functionality.</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/entitynotfoundexception.html">EntityNotFoundException</a></td><td class="description">Exception thrown when a Proxy fails to retrieve an Entity result.</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/entityrepository.html">EntityRepository</a></td><td class="description">An EntityRepository serves as a repository for entities with generic as well as
+business specific methods for retrieving entities.
+</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/events.html">Events</a></td><td class="description">Container for all ORM events.
+</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/nativequery.html">NativeQuery</a></td><td class="description">Represents a native SQL query.</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/noresultexception.html">NoResultException</a></td><td class="description">Exception thrown when an ORM query unexpectedly does not return any results.</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/nonuniqueresultexception.html">NonUniqueResultException</a></td><td class="description">Exception thrown when an ORM query unexpectedly returns more than one result.</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/optimisticlockexception.html">OptimisticLockException</a></td><td class="description">OptimisticLockException</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/persistentcollection.html">PersistentCollection</a></td><td class="description">A PersistentCollection represents a collection of elements that have persistent state.
+</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/query.html">Query</a></td><td class="description">A Query object represents a DQL query.</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td><td class="description">This class is responsible for building DQL query strings via an object oriented
+PHP interface.</td></tr>
+<tr><td class="name"><a href="../../doctrine/orm/unitofwork.html">UnitOfWork</a></td><td class="description">The UnitOfWork is responsible for tracking changes to objects during an
+"object-level" transaction and for writing out changes to the database
+in the correct order.</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Exception Summary</th></tr>
+<tr><td class="name"><a href="../../doctrine/orm/ormexception.html">ORMException</a></td><td class="description">Base exception class for all ORM exceptions.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/package-tree.html b/lib/api/doctrine/orm/package-tree.html
new file mode 100644
index 000000000..ba30a24b6
--- /dev/null
+++ b/lib/api/doctrine/orm/package-tree.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Doctrine\ORM (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM</h1><ul>
+<li><a href="../../doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a><ul>
+<li><a href="../../doctrine/orm/nativequery.html">Doctrine\ORM\NativeQuery</a></li>
+<li><a href="../../doctrine/orm/query.html">Doctrine\ORM\Query</a></li>
+</ul>
+</li>
+<li><a href="../../doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></li>
+<li><a href="../../doctrine/orm/entityrepository.html">Doctrine\ORM\EntityRepository</a></li>
+<li><a href="../../doctrine/orm/events.html">Doctrine\ORM\Events</a></li>
+<li><a href="../../doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></li>
+<li><a href="../../doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></li>
+<li><a href="../../doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persistentcollection.html b/lib/api/doctrine/orm/persistentcollection.html
new file mode 100644
index 000000000..609b9471d
--- /dev/null
+++ b/lib/api/doctrine/orm/persistentcollection.html
@@ -0,0 +1,714 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>PersistentCollection (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/persistentcollection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\PersistentCollection</div>
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 44</div>
+
+<h1>Class PersistentCollection</h1>
+
+<pre class="tree"><strong>PersistentCollection</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>Collection </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public final  class <strong>PersistentCollection</strong></p>
+
+<div class="comment" id="overview_description"><p>A PersistentCollection represents a collection of elements that have persistent state.</p><p>Collections of entities represent only the associations (links) to those entities.
+That means, if the collection is part of a many-many mapping and you remove
+entities from the collection, only the links in the relation table are removed (on flush).
+Similarly, if you remove entities from a collection that is part of a one-many
+mapping this will only result in the nulling out of the foreign keys on flush.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 4930 $</dd>
+<dt>Author:</dt>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Giorgio Sironi <piccoloprincipeazzurro@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#PersistentCollection()">PersistentCollection</a>(<a href="../../doctrine/orm/entitymanager.html">EntityManager</a> em, <a href="../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> class, mixed coll, array The)</p><p class="description">Creates a new persistent collection.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#add()">add</a>(mixed value)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#clear()">clear</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#contains()">contains</a>(mixed element)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#containsKey()">containsKey</a>(mixed key)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#count()">count</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#current()">current</a>()</p><p class="description">Gets the element of the collection at the current iterator position.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#exists()">exists</a>(mixed p)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#filter()">filter</a>(mixed p)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#first()">first</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#forAll()">forAll</a>(mixed p)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#get()">get</a>(mixed key)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getDeleteDiff()">getDeleteDiff</a>()</p><p class="description">INTERNAL:
+getDeleteDiff</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getInsertDiff()">getInsertDiff</a>()</p><p class="description">INTERNAL:
+getInsertDiff</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getIterator()">getIterator</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getKeys()">getKeys</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Mapping\AssociationMapping</td>
+<td class="description"><p class="name"><a href="#getMapping()">getMapping</a>()</p><p class="description">INTERNAL: Gets the association mapping of the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#getOwner()">getOwner</a>()</p><p class="description">INTERNAL:
+Gets the collection owner.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getSnapshot()">getSnapshot</a>()</p><p class="description">INTERNAL:
+Returns the last snapshot of the elements in the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getTypeClass()">getTypeClass</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getValues()">getValues</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#hydrateAdd()">hydrateAdd</a>(mixed element)</p><p class="description">INTERNAL:
+Adds an element to a collection during hydration. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#hydrateSet()">hydrateSet</a>(mixed key, mixed element)</p><p class="description">INTERNAL:
+Sets a keyed element in the collection during hydration.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#indexOf()">indexOf</a>(mixed element)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isDirty()">isDirty</a>()</p><p class="description">Gets a boolean flag indicating whether this colleciton is dirty which means
+its state needs to be synchronized with the database.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isEmpty()">isEmpty</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isInitialized()">isInitialized</a>()</p><p class="description">Checks whether this collection has been initialized.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#key()">key</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#last()">last</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#map()">map</a>(mixed func)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#next()">next</a>()</p><p class="description">Moves the internal iterator position to the next element.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#offsetExists()">offsetExists</a>(mixed offset)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#offsetGet()">offsetGet</a>(mixed offset)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#offsetSet()">offsetSet</a>(mixed offset, mixed value)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#offsetUnset()">offsetUnset</a>(mixed offset)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#partition()">partition</a>(mixed p)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#remove()">remove</a>(mixed key)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#removeElement()">removeElement</a>(mixed element)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#set()">set</a>(mixed key, mixed value)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setDirty()">setDirty</a>(boolean dirty)</p><p class="description">Sets a boolean flag, indicating whether this collection is dirty.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setInitialized()">setInitialized</a>(boolean bool)</p><p class="description">Sets the initialized flag of the collection, forcing it into that state.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setOwner()">setOwner</a>(object entity, <a href="../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a> assoc)</p><p class="description">INTERNAL:
+Sets the collection's owning entity together with the AssociationMapping that
+describes the association between the owner and the elements of the collection.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#takeSnapshot()">takeSnapshot</a>()</p><p class="description">INTERNAL:
+Tells this collection to take a snapshot of its current state.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#toArray()">toArray</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#unwrap()">unwrap</a>()</p><p class="description">Retrieves the wrapped Collection instance.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 118</div>
+<h3 id="PersistentCollection()">PersistentCollection</h3>
+<code class="signature">public <strong>PersistentCollection</strong>(<a href="../../doctrine/orm/entitymanager.html">EntityManager</a> em, <a href="../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> class, mixed coll, array The)</code>
+<div class="details">
+<p>Creates a new persistent collection.</p><dl>
+<dt>Parameters:</dt>
+<dd>em - The EntityManager the collection will be associated with.</dd>
+<dd>class - The class descriptor of the entity type of this collection.</dd>
+<dd>The - collection elements.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 491</div>
+<h3 id="add()">add</h3>
+<code class="signature">public  void <strong>add</strong>(mixed value)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 564</div>
+<h3 id="clear()">clear</h3>
+<code class="signature">public  void <strong>clear</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 401</div>
+<h3 id="contains()">contains</h3>
+<code class="signature">public  void <strong>contains</strong>(mixed element)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 392</div>
+<h3 id="containsKey()">containsKey</h3>
+<code class="signature">public  void <strong>containsKey</strong>(mixed key)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 472</div>
+<h3 id="count()">count</h3>
+<code class="signature">public  void <strong>count</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 634</div>
+<h3 id="current()">current</h3>
+<code class="signature">public  void <strong>current</strong>()</code>
+<div class="details">
+<p>Gets the element of the collection at the current iterator position.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 427</div>
+<h3 id="exists()">exists</h3>
+<code class="signature">public  void <strong>exists</strong>(mixed p)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 528</div>
+<h3 id="filter()">filter</h3>
+<code class="signature">public  void <strong>filter</strong>(mixed p)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 333</div>
+<h3 id="first()">first</h3>
+<code class="signature">public  void <strong>first</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 537</div>
+<h3 id="forAll()">forAll</h3>
+<code class="signature">public  void <strong>forAll</strong>(mixed p)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 445</div>
+<h3 id="get()">get</h3>
+<code class="signature">public  void <strong>get</strong>(mixed key)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 250</div>
+<h3 id="getDeleteDiff()">getDeleteDiff</h3>
+<code class="signature">public  array <strong>getDeleteDiff</strong>()</code>
+<div class="details">
+<p>INTERNAL:
+getDeleteDiff</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 262</div>
+<h3 id="getInsertDiff()">getInsertDiff</h3>
+<code class="signature">public  array <strong>getInsertDiff</strong>()</code>
+<div class="details">
+<p>INTERNAL:
+getInsertDiff</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 510</div>
+<h3 id="getIterator()">getIterator</h3>
+<code class="signature">public  void <strong>getIterator</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 454</div>
+<h3 id="getKeys()">getKeys</h3>
+<code class="signature">public  void <strong>getKeys</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 273</div>
+<h3 id="getMapping()">getMapping</h3>
+<code class="signature">public  Doctrine\ORM\Mapping\AssociationMapping <strong>getMapping</strong>()</code>
+<div class="details">
+<p>INTERNAL: Gets the association mapping of the collection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 146</div>
+<h3 id="getOwner()">getOwner</h3>
+<code class="signature">public  object <strong>getOwner</strong>()</code>
+<div class="details">
+<p>INTERNAL:
+Gets the collection owner.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 239</div>
+<h3 id="getSnapshot()">getSnapshot</h3>
+<code class="signature">public  array <strong>getSnapshot</strong>()</code>
+<div class="details">
+<p>INTERNAL:
+Returns the last snapshot of the elements in the collection.</p><dl>
+<dt>Returns:</dt>
+<dd>The last snapshot of the elements.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 151</div>
+<h3 id="getTypeClass()">getTypeClass</h3>
+<code class="signature">public  void <strong>getTypeClass</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 463</div>
+<h3 id="getValues()">getValues</h3>
+<code class="signature">public  void <strong>getValues</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 163</div>
+<h3 id="hydrateAdd()">hydrateAdd</h3>
+<code class="signature">public  void <strong>hydrateAdd</strong>(mixed element)</code>
+<div class="details">
+<p>INTERNAL:
+Adds an element to a collection during hydration. This will automatically
+complete bidirectional associations in the case of a one-to-many association.</p><dl>
+<dt>Parameters:</dt>
+<dd>element - The element to add.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 186</div>
+<h3 id="hydrateSet()">hydrateSet</h3>
+<code class="signature">public  void <strong>hydrateSet</strong>(mixed key, mixed element)</code>
+<div class="details">
+<p>INTERNAL:
+Sets a keyed element in the collection during hydration.</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The key to set. $param mixed $value The element to set.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 436</div>
+<h3 id="indexOf()">indexOf</h3>
+<code class="signature">public  void <strong>indexOf</strong>(mixed element)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 297</div>
+<h3 id="isDirty()">isDirty</h3>
+<code class="signature">public  boolean <strong>isDirty</strong>()</code>
+<div class="details">
+<p>Gets a boolean flag indicating whether this colleciton is dirty which means
+its state needs to be synchronized with the database.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if the collection is dirty, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 501</div>
+<h3 id="isEmpty()">isEmpty</h3>
+<code class="signature">public  void <strong>isEmpty</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 327</div>
+<h3 id="isInitialized()">isInitialized</h3>
+<code class="signature">public  boolean <strong>isInitialized</strong>()</code>
+<div class="details">
+<p>Checks whether this collection has been initialized.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 626</div>
+<h3 id="key()">key</h3>
+<code class="signature">public  void <strong>key</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 340</div>
+<h3 id="last()">last</h3>
+<code class="signature">public  void <strong>last</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 519</div>
+<h3 id="map()">map</h3>
+<code class="signature">public  void <strong>map</strong>(mixed func)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 642</div>
+<h3 id="next()">next</h3>
+<code class="signature">public  void <strong>next</strong>()</code>
+<div class="details">
+<p>Moves the internal iterator position to the next element.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 593</div>
+<h3 id="offsetExists()">offsetExists</h3>
+<code class="signature">public  void <strong>offsetExists</strong>(mixed offset)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>containsKey()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 601</div>
+<h3 id="offsetGet()">offsetGet</h3>
+<code class="signature">public  void <strong>offsetGet</strong>(mixed offset)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>get()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 610</div>
+<h3 id="offsetSet()">offsetSet</h3>
+<code class="signature">public  void <strong>offsetSet</strong>(mixed offset, mixed value)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>add()</dd>
+<dd>set()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 621</div>
+<h3 id="offsetUnset()">offsetUnset</h3>
+<code class="signature">public  void <strong>offsetUnset</strong>(mixed offset)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>remove()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 546</div>
+<h3 id="partition()">partition</h3>
+<code class="signature">public  void <strong>partition</strong>(mixed p)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 349</div>
+<h3 id="remove()">remove</h3>
+<code class="signature">public  void <strong>remove</strong>(mixed key)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 371</div>
+<h3 id="removeElement()">removeElement</h3>
+<code class="signature">public  void <strong>removeElement</strong>(mixed element)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 481</div>
+<h3 id="set()">set</h3>
+<code class="signature">public  void <strong>set</strong>(mixed key, mixed value)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 307</div>
+<h3 id="setDirty()">setDirty</h3>
+<code class="signature">public  void <strong>setDirty</strong>(boolean dirty)</code>
+<div class="details">
+<p>Sets a boolean flag, indicating whether this collection is dirty.</p><dl>
+<dt>Parameters:</dt>
+<dd>dirty - Whether the collection should be marked dirty or not.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 317</div>
+<h3 id="setInitialized()">setInitialized</h3>
+<code class="signature">public  void <strong>setInitialized</strong>(boolean bool)</code>
+<div class="details">
+<p>Sets the initialized flag of the collection, forcing it into that state.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 133</div>
+<h3 id="setOwner()">setOwner</h3>
+<code class="signature">public  void <strong>setOwner</strong>(object entity, <a href="../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a> assoc)</code>
+<div class="details">
+<p>INTERNAL:
+Sets the collection's owning entity together with the AssociationMapping that
+describes the association between the owner and the elements of the collection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 227</div>
+<h3 id="takeSnapshot()">takeSnapshot</h3>
+<code class="signature">public  void <strong>takeSnapshot</strong>()</code>
+<div class="details">
+<p>INTERNAL:
+Tells this collection to take a snapshot of its current state.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 555</div>
+<h3 id="toArray()">toArray</h3>
+<code class="signature">public  void <strong>toArray</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/PersistentCollection.php at line 650</div>
+<h3 id="unwrap()">unwrap</h3>
+<code class="signature">public  void <strong>unwrap</strong>()</code>
+<div class="details">
+<p>Retrieves the wrapped Collection instance.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/persistentcollection.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/abstractcollectionpersister.html b/lib/api/doctrine/orm/persisters/abstractcollectionpersister.html
new file mode 100644
index 000000000..fc8333dc0
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/abstractcollectionpersister.html
@@ -0,0 +1,198 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AbstractCollectionPersister (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Persisters\AbstractCollectionPersister</div>
+<div class="location">/Doctrine/ORM/Persisters/AbstractCollectionPersister.php at line 31</div>
+
+<h1>Class AbstractCollectionPersister</h1>
+
+<pre class="tree"><strong>AbstractCollectionPersister</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractCollectionPersister</strong></p>
+
+<div class="comment" id="overview_description"><p>Base class for all collection persisters.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  Doctrine\DBAL\Connection</td>
+<td class="description"><p class="name"><a href="#_conn">$_conn</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#_em">$_em</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  Doctrine\ORM\UnitOfWork</td>
+<td class="description"><p class="name"><a href="#_uow">$_uow</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AbstractCollectionPersister()">AbstractCollectionPersister</a>(Doctrine\ORM\EntityManager em)</p><p class="description">Initializes a new instance of a class derived from AbstractCollectionPersister.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#delete()">delete</a>(<a href="../../../doctrine/orm/persistentcollection.html">PersistentCollection</a> coll)</p><p class="description">Deletes the persistent state represented by the given collection.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#deleteRows()">deleteRows</a>(mixed coll)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#insertRows()">insertRows</a>(mixed coll)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#update()">update</a>(<a href="../../../doctrine/orm/persistentcollection.html">PersistentCollection</a> coll)</p><p class="description">Updates the given collection, synchronizing it's state with the database
+by inserting, updating and deleting individual elements.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Persisters/AbstractCollectionPersister.php at line 41</div>
+<h3 id="_conn">_conn</h3>
+<code class="signature">protected  Doctrine\DBAL\Connection <strong>$_conn</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/AbstractCollectionPersister.php at line 36</div>
+<h3 id="_em">_em</h3>
+<code class="signature">protected  <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>$_em</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/AbstractCollectionPersister.php at line 46</div>
+<h3 id="_uow">_uow</h3>
+<code class="signature">protected  Doctrine\ORM\UnitOfWork <strong>$_uow</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Persisters/AbstractCollectionPersister.php at line 53</div>
+<h3 id="AbstractCollectionPersister()">AbstractCollectionPersister</h3>
+<code class="signature">public <strong>AbstractCollectionPersister</strong>(Doctrine\ORM\EntityManager em)</code>
+<div class="details">
+<p>Initializes a new instance of a class derived from AbstractCollectionPersister.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Persisters/AbstractCollectionPersister.php at line 65</div>
+<h3 id="delete()">delete</h3>
+<code class="signature">public  void <strong>delete</strong>(<a href="../../../doctrine/orm/persistentcollection.html">PersistentCollection</a> coll)</code>
+<div class="details">
+<p>Deletes the persistent state represented by the given collection.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/AbstractCollectionPersister.php at line 105</div>
+<h3 id="deleteRows()">deleteRows</h3>
+<code class="signature">public  void <strong>deleteRows</strong>(mixed coll)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/AbstractCollectionPersister.php at line 117</div>
+<h3 id="insertRows()">insertRows</h3>
+<code class="signature">public  void <strong>insertRows</strong>(mixed coll)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/AbstractCollectionPersister.php at line 95</div>
+<h3 id="update()">update</h3>
+<code class="signature">public  void <strong>update</strong>(<a href="../../../doctrine/orm/persistentcollection.html">PersistentCollection</a> coll)</code>
+<div class="details">
+<p>Updates the given collection, synchronizing it's state with the database
+by inserting, updating and deleting individual elements.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/abstractentityinheritancepersister.html b/lib/api/doctrine/orm/persisters/abstractentityinheritancepersister.html
new file mode 100644
index 000000000..f628ed200
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/abstractentityinheritancepersister.html
@@ -0,0 +1,103 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>AbstractEntityInheritancePersister (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/abstractentityinheritancepersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Persisters\AbstractEntityInheritancePersister</div>
+<div class="location">/Doctrine/ORM/Persisters/AbstractEntityInheritancePersister.php at line 33</div>
+
+<h1>Class AbstractEntityInheritancePersister</h1>
+
+<pre class="tree">Class:AbstractEntityInheritancePersister - Superclass: StandardEntityPersister
+<a href="../../../doctrine/orm/persisters/standardentitypersister.html">StandardEntityPersister</a><br>   &lfloor;&nbsp;<strong>AbstractEntityInheritancePersister</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractEntityInheritancePersister</strong><br>extends <a href="../../../doctrine/orm/persisters/standardentitypersister.html">StandardEntityPersister</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Base class for entity persisters that implement a certain inheritance mapping strategy.
+All these persisters are assumed to use a discriminator column to discriminate entity
+types in the hierarchy.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Todo:</dt>
+<dd>Rename: BasicEntityPersister</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Persisters\StandardEntityPersister</th></tr>
+<tr><td><a href="../../../doctrine/orm/persisters/standardentitypersister.html#_class">_class</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_columnTypes">_columnTypes</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_conn">_conn</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_em">_em</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_platform">_platform</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_queuedInserts">_queuedInserts</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_resultColumnNames">_resultColumnNames</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_selectColumnListSql">_selectColumnListSql</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_sqlAliasCounter">_sqlAliasCounter</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_sqlTableAliases">_sqlTableAliases</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Persisters\StandardEntityPersister</th></tr>
+<tr><td><a href="../../../doctrine/orm/persisters/standardentitypersister.html#addInsert()">addInsert</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#delete()">delete</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#executeInserts()">executeInserts</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#getClassMetadata()">getClassMetadata</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#getInsertSQL()">getInsertSQL</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#getOwningTable()">getOwningTable</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#load()">load</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#loadAll()">loadAll</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#loadManyToManyCollection()">loadManyToManyCollection</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#loadOneToManyCollection()">loadOneToManyCollection</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#refresh()">refresh</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#update()">update</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/abstractentityinheritancepersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/elementcollectionpersister.html b/lib/api/doctrine/orm/persisters/elementcollectionpersister.html
new file mode 100644
index 000000000..29fb8a3bb
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/elementcollectionpersister.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ElementCollectionPersister (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/elementcollectionpersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Persisters\ElementCollectionPersister</div>
+<div class="location">/Doctrine/ORM/Persisters/ElementCollectionPersister.php at line 30</div>
+
+<h1>Class ElementCollectionPersister</h1>
+
+<pre class="tree">Class:ElementCollectionPersister - Superclass: AbstractCollectionPersister
+<a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html">AbstractCollectionPersister</a><br>   &lfloor;&nbsp;<strong>ElementCollectionPersister</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>ElementCollectionPersister</strong><br>extends <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html">AbstractCollectionPersister</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Persister for collections of basic elements / value types.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>robo</dd>
+<dt>Todo:</dt>
+<dd>Implementation once support for collections of basic elements (i.e. strings) is added.</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Persisters\AbstractCollectionPersister</th></tr>
+<tr><td><a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#_conn">_conn</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#_em">_em</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#_uow">_uow</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Persisters\AbstractCollectionPersister</th></tr>
+<tr><td><a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#delete()">delete</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#deleteRows()">deleteRows</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#insertRows()">insertRows</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#update()">update</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/elementcollectionpersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/joinedsubclasspersister.html b/lib/api/doctrine/orm/persisters/joinedsubclasspersister.html
new file mode 100644
index 000000000..f6c11d29e
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/joinedsubclasspersister.html
@@ -0,0 +1,167 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>JoinedSubclassPersister (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/joinedsubclasspersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Persisters\JoinedSubclassPersister</div>
+<div class="location">/Doctrine/ORM/Persisters/JoinedSubclassPersister.php at line 36</div>
+
+<h1>Class JoinedSubclassPersister</h1>
+
+<pre class="tree">Class:JoinedSubclassPersister - Superclass: AbstractEntityInheritancePersister
+Class:AbstractEntityInheritancePersister - Superclass: StandardEntityPersister
+<a href="../../../doctrine/orm/persisters/standardentitypersister.html">StandardEntityPersister</a><br>   &lfloor;&nbsp;<a href="../../../doctrine/orm/persisters/abstractentityinheritancepersister.html">AbstractEntityInheritancePersister</a><br>      &lfloor;&nbsp;<strong>JoinedSubclassPersister</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>JoinedSubclassPersister</strong><br>extends <a href="../../../doctrine/orm/persisters/abstractentityinheritancepersister.html">AbstractEntityInheritancePersister</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>The joined subclass persister maps a single entity instance to several tables in the
+database as it is defined by the <tt>Class Table Inheritance</tt> strategy.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>See Also:</dt>
+<dd><a href="http://martinfowler.com/eaaCatalog/classTableInheritance.html">http://martinfowler.com/eaaCatalog/classTableInheritance.html</a></dd>
+<dt>Todo:</dt>
+<dd>Rename: BasicEntityPersister</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#delete()">delete</a>(object entity)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#executeInserts()">executeInserts</a>()</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getOwningTable()">getOwningTable</a>(string fieldName)</p><p class="description">Gets the name of the table that owns the column the given field is mapped to.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#update()">update</a>(object entity)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Persisters/JoinedSubclassPersister.php at line 210</div>
+<h3 id="delete()">delete</h3>
+<code class="signature">public  void <strong>delete</strong>(object entity)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to delete.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/JoinedSubclassPersister.php at line 100</div>
+<h3 id="executeInserts()">executeInserts</h3>
+<code class="signature">public  array <strong>executeInserts</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Returns:</dt>
+<dd>An array of any generated post-insert IDs. This will be an empty array if the entity class does not use the IDENTITY generation strategy.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/JoinedSubclassPersister.php at line 78</div>
+<h3 id="getOwningTable()">getOwningTable</h3>
+<code class="signature">public  string <strong>getOwningTable</strong>(string fieldName)</code>
+<div class="details">
+<p>Gets the name of the table that owns the column the given field is mapped to.</p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/JoinedSubclassPersister.php at line 187</div>
+<h3 id="update()">update</h3>
+<code class="signature">public  void <strong>update</strong>(object entity)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to update.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/joinedsubclasspersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/manytomanypersister.html b/lib/api/doctrine/orm/persisters/manytomanypersister.html
new file mode 100644
index 000000000..7c3d6da67
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/manytomanypersister.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ManyToManyPersister (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/manytomanypersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Persisters\ManyToManyPersister</div>
+<div class="location">/Doctrine/ORM/Persisters/ManyToManyPersister.php at line 32</div>
+
+<h1>Class ManyToManyPersister</h1>
+
+<pre class="tree">Class:ManyToManyPersister - Superclass: AbstractCollectionPersister
+<a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html">AbstractCollectionPersister</a><br>   &lfloor;&nbsp;<strong>ManyToManyPersister</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ManyToManyPersister</strong><br>extends <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html">AbstractCollectionPersister</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Persister for many-to-many collections.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Persisters\AbstractCollectionPersister</th></tr>
+<tr><td><a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#_conn">_conn</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#_em">_em</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#_uow">_uow</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Persisters\AbstractCollectionPersister</th></tr>
+<tr><td><a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#delete()">delete</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#deleteRows()">deleteRows</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#insertRows()">insertRows</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#update()">update</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/manytomanypersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/onetomanypersister.html b/lib/api/doctrine/orm/persisters/onetomanypersister.html
new file mode 100644
index 000000000..7d8c9b648
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/onetomanypersister.html
@@ -0,0 +1,101 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>OneToManyPersister (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/onetomanypersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Persisters\OneToManyPersister</div>
+<div class="location">/Doctrine/ORM/Persisters/OneToManyPersister.php at line 37</div>
+
+<h1>Class OneToManyPersister</h1>
+
+<pre class="tree">Class:OneToManyPersister - Superclass: AbstractCollectionPersister
+<a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html">AbstractCollectionPersister</a><br>   &lfloor;&nbsp;<strong>OneToManyPersister</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OneToManyPersister</strong><br>extends <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html">AbstractCollectionPersister</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Persister for one-to-many collections.</p><p>IMPORTANT:
+This persister is only used for uni-directional one-to-many mappings on a foreign key
+(which are not yet supported). So currently this persister is not used.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Todo:</dt>
+<dd>Remove</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Persisters\AbstractCollectionPersister</th></tr>
+<tr><td><a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#_conn">_conn</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#_em">_em</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#_uow">_uow</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Persisters\AbstractCollectionPersister</th></tr>
+<tr><td><a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#delete()">delete</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#deleteRows()">deleteRows</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#insertRows()">insertRows</a>, <a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html#update()">update</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/onetomanypersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/package-frame.html b/lib/api/doctrine/orm/persisters/package-frame.html
new file mode 100644
index 000000000..b4a584f48
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/package-frame.html
@@ -0,0 +1,34 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Persisters (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Persisters</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html" target="main">AbstractCollectionPersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/abstractentityinheritancepersister.html" target="main">AbstractEntityInheritancePersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/elementcollectionpersister.html" target="main">ElementCollectionPersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/joinedsubclasspersister.html" target="main">JoinedSubclassPersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/manytomanypersister.html" target="main">ManyToManyPersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/onetomanypersister.html" target="main">OneToManyPersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/singletablepersister.html" target="main">SingleTablePersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/standardentitypersister.html" target="main">StandardEntityPersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/unionsubclasspersister.html" target="main">UnionSubclassPersister</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/package-functions.html b/lib/api/doctrine/orm/persisters/package-functions.html
new file mode 100644
index 000000000..3ad316cb0
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/package-globals.html b/lib/api/doctrine/orm/persisters/package-globals.html
new file mode 100644
index 000000000..b1442b18a
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/package-summary.html b/lib/api/doctrine/orm/persisters/package-summary.html
new file mode 100644
index 000000000..1a222edcf
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/package-summary.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Persisters (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Persisters</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html">AbstractCollectionPersister</a></td><td class="description">Base class for all collection persisters.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/persisters/abstractentityinheritancepersister.html">AbstractEntityInheritancePersister</a></td><td class="description">Base class for entity persisters that implement a certain inheritance mapping strategy.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/persisters/elementcollectionpersister.html">ElementCollectionPersister</a></td><td class="description">Persister for collections of basic elements / value types.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/persisters/joinedsubclasspersister.html">JoinedSubclassPersister</a></td><td class="description">The joined subclass persister maps a single entity instance to several tables in the
+database as it is defined by the Class Table Inheritance strategy.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/persisters/manytomanypersister.html">ManyToManyPersister</a></td><td class="description">Persister for many-to-many collections.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/persisters/onetomanypersister.html">OneToManyPersister</a></td><td class="description">Persister for one-to-many collections.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/persisters/singletablepersister.html">SingleTablePersister</a></td><td class="description">Persister for entities that participate in a hierarchy mapped with the
+SINGLE_TABLE strategy.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/persisters/standardentitypersister.html">StandardEntityPersister</a></td><td class="description">A basic entity persister that maps an entity with no (mapped) inheritance to a single table
+in the relational database.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/persisters/unionsubclasspersister.html">UnionSubclassPersister</a></td><td class="description">A basic entity persister that maps an entity with no (mapped) inheritance to a single table
+in the relational database.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/package-tree.html b/lib/api/doctrine/orm/persisters/package-tree.html
new file mode 100644
index 000000000..f5714073f
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/package-tree.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Persisters (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Persisters</h1><ul>
+<li><a href="../../../doctrine/orm/persisters/abstractcollectionpersister.html">Doctrine\ORM\Persisters\AbstractCollectionPersister</a><ul>
+<li><a href="../../../doctrine/orm/persisters/elementcollectionpersister.html">Doctrine\ORM\Persisters\ElementCollectionPersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/manytomanypersister.html">Doctrine\ORM\Persisters\ManyToManyPersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/onetomanypersister.html">Doctrine\ORM\Persisters\OneToManyPersister</a></li>
+</ul>
+</li>
+<li><a href="../../../doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a><ul>
+<li><a href="../../../doctrine/orm/persisters/abstractentityinheritancepersister.html">Doctrine\ORM\Persisters\AbstractEntityInheritancePersister</a><ul>
+<li><a href="../../../doctrine/orm/persisters/joinedsubclasspersister.html">Doctrine\ORM\Persisters\JoinedSubclassPersister</a></li>
+<li><a href="../../../doctrine/orm/persisters/singletablepersister.html">Doctrine\ORM\Persisters\SingleTablePersister</a></li>
+</ul>
+</li>
+<li><a href="../../../doctrine/orm/persisters/unionsubclasspersister.html">Doctrine\ORM\Persisters\UnionSubclassPersister</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/singletablepersister.html b/lib/api/doctrine/orm/persisters/singletablepersister.html
new file mode 100644
index 000000000..9d9b828fa
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/singletablepersister.html
@@ -0,0 +1,97 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SingleTablePersister (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/singletablepersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Persisters\SingleTablePersister</div>
+<div class="location">/Doctrine/ORM/Persisters/SingleTablePersister.php at line 33</div>
+
+<h1>Class SingleTablePersister</h1>
+
+<pre class="tree">Class:SingleTablePersister - Superclass: AbstractEntityInheritancePersister
+Class:AbstractEntityInheritancePersister - Superclass: StandardEntityPersister
+<a href="../../../doctrine/orm/persisters/standardentitypersister.html">StandardEntityPersister</a><br>   &lfloor;&nbsp;<a href="../../../doctrine/orm/persisters/abstractentityinheritancepersister.html">AbstractEntityInheritancePersister</a><br>      &lfloor;&nbsp;<strong>SingleTablePersister</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SingleTablePersister</strong><br>extends <a href="../../../doctrine/orm/persisters/abstractentityinheritancepersister.html">AbstractEntityInheritancePersister</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Persister for entities that participate in a hierarchy mapped with the
+SINGLE_TABLE strategy.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>See Also:</dt>
+<dd><code><a href="http://martinfowler.com/eaaCatalog/singleTableInheritance.html">http://martinfowler.com/eaaCatalog/singleTableInheritance.html</a></code></dd>
+<dt>Todo:</dt>
+<dd>Rename: BasicEntityPersister</dd>
+</dl>
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/singletablepersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/standardentitypersister.html b/lib/api/doctrine/orm/persisters/standardentitypersister.html
new file mode 100644
index 000000000..781db0d84
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/standardentitypersister.html
@@ -0,0 +1,443 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>StandardEntityPersister (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/standardentitypersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Persisters\StandardEntityPersister</div>
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 43</div>
+
+<h1>Class StandardEntityPersister</h1>
+
+<pre class="tree"><strong>StandardEntityPersister</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>StandardEntityPersister</strong></p>
+
+<div class="comment" id="overview_description"><p>A basic entity persister that maps an entity with no (mapped) inheritance to a single table
+in the relational database.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Giorgio Sironi <piccoloprincipeazzurro@gmail.com></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Todo:</dt>
+<dd>Rename: BasicEntityPersister</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  Doctrine\ORM\Mapping\ClassMetadata</td>
+<td class="description"><p class="name"><a href="#_class">$_class</a></p><p class="description">Metadata object that describes the mapping of the mapped entity class.</p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_columnTypes">$_columnTypes</a></p><p class="description">The map of column names to DBAL mapping types of all prepared columns used when INSERTing
+or UPDATEing an entity.</p></td>
+</tr>
+<tr>
+<td class="type">protected  Doctrine\DBAL\Connection $conn</td>
+<td class="description"><p class="name"><a href="#_conn">$_conn</a></p><p class="description">The underlying Connection of the used EntityManager.</p></td>
+</tr>
+<tr>
+<td class="type">protected  Doctrine\ORM\EntityManager</td>
+<td class="description"><p class="name"><a href="#_em">$_em</a></p><p class="description">The EntityManager instance.</p></td>
+</tr>
+<tr>
+<td class="type">protected  <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a></td>
+<td class="description"><p class="name"><a href="#_platform">$_platform</a></p><p class="description">The database platform.</p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_queuedInserts">$_queuedInserts</a></p><p class="description">Queued inserts.</p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_resultColumnNames">$_resultColumnNames</a></p><p class="description">Case-sensitive mappings of column names as they appear in an SQL result set
+to column names as they are defined in the mapping. </p></td>
+</tr>
+<tr>
+<td class="type">protected  string</td>
+<td class="description"><p class="name"><a href="#_selectColumnListSql">$_selectColumnListSql</a></p><p class="description">The SELECT column list SQL fragment used for querying entities by this persister.
+</p></td>
+</tr>
+<tr>
+<td class="type">protected  integer</td>
+<td class="description"><p class="name"><a href="#_sqlAliasCounter">$_sqlAliasCounter</a></p><p class="description">Counter for creating unique SQL table and column aliases.</p></td>
+</tr>
+<tr>
+<td class="type">protected  array</td>
+<td class="description"><p class="name"><a href="#_sqlTableAliases">$_sqlTableAliases</a></p><p class="description">Map from class names (FQCN) to the corresponding generated SQL table aliases.</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#StandardEntityPersister()">StandardEntityPersister</a>(Doctrine\ORM\EntityManager em, Doctrine\ORM\Mapping\ClassMetadata class)</p><p class="description">Initializes a new StandardEntityPersister that uses the given EntityManager
+and persists instances of the class described by the given ClassMetadata descriptor.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addInsert()">addInsert</a>(object entity)</p><p class="description">Adds an entity to the queued insertions.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#delete()">delete</a>(object entity)</p><p class="description">Deletes an entity.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#executeInserts()">executeInserts</a>()</p><p class="description">Executes all queued entity insertions and returns any generated post-insert
+identifiers that were created as a result of the insertions.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Mapping\ClassMetadata</td>
+<td class="description"><p class="name"><a href="#getClassMetadata()">getClassMetadata</a>()</p><p class="description">Gets the ClassMetadata instance of the entity class this persister is used for.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getInsertSQL()">getInsertSQL</a>()</p><p class="description">Gets the INSERT SQL used by the persister to persist a new entity.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getOwningTable()">getOwningTable</a>(string fieldName)</p><p class="description">Gets the name of the table that owns the column the given field is mapped to.</p></td>
+</tr>
+<tr>
+<td class="type"> The</td>
+<td class="description"><p class="name"><a href="#load()">load</a>(array criteria, object entity, mixed assoc, array hints, $assoc The)</p><p class="description">Loads an entity by a list of field criteria.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#loadAll()">loadAll</a>(array criteria)</p><p class="description">Loads a list of entities by a list of field criteria.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#loadManyToManyCollection()">loadManyToManyCollection</a>(<a href="../../../doctrine/orm/mapping/manytomanymapping.html">ManyToManyMapping</a> assoc, array criteria, <a href="../../../doctrine/orm/persistentcollection.html">PersistentCollection</a> coll)</p><p class="description">Loads a collection of entities of a many-to-many association.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#loadOneToManyCollection()">loadOneToManyCollection</a>(<a href="../../../doctrine/orm/mapping/onetomanymapping.html">OneToManyMapping</a> assoc, array criteria, mixed coll, <a href="../../../doctrine/orm/persistentcollection.html">PersistentCollection</a> The)</p><p class="description">Loads a collection of entities in a one-to-many association.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#refresh()">refresh</a>(array id, object entity)</p><p class="description">Refreshes an entity.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#update()">update</a>(object entity)</p><p class="description">Updates an entity.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 50</div>
+<h3 id="_class">_class</h3>
+<code class="signature">protected  Doctrine\ORM\Mapping\ClassMetadata <strong>$_class</strong></code>
+<div class="details">
+<p>Metadata object that describes the mapping of the mapped entity class.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 97</div>
+<h3 id="_columnTypes">_columnTypes</h3>
+<code class="signature">protected  array <strong>$_columnTypes</strong> = array()</code>
+<div class="details">
+<p>The map of column names to DBAL mapping types of all prepared columns used when INSERTing
+or UPDATEing an entity.</p><dl>
+<dt>See Also:</dt>
+<dd>_prepareInsertData($entity)</dd>
+<dd>_prepareUpdateData($entity)</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 57</div>
+<h3 id="_conn">_conn</h3>
+<code class="signature">protected  Doctrine\DBAL\Connection $conn <strong>$_conn</strong></code>
+<div class="details">
+<p>The underlying Connection of the used EntityManager.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 71</div>
+<h3 id="_em">_em</h3>
+<code class="signature">protected  Doctrine\ORM\EntityManager <strong>$_em</strong></code>
+<div class="details">
+<p>The EntityManager instance.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 64</div>
+<h3 id="_platform">_platform</h3>
+<code class="signature">protected  <a href="../../../doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform</a> <strong>$_platform</strong></code>
+<div class="details">
+<p>The database platform.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 78</div>
+<h3 id="_queuedInserts">_queuedInserts</h3>
+<code class="signature">protected  array <strong>$_queuedInserts</strong> = array()</code>
+<div class="details">
+<p>Queued inserts.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 87</div>
+<h3 id="_resultColumnNames">_resultColumnNames</h3>
+<code class="signature">protected  array <strong>$_resultColumnNames</strong> = array()</code>
+<div class="details">
+<p>Case-sensitive mappings of column names as they appear in an SQL result set
+to column names as they are defined in the mapping. This is necessary because different
+RDBMS vendors return column names in result sets in different casings.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 113</div>
+<h3 id="_selectColumnListSql">_selectColumnListSql</h3>
+<code class="signature">protected  string <strong>$_selectColumnListSql</strong></code>
+<div class="details">
+<p>The SELECT column list SQL fragment used for querying entities by this persister.
+This SQL fragment is only generated once per request, if at all.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 120</div>
+<h3 id="_sqlAliasCounter">_sqlAliasCounter</h3>
+<code class="signature">protected  integer <strong>$_sqlAliasCounter</strong></code>
+<div class="details">
+<p>Counter for creating unique SQL table and column aliases.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 127</div>
+<h3 id="_sqlTableAliases">_sqlTableAliases</h3>
+<code class="signature">protected  array <strong>$_sqlTableAliases</strong> = array()</code>
+<div class="details">
+<p>Map from class names (FQCN) to the corresponding generated SQL table aliases.</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 136</div>
+<h3 id="StandardEntityPersister()">StandardEntityPersister</h3>
+<code class="signature">public <strong>StandardEntityPersister</strong>(Doctrine\ORM\EntityManager em, Doctrine\ORM\Mapping\ClassMetadata class)</code>
+<div class="details">
+<p>Initializes a new <tt>StandardEntityPersister</tt> that uses the given EntityManager
+and persists instances of the class described by the given ClassMetadata descriptor.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 150</div>
+<h3 id="addInsert()">addInsert</h3>
+<code class="signature">public  void <strong>addInsert</strong>(object entity)</code>
+<div class="details">
+<p>Adds an entity to the queued insertions.
+The entity remains queued until <code>executeInserts()</code> is invoked.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entitiy to queue for insertion.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 302</div>
+<h3 id="delete()">delete</h3>
+<code class="signature">public  void <strong>delete</strong>(object entity)</code>
+<div class="details">
+<p>Deletes an entity.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to delete.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 164</div>
+<h3 id="executeInserts()">executeInserts</h3>
+<code class="signature">public  array <strong>executeInserts</strong>()</code>
+<div class="details">
+<p>Executes all queued entity insertions and returns any generated post-insert
+identifiers that were created as a result of the insertions.</p><p>If no inserts are queued, invoking this method is a NOOP.</p><dl>
+<dt>Returns:</dt>
+<dd>An array of any generated post-insert IDs. This will be an empty array if the entity class does not use the IDENTITY generation strategy.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 316</div>
+<h3 id="getClassMetadata()">getClassMetadata</h3>
+<code class="signature">public  Doctrine\ORM\Mapping\ClassMetadata <strong>getClassMetadata</strong>()</code>
+<div class="details">
+<p>Gets the ClassMetadata instance of the entity class this persister is used for.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 792</div>
+<h3 id="getInsertSQL()">getInsertSQL</h3>
+<code class="signature">public  string <strong>getInsertSQL</strong>()</code>
+<div class="details">
+<p>Gets the INSERT SQL used by the persister to persist a new entity.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 413</div>
+<h3 id="getOwningTable()">getOwningTable</h3>
+<code class="signature">public  string <strong>getOwningTable</strong>(string fieldName)</code>
+<div class="details">
+<p>Gets the name of the table that owns the column the given field is mapped to.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 428</div>
+<h3 id="load()">load</h3>
+<code class="signature">public  The <strong>load</strong>(array criteria, object entity, mixed assoc, array hints, $assoc The)</code>
+<div class="details">
+<p>Loads an entity by a list of field criteria.</p><dl>
+<dt>Parameters:</dt>
+<dd>criteria - The criteria by which to load the entity.</dd>
+<dd>entity - The entity to load the data into. If not specified, a new entity is created.</dd>
+<dd>The - association that connects the entity to load to another entity, if any.</dd>
+<dd>hints - Hints for entity creation.</dd>
+<dt>Returns:</dt>
+<dd>loaded entity instance or NULL if the entity/the data can not be found.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 527</div>
+<h3 id="loadAll()">loadAll</h3>
+<code class="signature">public  array <strong>loadAll</strong>(array criteria)</code>
+<div class="details">
+<p>Loads a list of entities by a list of field criteria.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 570</div>
+<h3 id="loadManyToManyCollection()">loadManyToManyCollection</h3>
+<code class="signature">public  void <strong>loadManyToManyCollection</strong>(<a href="../../../doctrine/orm/mapping/manytomanymapping.html">ManyToManyMapping</a> assoc, array criteria, <a href="../../../doctrine/orm/persistentcollection.html">PersistentCollection</a> coll)</code>
+<div class="details">
+<p>Loads a collection of entities of a many-to-many association.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd></dd>
+<dd>coll - The collection to fill.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 551</div>
+<h3 id="loadOneToManyCollection()">loadOneToManyCollection</h3>
+<code class="signature">public  void <strong>loadOneToManyCollection</strong>(<a href="../../../doctrine/orm/mapping/onetomanymapping.html">OneToManyMapping</a> assoc, array criteria, mixed coll, <a href="../../../doctrine/orm/persistentcollection.html">PersistentCollection</a> The)</code>
+<div class="details">
+<p>Loads a collection of entities in a one-to-many association.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>criteria - The criteria by which to select the entities.</dd>
+<dd>The - collection to fill.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 445</div>
+<h3 id="refresh()">refresh</h3>
+<code class="signature">public  void <strong>refresh</strong>(array id, object entity)</code>
+<div class="details">
+<p>Refreshes an entity.</p><dl>
+<dt>Parameters:</dt>
+<dd>id - The identifier of the entity as an associative array from column names to values.</dd>
+<dd>entity - The entity to refresh.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Persisters/StandardEntityPersister.php at line 233</div>
+<h3 id="update()">update</h3>
+<code class="signature">public  void <strong>update</strong>(object entity)</code>
+<div class="details">
+<p>Updates an entity.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to update.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/standardentitypersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/persisters/unionsubclasspersister.html b/lib/api/doctrine/orm/persisters/unionsubclasspersister.html
new file mode 100644
index 000000000..cafe5cd26
--- /dev/null
+++ b/lib/api/doctrine/orm/persisters/unionsubclasspersister.html
@@ -0,0 +1,103 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>UnionSubclassPersister (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/unionsubclasspersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Persisters\UnionSubclassPersister</div>
+<div class="location">/Doctrine/ORM/Persisters/UnionSubclassPersister.php at line 5</div>
+
+<h1>Class UnionSubclassPersister</h1>
+
+<pre class="tree">Class:UnionSubclassPersister - Superclass: StandardEntityPersister
+<a href="../../../doctrine/orm/persisters/standardentitypersister.html">StandardEntityPersister</a><br>   &lfloor;&nbsp;<strong>UnionSubclassPersister</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>UnionSubclassPersister</strong><br>extends <a href="../../../doctrine/orm/persisters/standardentitypersister.html">StandardEntityPersister</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>A basic entity persister that maps an entity with no (mapped) inheritance to a single table
+in the relational database.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Giorgio Sironi <piccoloprincipeazzurro@gmail.com></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Todo:</dt>
+<dd>Rename: BasicEntityPersister</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Persisters\StandardEntityPersister</th></tr>
+<tr><td><a href="../../../doctrine/orm/persisters/standardentitypersister.html#_class">_class</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_columnTypes">_columnTypes</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_conn">_conn</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_em">_em</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_platform">_platform</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_queuedInserts">_queuedInserts</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_resultColumnNames">_resultColumnNames</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_selectColumnListSql">_selectColumnListSql</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_sqlAliasCounter">_sqlAliasCounter</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#_sqlTableAliases">_sqlTableAliases</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Persisters\StandardEntityPersister</th></tr>
+<tr><td><a href="../../../doctrine/orm/persisters/standardentitypersister.html#addInsert()">addInsert</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#delete()">delete</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#executeInserts()">executeInserts</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#getClassMetadata()">getClassMetadata</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#getInsertSQL()">getInsertSQL</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#getOwningTable()">getOwningTable</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#load()">load</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#loadAll()">loadAll</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#loadManyToManyCollection()">loadManyToManyCollection</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#loadOneToManyCollection()">loadOneToManyCollection</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#refresh()">refresh</a>, <a href="../../../doctrine/orm/persisters/standardentitypersister.html#update()">update</a></td></tr></table>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/persisters/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/persisters/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/persisters/unionsubclasspersister.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/proxy/package-frame.html b/lib/api/doctrine/orm/proxy/package-frame.html
new file mode 100644
index 000000000..242c5cecd
--- /dev/null
+++ b/lib/api/doctrine/orm/proxy/package-frame.html
@@ -0,0 +1,32 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Proxy (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Proxy</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/orm/proxy/proxyexception.html" target="main">ProxyException</a></li>
+<li><a href="../../../doctrine/orm/proxy/proxyfactory.html" target="main">ProxyFactory</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../../doctrine/orm/proxy/proxy.html" target="main">Proxy</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/proxy/package-functions.html b/lib/api/doctrine/orm/proxy/package-functions.html
new file mode 100644
index 000000000..d113a2f8c
--- /dev/null
+++ b/lib/api/doctrine/orm/proxy/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/proxy/package-globals.html b/lib/api/doctrine/orm/proxy/package-globals.html
new file mode 100644
index 000000000..01c8bf59c
--- /dev/null
+++ b/lib/api/doctrine/orm/proxy/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/proxy/package-summary.html b/lib/api/doctrine/orm/proxy/package-summary.html
new file mode 100644
index 000000000..9971bdd6d
--- /dev/null
+++ b/lib/api/doctrine/orm/proxy/package-summary.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Proxy (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/proxy/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Proxy</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/proxy/proxyexception.html">ProxyException</a></td><td class="description">ORM Proxy Exception</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/proxy/proxyfactory.html">ProxyFactory</a></td><td class="description">This factory is used to create proxy objects for entities at runtime.</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/proxy/proxy.html">Proxy</a></td><td class="description">Interface for proxy classes.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/proxy/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/proxy/package-tree.html b/lib/api/doctrine/orm/proxy/package-tree.html
new file mode 100644
index 000000000..5ad7611c3
--- /dev/null
+++ b/lib/api/doctrine/orm/proxy/package-tree.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Proxy (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Proxy</h1><ul>
+<li><a href="../../../doctrine/orm/proxy/proxyfactory.html">Doctrine\ORM\Proxy\ProxyFactory</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/proxy/proxy.html b/lib/api/doctrine/orm/proxy/proxy.html
new file mode 100644
index 000000000..914087d6b
--- /dev/null
+++ b/lib/api/doctrine/orm/proxy/proxy.html
@@ -0,0 +1,86 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Proxy (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/proxy/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/proxy.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Proxy\Proxy</div>
+<div class="location">/Doctrine/ORM/Proxy/Proxy.php at line 30</div>
+
+<h1>Interface Proxy</h1>
+
+<pre class="tree"><strong>Proxy</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>Proxy</strong></p>
+
+<div class="comment" id="overview_description"><p>Interface for proxy classes.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/proxy/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/proxy.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/proxy/proxyexception.html b/lib/api/doctrine/orm/proxy/proxyexception.html
new file mode 100644
index 000000000..5e10a2c35
--- /dev/null
+++ b/lib/api/doctrine/orm/proxy/proxyexception.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ProxyException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/proxy/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/proxyexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Proxy\ProxyException</div>
+<div class="location">/Doctrine/ORM/Proxy/ProxyException.php at line 33</div>
+
+<h1>Class ProxyException</h1>
+
+<pre class="tree">Class:ProxyException - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>ProxyException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ProxyException</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>ORM Proxy Exception</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#proxyDirectoryRequired()">proxyDirectoryRequired</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#proxyNamespaceRequired()">proxyNamespaceRequired</a>()</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Proxy/ProxyException.php at line 35</div>
+<h3 id="proxyDirectoryRequired()">proxyDirectoryRequired</h3>
+<code class="signature">public static  void <strong>proxyDirectoryRequired</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Proxy/ProxyException.php at line 39</div>
+<h3 id="proxyNamespaceRequired()">proxyNamespaceRequired</h3>
+<code class="signature">public static  void <strong>proxyNamespaceRequired</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/proxy/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/proxyexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/proxy/proxyfactory.html b/lib/api/doctrine/orm/proxy/proxyfactory.html
new file mode 100644
index 000000000..6d4316eae
--- /dev/null
+++ b/lib/api/doctrine/orm/proxy/proxyfactory.html
@@ -0,0 +1,148 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ProxyFactory (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/proxy/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/proxyfactory.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Proxy\ProxyFactory</div>
+<div class="location">/Doctrine/ORM/Proxy/ProxyFactory.php at line 35</div>
+
+<h1>Class ProxyFactory</h1>
+
+<pre class="tree"><strong>ProxyFactory</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ProxyFactory</strong></p>
+
+<div class="comment" id="overview_description"><p>This factory is used to create proxy objects for entities at runtime.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Giorgio Sironi <piccoloprincipeazzurro@gmail.com></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ProxyFactory()">ProxyFactory</a>(<a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, string proxyDir, string proxyNs, boolean autoGenerate)</p><p class="description">Initializes a new instance of the ProxyFactory class that is
+connected to the given EntityManager.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#generateProxyClasses()">generateProxyClasses</a>(array classes, string toDir)</p><p class="description">Generates proxy classes for all given classes.</p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#getProxy()">getProxy</a>(string className, mixed identifier)</p><p class="description">Gets a reference proxy instance for the entity of the given type and identified by
+the given identifier.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Proxy/ProxyFactory.php at line 55</div>
+<h3 id="ProxyFactory()">ProxyFactory</h3>
+<code class="signature">public <strong>ProxyFactory</strong>(<a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em, string proxyDir, string proxyNs, boolean autoGenerate)</code>
+<div class="details">
+<p>Initializes a new instance of the <tt>ProxyFactory</tt> class that is
+connected to the given <tt>EntityManager</tt>.</p><dl>
+<dt>Parameters:</dt>
+<dd>em - The EntityManager the new factory works for.</dd>
+<dd>proxyDir - The directory to use for the proxy classes. It must exist.</dd>
+<dd>proxyNs - The namespace to use for the proxy classes.</dd>
+<dd>autoGenerate - Whether to automatically generate proxy classes.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Proxy/ProxyFactory.php at line 105</div>
+<h3 id="generateProxyClasses()">generateProxyClasses</h3>
+<code class="signature">public  void <strong>generateProxyClasses</strong>(array classes, string toDir)</code>
+<div class="details">
+<p>Generates proxy classes for all given classes.</p><dl>
+<dt>Parameters:</dt>
+<dd>classes - The classes (ClassMetadata instances) for which to generate proxies.</dd>
+<dd>toDir - The target directory of the proxy classes. If not specified, the directory configured on the Configuration of the EntityManager used by this factory is used.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Proxy/ProxyFactory.php at line 77</div>
+<h3 id="getProxy()">getProxy</h3>
+<code class="signature">public  object <strong>getProxy</strong>(string className, mixed identifier)</code>
+<div class="details">
+<p>Gets a reference proxy instance for the entity of the given type and identified by
+the given identifier.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/proxy/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/proxy/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/proxy/proxyfactory.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query.html b/lib/api/doctrine/orm/query.html
new file mode 100644
index 000000000..2e3f6a054
--- /dev/null
+++ b/lib/api/doctrine/orm/query.html
@@ -0,0 +1,582 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>Query (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/query.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query</div>
+<div class="location">/Doctrine/ORM/Query.php at line 33</div>
+
+<h1>Class Query</h1>
+
+<pre class="tree">Class:Query - Superclass: AbstractQuery
+<a href="../../doctrine/orm/abstractquery.html">AbstractQuery</a><br>   &lfloor;&nbsp;<strong>Query</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public final  class <strong>Query</strong><br>extends <a href="../../doctrine/orm/abstractquery.html">AbstractQuery</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>A Query object represents a DQL query.</p></div>
+
+<dl>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Konsta Vesterinen <kvesteri@cc.hut.fi></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#HINT_CUSTOM_OUTPUT_WALKER">HINT_CUSTOM_OUTPUT_WALKER</a></p><p class="description">A string with a class name that implements Doctrine\ORM\Query\TreeWalker
+and is used for generating the target SQL from any DQL AST tree.</p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#HINT_CUSTOM_TREE_WALKERS">HINT_CUSTOM_TREE_WALKERS</a></p><p class="description">An array of class names that implement Doctrine\ORM\Query\TreeWalker and
+are iterated and executed after the DQL has been parsed into an AST.</p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#HINT_FORCE_PARTIAL_LOAD">HINT_FORCE_PARTIAL_LOAD</a></p><p class="description">The forcePartialLoad query hint forces a particular query to return
+partial objects.</p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#HINT_INCLUDE_META_COLUMNS">HINT_INCLUDE_META_COLUMNS</a></p><p class="description">The includeMetaColumns query hint causes meta columns like foreign keys and
+discriminator columns to be selected and returned as part of the query result.
+</p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#HINT_INTERNAL_ITERATION">HINT_INTERNAL_ITERATION</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#HINT_REFRESH">HINT_REFRESH</a></p><p class="description">The refresh hint turns any query into a refresh query with the result that
+any local changes in entities are overridden with the fetched values.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#STATE_CLEAN">STATE_CLEAN</a></p><p class="description">A query object is in CLEAN state when it has NO unparsed/unprocessed DQL parts.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#STATE_DIRTY">STATE_DIRTY</a></p><p class="description">A query object is in state DIRTY when it has DQL parts that have not yet been
+parsed/processed. </p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\AbstractQuery</th></tr>
+<tr><td><a href="../../doctrine/orm/abstractquery.html#HYDRATE_ARRAY">HYDRATE_ARRAY</a>, <a href="../../doctrine/orm/abstractquery.html#HYDRATE_OBJECT">HYDRATE_OBJECT</a>, <a href="../../doctrine/orm/abstractquery.html#HYDRATE_SCALAR">HYDRATE_SCALAR</a>, <a href="../../doctrine/orm/abstractquery.html#HYDRATE_SINGLE_SCALAR">HYDRATE_SINGLE_SCALAR</a>, <a href="../../doctrine/orm/abstractquery.html#_em">_em</a>, <a href="../../doctrine/orm/abstractquery.html#_expireResultCache">_expireResultCache</a>, <a href="../../doctrine/orm/abstractquery.html#_hints">_hints</a>, <a href="../../doctrine/orm/abstractquery.html#_hydrationMode">_hydrationMode</a>, <a href="../../doctrine/orm/abstractquery.html#_paramTypes">_paramTypes</a>, <a href="../../doctrine/orm/abstractquery.html#_params">_params</a>, <a href="../../doctrine/orm/abstractquery.html#_resultCacheDriver">_resultCacheDriver</a>, <a href="../../doctrine/orm/abstractquery.html#_resultCacheId">_resultCacheId</a>, <a href="../../doctrine/orm/abstractquery.html#_resultCacheTTL">_resultCacheTTL</a>, <a href="../../doctrine/orm/abstractquery.html#_resultSetMapping">_resultSetMapping</a>, <a href="../../doctrine/orm/abstractquery.html#_useResultCache">_useResultCache</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#contains()">contains</a>(string dql)</p><p class="description">Method to check if an arbitrary piece of DQL exists</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/query.html">Query</a></td>
+<td class="description"><p class="name"><a href="#expireQueryCache()">expireQueryCache</a>(boolean expire)</p><p class="description">Defines if the query cache is active or not.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#free()">free</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Query\AST\SelectStatement</td>
+<td class="description"><p class="name"><a href="#getAST()">getAST</a>()</p><p class="description">Returns the corresponding AST for this DQL query.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDQL()">getDQL</a>()</p><p class="description">Returns the DQL query that is represented by this query object.</p></td>
+</tr>
+<tr>
+<td class="type"> bool</td>
+<td class="description"><p class="name"><a href="#getExpireQueryCache()">getExpireQueryCache</a>()</p><p class="description">Retrieves if the query cache is active or not.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getFirstResult()">getFirstResult</a>()</p><p class="description">Gets the position of the first result the query object was set to retrieve (the "offset").
+</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getMaxResults()">getMaxResults</a>()</p><p class="description">Gets the maximum number of results the query object was set to retrieve (the "limit").
+</p></td>
+</tr>
+<tr>
+<td class="type"> CacheDriver</td>
+<td class="description"><p class="name"><a href="#getQueryCacheDriver()">getQueryCacheDriver</a>()</p><p class="description">Returns the cache driver used for query caching.</p></td>
+</tr>
+<tr>
+<td class="type"> int</td>
+<td class="description"><p class="name"><a href="#getQueryCacheLifetime()">getQueryCacheLifetime</a>()</p><p class="description">Retrieves the lifetime of resultset cache.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getSQL()">getSQL</a>()</p><p class="description">Gets the SQL query/queries that correspond to this DQL query.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getState()">getState</a>()</p><p class="description">Returns the state of this query object
+By default the type is Doctrine_ORM_Query_Abstract::STATE_CLEAN but if it appears any unprocessed DQL
+part, it is switched to Doctrine_ORM_Query_Abstract::STATE_DIRTY.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/internal/hydration/iterableresult.html">IterableResult</a></td>
+<td class="description"><p class="name"><a href="#iterate()">iterate</a>(array params, integer hydrationMode)</p><p class="description">Executes the query and returns an IterableResult that can be used to incrementally
+iterated over the result.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setDQL()">setDQL</a>(string dqlQuery)</p><p class="description">Sets a DQL query string.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/query.html">Query</a></td>
+<td class="description"><p class="name"><a href="#setFirstResult()">setFirstResult</a>(integer firstResult)</p><p class="description">Sets the position of the first result to retrieve (the "offset").</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setHint()">setHint</a>(string name, mixed value)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\AbstractQuery</td>
+<td class="description"><p class="name"><a href="#setHydrationMode()">setHydrationMode</a>(integer hydrationMode)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/query.html">Query</a></td>
+<td class="description"><p class="name"><a href="#setMaxResults()">setMaxResults</a>(integer maxResults)</p><p class="description">Sets the maximum number of results to retrieve (the "limit").</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/query.html">Query</a></td>
+<td class="description"><p class="name"><a href="#setQueryCacheDriver()">setQueryCacheDriver</a>(mixed queryCache, Doctrine_Cache_Interface|null driver)</p><p class="description">Defines a cache driver to be used for caching queries.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/query.html">Query</a></td>
+<td class="description"><p class="name"><a href="#setQueryCacheLifetime()">setQueryCacheLifetime</a>(integer timeToLive)</p><p class="description">Defines how long the query cache will be active before expire.</p></td>
+</tr>
+<tr>
+<td class="type"> @return</td>
+<td class="description"><p class="name"><a href="#useQueryCache()">useQueryCache</a>(boolean bool)</p><p class="description">Defines whether the query should make use of a query cache, if available.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\AbstractQuery</th></tr>
+<tr><td><a href="../../doctrine/orm/abstractquery.html#execute()">execute</a>, <a href="../../doctrine/orm/abstractquery.html#expireResultCache()">expireResultCache</a>, <a href="../../doctrine/orm/abstractquery.html#free()">free</a>, <a href="../../doctrine/orm/abstractquery.html#getArrayResult()">getArrayResult</a>, <a href="../../doctrine/orm/abstractquery.html#getEntityManager()">getEntityManager</a>, <a href="../../doctrine/orm/abstractquery.html#getExpireResultCache()">getExpireResultCache</a>, <a href="../../doctrine/orm/abstractquery.html#getHint()">getHint</a>, <a href="../../doctrine/orm/abstractquery.html#getHydrationMode()">getHydrationMode</a>, <a href="../../doctrine/orm/abstractquery.html#getParameter()">getParameter</a>, <a href="../../doctrine/orm/abstractquery.html#getParameters()">getParameters</a>, <a href="../../doctrine/orm/abstractquery.html#getResult()">getResult</a>, <a href="../../doctrine/orm/abstractquery.html#getResultCacheDriver()">getResultCacheDriver</a>, <a href="../../doctrine/orm/abstractquery.html#getResultCacheLifetime()">getResultCacheLifetime</a>, <a href="../../doctrine/orm/abstractquery.html#getSQL()">getSQL</a>, <a href="../../doctrine/orm/abstractquery.html#getScalarResult()">getScalarResult</a>, <a href="../../doctrine/orm/abstractquery.html#getSingleResult()">getSingleResult</a>, <a href="../../doctrine/orm/abstractquery.html#getSingleScalarResult()">getSingleScalarResult</a>, <a href="../../doctrine/orm/abstractquery.html#iterate()">iterate</a>, <a href="../../doctrine/orm/abstractquery.html#setHint()">setHint</a>, <a href="../../doctrine/orm/abstractquery.html#setHydrationMode()">setHydrationMode</a>, <a href="../../doctrine/orm/abstractquery.html#setParameter()">setParameter</a>, <a href="../../doctrine/orm/abstractquery.html#setParameters()">setParameters</a>, <a href="../../doctrine/orm/abstractquery.html#setResultCacheDriver()">setResultCacheDriver</a>, <a href="../../doctrine/orm/abstractquery.html#setResultCacheId()">setResultCacheId</a>, <a href="../../doctrine/orm/abstractquery.html#setResultCacheLifetime()">setResultCacheLifetime</a>, <a href="../../doctrine/orm/abstractquery.html#setResultSetMapping()">setResultSetMapping</a>, <a href="../../doctrine/orm/abstractquery.html#useResultCache()">useResultCache</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query.php at line 87</div>
+<h3 id="HINT_CUSTOM_OUTPUT_WALKER">HINT_CUSTOM_OUTPUT_WALKER</h3>
+<code class="signature">public final  string <strong>HINT_CUSTOM_OUTPUT_WALKER</strong> = 'doctrine.customOutputWalker'</code>
+<div class="details">
+<p>A string with a class name that implements Doctrine\ORM\Query\TreeWalker
+and is used for generating the target SQL from any DQL AST tree.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 79</div>
+<h3 id="HINT_CUSTOM_TREE_WALKERS">HINT_CUSTOM_TREE_WALKERS</h3>
+<code class="signature">public final  string <strong>HINT_CUSTOM_TREE_WALKERS</strong> = 'doctrine.customTreeWalkers'</code>
+<div class="details">
+<p>An array of class names that implement Doctrine\ORM\Query\TreeWalker and
+are iterated and executed after the DQL has been parsed into an AST.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 62</div>
+<h3 id="HINT_FORCE_PARTIAL_LOAD">HINT_FORCE_PARTIAL_LOAD</h3>
+<code class="signature">public final  string <strong>HINT_FORCE_PARTIAL_LOAD</strong> = 'doctrine.forcePartialLoad'</code>
+<div class="details">
+<p>The forcePartialLoad query hint forces a particular query to return
+partial objects.</p><dl>
+<dt>Todo:</dt>
+<dd>Rename: HINT_OPTIMIZE</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 71</div>
+<h3 id="HINT_INCLUDE_META_COLUMNS">HINT_INCLUDE_META_COLUMNS</h3>
+<code class="signature">public final  string <strong>HINT_INCLUDE_META_COLUMNS</strong> = 'doctrine.includeMetaColumns'</code>
+<div class="details">
+<p>The includeMetaColumns query hint causes meta columns like foreign keys and
+discriminator columns to be selected and returned as part of the query result.</p><p>This hint does only apply to non-object queries.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 94</div>
+<h3 id="HINT_INTERNAL_ITERATION">HINT_INTERNAL_ITERATION</h3>
+<code class="signature">public final  string <strong>HINT_INTERNAL_ITERATION</strong> = 'doctrine.internal.iteration'</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 54</div>
+<h3 id="HINT_REFRESH">HINT_REFRESH</h3>
+<code class="signature">public final  string <strong>HINT_REFRESH</strong> = 'doctrine.refresh'</code>
+<div class="details">
+<p>The refresh hint turns any query into a refresh query with the result that
+any local changes in entities are overridden with the fetched values.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 39</div>
+<h3 id="STATE_CLEAN">STATE_CLEAN</h3>
+<code class="signature">public final  int <strong>STATE_CLEAN</strong> = 1</code>
+<div class="details">
+<p>A query object is in CLEAN state when it has NO unparsed/unprocessed DQL parts.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 45</div>
+<h3 id="STATE_DIRTY">STATE_DIRTY</h3>
+<code class="signature">public final  int <strong>STATE_DIRTY</strong> = 2</code>
+<div class="details">
+<p>A query object is in state DIRTY when it has DQL parts that have not yet been
+parsed/processed. This is automatically defined as DIRTY when addDqlQueryPart
+is called.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query.php at line 405</div>
+<h3 id="contains()">contains</h3>
+<code class="signature">public  boolean <strong>contains</strong>(string dql)</code>
+<div class="details">
+<p>Method to check if an arbitrary piece of DQL exists</p><dl>
+<dt>Parameters:</dt>
+<dd>dql - Arbitrary piece of DQL to check for</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 332</div>
+<h3 id="expireQueryCache()">expireQueryCache</h3>
+<code class="signature">public  <a href="../../doctrine/orm/query.html">Query</a> <strong>expireQueryCache</strong>(boolean expire)</code>
+<div class="details">
+<p>Defines if the query cache is active or not.</p><dl>
+<dt>Parameters:</dt>
+<dd>expire - Whether or not to force query cache expiration.</dd>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 352</div>
+<h3 id="free()">free</h3>
+<code class="signature">public  void <strong>free</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 171</div>
+<h3 id="getAST()">getAST</h3>
+<code class="signature">public  Doctrine\ORM\Query\AST\SelectStatement <strong>getAST</strong>()</code>
+<div class="details">
+<p>Returns the corresponding AST for this DQL query.</p><dl>
+<dt>Returns:</dt>
+<dd>| Doctrine\ORM\Query\AST\UpdateStatement | Doctrine\ORM\Query\AST\DeleteStatement</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 379</div>
+<h3 id="getDQL()">getDQL</h3>
+<code class="signature">public  string <strong>getDQL</strong>()</code>
+<div class="details">
+<p>Returns the DQL query that is represented by this query object.</p><dl>
+<dt>Returns:</dt>
+<dd>DQL query</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 344</div>
+<h3 id="getExpireQueryCache()">getExpireQueryCache</h3>
+<code class="signature">public  bool <strong>getExpireQueryCache</strong>()</code>
+<div class="details">
+<p>Retrieves if the query cache is active or not.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 429</div>
+<h3 id="getFirstResult()">getFirstResult</h3>
+<code class="signature">public  integer <strong>getFirstResult</strong>()</code>
+<div class="details">
+<p>Gets the position of the first result the query object was set to retrieve (the "offset").
+Returns NULL if <code><a href="../../doctrine/orm/query.html#setFirstResult()">setFirstResult</a></code> was not applied to this query.</p><dl>
+<dt>Returns:</dt>
+<dd>The position of the first result.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 453</div>
+<h3 id="getMaxResults()">getMaxResults</h3>
+<code class="signature">public  integer <strong>getMaxResults</strong>()</code>
+<div class="details">
+<p>Gets the maximum number of results the query object was set to retrieve (the "limit").
+Returns NULL if <code><a href="../../doctrine/orm/query.html#setMaxResults()">setMaxResults</a></code> was not applied to this query.</p><dl>
+<dt>Returns:</dt>
+<dd>Maximum number of results.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 291</div>
+<h3 id="getQueryCacheDriver()">getQueryCacheDriver</h3>
+<code class="signature">public  CacheDriver <strong>getQueryCacheDriver</strong>()</code>
+<div class="details">
+<p>Returns the cache driver used for query caching.</p><dl>
+<dt>Returns:</dt>
+<dd>The cache driver used for query caching or NULL, if this Query does not use query caching.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 321</div>
+<h3 id="getQueryCacheLifetime()">getQueryCacheLifetime</h3>
+<code class="signature">public  int <strong>getQueryCacheLifetime</strong>()</code>
+<div class="details">
+<p>Retrieves the lifetime of resultset cache.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 159</div>
+<h3 id="getSQL()">getSQL</h3>
+<code class="signature">public  mixed <strong>getSQL</strong>()</code>
+<div class="details">
+<p>Gets the SQL query/queries that correspond to this DQL query.</p><dl>
+<dt>Returns:</dt>
+<dd>The built sql query or an array of all sql queries.</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 394</div>
+<h3 id="getState()">getState</h3>
+<code class="signature">public  integer <strong>getState</strong>()</code>
+<div class="details">
+<p>Returns the state of this query object
+By default the type is Doctrine_ORM_Query_Abstract::STATE_CLEAN but if it appears any unprocessed DQL
+part, it is switched to Doctrine_ORM_Query_Abstract::STATE_DIRTY.</p><dl>
+<dt>See Also:</dt>
+<dd>AbstractQuery::STATE_CLEAN</dd>
+<dd>AbstractQuery::STATE_DIRTY</dd>
+<dt>Returns:</dt>
+<dd>Return the query state</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 466</div>
+<h3 id="iterate()">iterate</h3>
+<code class="signature">public  <a href="../../doctrine/orm/internal/hydration/iterableresult.html">IterableResult</a> <strong>iterate</strong>(array params, integer hydrationMode)</code>
+<div class="details">
+<p>Executes the query and returns an IterableResult that can be used to incrementally
+iterated over the result.</p><dl>
+<dt>Parameters:</dt>
+<dd>params - The query parameters.</dd>
+<dd>hydrationMode - The hydration mode to use.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 365</div>
+<h3 id="setDQL()">setDQL</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setDQL</strong>(string dqlQuery)</code>
+<div class="details">
+<p>Sets a DQL query string.</p><dl>
+<dt>Parameters:</dt>
+<dd>dqlQuery - DQL Query</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 416</div>
+<h3 id="setFirstResult()">setFirstResult</h3>
+<code class="signature">public  <a href="../../doctrine/orm/query.html">Query</a> <strong>setFirstResult</strong>(integer firstResult)</code>
+<div class="details">
+<p>Sets the position of the first result to retrieve (the "offset").</p><dl>
+<dt>Parameters:</dt>
+<dd>firstResult - The first result to return.</dd>
+<dt>Returns:</dt>
+<dd>This query object.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 475</div>
+<h3 id="setHint()">setHint</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setHint</strong>(string name, mixed value)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>name - The name of the hint.</dd>
+<dd>value - The value of the hint.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 484</div>
+<h3 id="setHydrationMode()">setHydrationMode</h3>
+<code class="signature">public  Doctrine\ORM\AbstractQuery <strong>setHydrationMode</strong>(integer hydrationMode)</code>
+<div class="details">
+<p></p><dl>
+<dt>Parameters:</dt>
+<dd>hydrationMode - Doctrine processing mode to be used during hydration process. One of the Query::HYDRATE_* constants.</dd>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 440</div>
+<h3 id="setMaxResults()">setMaxResults</h3>
+<code class="signature">public  <a href="../../doctrine/orm/query.html">Query</a> <strong>setMaxResults</strong>(integer maxResults)</code>
+<div class="details">
+<p>Sets the maximum number of results to retrieve (the "limit").</p><dl>
+<dt>Returns:</dt>
+<dd>This query object.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 267</div>
+<h3 id="setQueryCacheDriver()">setQueryCacheDriver</h3>
+<code class="signature">public  <a href="../../doctrine/orm/query.html">Query</a> <strong>setQueryCacheDriver</strong>(mixed queryCache, Doctrine_Cache_Interface|null driver)</code>
+<div class="details">
+<p>Defines a cache driver to be used for caching queries.</p><dl>
+<dt>Parameters:</dt>
+<dd>driver - Cache driver</dd>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 306</div>
+<h3 id="setQueryCacheLifetime()">setQueryCacheLifetime</h3>
+<code class="signature">public  <a href="../../doctrine/orm/query.html">Query</a> <strong>setQueryCacheLifetime</strong>(integer timeToLive)</code>
+<div class="details">
+<p>Defines how long the query cache will be active before expire.</p><dl>
+<dt>Parameters:</dt>
+<dd>timeToLive - How long the cache entry is valid</dd>
+<dt>Returns:</dt>
+<dd>This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query.php at line 279</div>
+<h3 id="useQueryCache()">useQueryCache</h3>
+<code class="signature">public  @return <strong>useQueryCache</strong>(boolean bool)</code>
+<div class="details">
+<p>Defines whether the query should make use of a query cache, if available.</p><dl>
+<dt>Returns:</dt>
+<dd>Query This query instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/query.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/aggregateexpression.html b/lib/api/doctrine/orm/query/ast/aggregateexpression.html
new file mode 100644
index 000000000..5d99c6015
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/aggregateexpression.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>AggregateExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/aggregateexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\AggregateExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/AggregateExpression.php at line 35</div>
+
+<h1>Class AggregateExpression</h1>
+
+<pre class="tree">Class:AggregateExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>AggregateExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>AggregateExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Description of AggregateExpression</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#functionName">$functionName</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#isDistinct">$isDistinct</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#pathExpression">$pathExpression</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AggregateExpression()">AggregateExpression</a>(mixed functionName, mixed pathExpression, mixed isDistinct)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/AggregateExpression.php at line 37</div>
+<h3 id="functionName">functionName</h3>
+<code class="signature">public  mixed <strong>$functionName</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/AggregateExpression.php at line 39</div>
+<h3 id="isDistinct">isDistinct</h3>
+<code class="signature">public  mixed <strong>$isDistinct</strong> = false</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/AggregateExpression.php at line 38</div>
+<h3 id="pathExpression">pathExpression</h3>
+<code class="signature">public  mixed <strong>$pathExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/AggregateExpression.php at line 41</div>
+<h3 id="AggregateExpression()">AggregateExpression</h3>
+<code class="signature">public <strong>AggregateExpression</strong>(mixed functionName, mixed pathExpression, mixed isDistinct)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/AggregateExpression.php at line 48</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/aggregateexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/arithmeticexpression.html b/lib/api/doctrine/orm/query/ast/arithmeticexpression.html
new file mode 100644
index 000000000..f6480aaa0
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/arithmeticexpression.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ArithmeticExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/arithmeticexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\ArithmeticExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticExpression.php at line 35</div>
+
+<h1>Class ArithmeticExpression</h1>
+
+<pre class="tree">Class:ArithmeticExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>ArithmeticExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ArithmeticExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ArithmeticExpression ::= SimpleArithmeticExpression | "(" Subselect ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#simpleArithmeticExpression">$simpleArithmeticExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#subselect">$subselect</a></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isSimpleArithmeticExpression()">isSimpleArithmeticExpression</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isSubselect()">isSubselect</a>()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticExpression.php at line 37</div>
+<h3 id="simpleArithmeticExpression">simpleArithmeticExpression</h3>
+<code class="signature">public  mixed <strong>$simpleArithmeticExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticExpression.php at line 38</div>
+<h3 id="subselect">subselect</h3>
+<code class="signature">public  mixed <strong>$subselect</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticExpression.php at line 50</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticExpression.php at line 40</div>
+<h3 id="isSimpleArithmeticExpression()">isSimpleArithmeticExpression</h3>
+<code class="signature">public  void <strong>isSimpleArithmeticExpression</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticExpression.php at line 45</div>
+<h3 id="isSubselect()">isSubselect</h3>
+<code class="signature">public  void <strong>isSubselect</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/arithmeticexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/arithmeticfactor.html b/lib/api/doctrine/orm/query/ast/arithmeticfactor.html
new file mode 100644
index 000000000..01b0e5849
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/arithmeticfactor.html
@@ -0,0 +1,188 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ArithmeticFactor (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/arithmeticfactor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\ArithmeticFactor</div>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticFactor.php at line 35</div>
+
+<h1>Class ArithmeticFactor</h1>
+
+<pre class="tree">Class:ArithmeticFactor - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>ArithmeticFactor</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ArithmeticFactor</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ArithmeticFactor ::= [("+" | "-")] ArithmeticPrimary</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> ArithmeticPrimary</td>
+<td class="description"><p class="name"><a href="#arithmeticPrimary">$arithmeticPrimary</a></p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> null|boolean NULL represents no sign, TRUE means positive and FALSE means negative sign</td>
+<td class="description"><p class="name"><a href="#sign">$sign</a></p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ArithmeticFactor()">ArithmeticFactor</a>(mixed arithmeticPrimary, mixed sign)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isNegativeSigned()">isNegativeSigned</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isPositiveSigned()">isPositiveSigned</a>()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticFactor.php at line 40</div>
+<h3 id="arithmeticPrimary">arithmeticPrimary</h3>
+<code class="signature">public  ArithmeticPrimary <strong>$arithmeticPrimary</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticFactor.php at line 45</div>
+<h3 id="sign">sign</h3>
+<code class="signature">public  null|boolean NULL represents no sign, TRUE means positive and FALSE means negative sign <strong>$sign</strong></code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticFactor.php at line 47</div>
+<h3 id="ArithmeticFactor()">ArithmeticFactor</h3>
+<code class="signature">public <strong>ArithmeticFactor</strong>(mixed arithmeticPrimary, mixed sign)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticFactor.php at line 63</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticFactor.php at line 58</div>
+<h3 id="isNegativeSigned()">isNegativeSigned</h3>
+<code class="signature">public  void <strong>isNegativeSigned</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticFactor.php at line 53</div>
+<h3 id="isPositiveSigned()">isPositiveSigned</h3>
+<code class="signature">public  void <strong>isPositiveSigned</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/arithmeticfactor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/arithmeticterm.html b/lib/api/doctrine/orm/query/ast/arithmeticterm.html
new file mode 100644
index 000000000..ddc044e4b
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/arithmeticterm.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ArithmeticTerm (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/arithmeticterm.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\ArithmeticTerm</div>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticTerm.php at line 35</div>
+
+<h1>Class ArithmeticTerm</h1>
+
+<pre class="tree">Class:ArithmeticTerm - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>ArithmeticTerm</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ArithmeticTerm</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ArithmeticTerm ::= ArithmeticFactor {("*" | "/") ArithmeticFactor}</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#arithmeticFactors">$arithmeticFactors</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ArithmeticTerm()">ArithmeticTerm</a>(mixed arithmeticFactors)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticTerm.php at line 37</div>
+<h3 id="arithmeticFactors">arithmeticFactors</h3>
+<code class="signature">public  mixed <strong>$arithmeticFactors</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticTerm.php at line 39</div>
+<h3 id="ArithmeticTerm()">ArithmeticTerm</h3>
+<code class="signature">public <strong>ArithmeticTerm</strong>(mixed arithmeticFactors)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ArithmeticTerm.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/arithmeticterm.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/astexception.html b/lib/api/doctrine/orm/query/ast/astexception.html
new file mode 100644
index 000000000..d0d3aaf06
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/astexception.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ASTException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/astexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\ASTException</div>
+<div class="location">/Doctrine/ORM/Query/AST/ASTException.php at line 7</div>
+
+<h1>Class ASTException</h1>
+
+<pre class="tree">Class:ASTException - Superclass: QueryException
+Class:QueryException - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<a href="../../../../doctrine/orm/query/queryexception.html">QueryException</a><br>      &lfloor;&nbsp;<strong>ASTException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ASTException</strong><br>extends <a href="../../../../doctrine/orm/query/queryexception.html">QueryException</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Description of QueryException</p></div>
+
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#noDispatchForNode()">noDispatchForNode</a>(mixed node)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\QueryException</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/queryexception.html#associationPathCompositeKeyNotSupported()">associationPathCompositeKeyNotSupported</a>, <a href="../../../../doctrine/orm/query/queryexception.html#associationPathInverseSideNotSupported()">associationPathInverseSideNotSupported</a>, <a href="../../../../doctrine/orm/query/queryexception.html#invalidLiteral()">invalidLiteral</a>, <a href="../../../../doctrine/orm/query/queryexception.html#invalidParameterFormat()">invalidParameterFormat</a>, <a href="../../../../doctrine/orm/query/queryexception.html#invalidParameterNumber()">invalidParameterNumber</a>, <a href="../../../../doctrine/orm/query/queryexception.html#invalidParameterPosition()">invalidParameterPosition</a>, <a href="../../../../doctrine/orm/query/queryexception.html#invalidPathExpression()">invalidPathExpression</a>, <a href="../../../../doctrine/orm/query/queryexception.html#iterateWithFetchJoinCollectionNotAllowed()">iterateWithFetchJoinCollectionNotAllowed</a>, <a href="../../../../doctrine/orm/query/queryexception.html#iterateWithFetchJoinNotAllowed()">iterateWithFetchJoinNotAllowed</a>, <a href="../../../../doctrine/orm/query/queryexception.html#overwritingJoinConditionsNotYetSupported()">overwritingJoinConditionsNotYetSupported</a>, <a href="../../../../doctrine/orm/query/queryexception.html#partialObjectsAreDangerous()">partialObjectsAreDangerous</a>, <a href="../../../../doctrine/orm/query/queryexception.html#semanticalError()">semanticalError</a>, <a href="../../../../doctrine/orm/query/queryexception.html#syntaxError()">syntaxError</a>, <a href="../../../../doctrine/orm/query/queryexception.html#unknownParameter()">unknownParameter</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ASTException.php at line 9</div>
+<h3 id="noDispatchForNode()">noDispatchForNode</h3>
+<code class="signature">public static  void <strong>noDispatchForNode</strong>(mixed node)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/astexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/betweenexpression.html b/lib/api/doctrine/orm/query/ast/betweenexpression.html
new file mode 100644
index 000000000..87233dcb6
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/betweenexpression.html
@@ -0,0 +1,188 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>BetweenExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/betweenexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\BetweenExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/BetweenExpression.php at line 35</div>
+
+<h1>Class BetweenExpression</h1>
+
+<pre class="tree">Class:BetweenExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>BetweenExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>BetweenExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Description of BetweenExpression</p><p>@license http://www.opensource.org/licenses/lgpl-license.php LGPL</p></div>
+
+<dl>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#expression">$expression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#leftBetweenExpression">$leftBetweenExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#not">$not</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#rightBetweenExpression">$rightBetweenExpression</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#BetweenExpression()">BetweenExpression</a>(mixed expr, mixed leftExpr, mixed rightExpr)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/BetweenExpression.php at line 37</div>
+<h3 id="expression">expression</h3>
+<code class="signature">public  mixed <strong>$expression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/BetweenExpression.php at line 38</div>
+<h3 id="leftBetweenExpression">leftBetweenExpression</h3>
+<code class="signature">public  mixed <strong>$leftBetweenExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/BetweenExpression.php at line 40</div>
+<h3 id="not">not</h3>
+<code class="signature">public  mixed <strong>$not</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/BetweenExpression.php at line 39</div>
+<h3 id="rightBetweenExpression">rightBetweenExpression</h3>
+<code class="signature">public  mixed <strong>$rightBetweenExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/BetweenExpression.php at line 42</div>
+<h3 id="BetweenExpression()">BetweenExpression</h3>
+<code class="signature">public <strong>BetweenExpression</strong>(mixed expr, mixed leftExpr, mixed rightExpr)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/BetweenExpression.php at line 49</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/betweenexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/collectionmemberexpression.html b/lib/api/doctrine/orm/query/ast/collectionmemberexpression.html
new file mode 100644
index 000000000..fa0d2c668
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/collectionmemberexpression.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>CollectionMemberExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/collectionmemberexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\CollectionMemberExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/CollectionMemberExpression.php at line 35</div>
+
+<h1>Class CollectionMemberExpression</h1>
+
+<pre class="tree">Class:CollectionMemberExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>CollectionMemberExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>CollectionMemberExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>CollectionMemberExpression ::= EntityExpression ["NOT"] "MEMBER" ["OF"] CollectionValuedPathExpression</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#collectionValuedPathExpression">$collectionValuedPathExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#entityExpression">$entityExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#not">$not</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#CollectionMemberExpression()">CollectionMemberExpression</a>(mixed entityExpr, mixed collValuedPathExpr)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/CollectionMemberExpression.php at line 38</div>
+<h3 id="collectionValuedPathExpression">collectionValuedPathExpression</h3>
+<code class="signature">public  mixed <strong>$collectionValuedPathExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/CollectionMemberExpression.php at line 37</div>
+<h3 id="entityExpression">entityExpression</h3>
+<code class="signature">public  mixed <strong>$entityExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/CollectionMemberExpression.php at line 39</div>
+<h3 id="not">not</h3>
+<code class="signature">public  mixed <strong>$not</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/CollectionMemberExpression.php at line 41</div>
+<h3 id="CollectionMemberExpression()">CollectionMemberExpression</h3>
+<code class="signature">public <strong>CollectionMemberExpression</strong>(mixed entityExpr, mixed collValuedPathExpr)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/CollectionMemberExpression.php at line 47</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/collectionmemberexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/comparisonexpression.html b/lib/api/doctrine/orm/query/ast/comparisonexpression.html
new file mode 100644
index 000000000..22a8c0694
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/comparisonexpression.html
@@ -0,0 +1,181 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ComparisonExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/comparisonexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\ComparisonExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/ComparisonExpression.php at line 40</div>
+
+<h1>Class ComparisonExpression</h1>
+
+<pre class="tree">Class:ComparisonExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>ComparisonExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ComparisonExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ComparisonExpression ::= ArithmeticExpression ComparisonOperator ( QuantifiedExpression | ArithmeticExpression ) |
+StringExpression ComparisonOperator (StringExpression | QuantifiedExpression) |
+BooleanExpression ("=" | "<>" | "!=") (BooleanExpression | QuantifiedExpression) |
+EnumExpression ("=" | "<>" | "!=") (EnumExpression | QuantifiedExpression) |
+DatetimeExpression ComparisonOperator (DatetimeExpression | QuantifiedExpression) |
+EntityExpression ("=" | "<>") (EntityExpression | QuantifiedExpression)</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#leftExpression">$leftExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#operator">$operator</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#rightExpression">$rightExpression</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ComparisonExpression()">ComparisonExpression</a>(mixed leftExpr, mixed operator, mixed rightExpr)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ComparisonExpression.php at line 42</div>
+<h3 id="leftExpression">leftExpression</h3>
+<code class="signature">public  mixed <strong>$leftExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ComparisonExpression.php at line 44</div>
+<h3 id="operator">operator</h3>
+<code class="signature">public  mixed <strong>$operator</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ComparisonExpression.php at line 43</div>
+<h3 id="rightExpression">rightExpression</h3>
+<code class="signature">public  mixed <strong>$rightExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ComparisonExpression.php at line 46</div>
+<h3 id="ComparisonExpression()">ComparisonExpression</h3>
+<code class="signature">public <strong>ComparisonExpression</strong>(mixed leftExpr, mixed operator, mixed rightExpr)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ComparisonExpression.php at line 53</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/comparisonexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/conditionalexpression.html b/lib/api/doctrine/orm/query/ast/conditionalexpression.html
new file mode 100644
index 000000000..1f4c258f9
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/conditionalexpression.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ConditionalExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/conditionalexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\ConditionalExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalExpression.php at line 35</div>
+
+<h1>Class ConditionalExpression</h1>
+
+<pre class="tree">Class:ConditionalExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>ConditionalExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConditionalExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ConditionalExpression ::= ConditionalTerm {"OR" ConditionalTerm}</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#conditionalTerms">$conditionalTerms</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ConditionalExpression()">ConditionalExpression</a>(mixed conditionalTerms)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalExpression.php at line 37</div>
+<h3 id="conditionalTerms">conditionalTerms</h3>
+<code class="signature">public  mixed <strong>$conditionalTerms</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalExpression.php at line 39</div>
+<h3 id="ConditionalExpression()">ConditionalExpression</h3>
+<code class="signature">public <strong>ConditionalExpression</strong>(mixed conditionalTerms)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalExpression.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/conditionalexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/conditionalfactor.html b/lib/api/doctrine/orm/query/ast/conditionalfactor.html
new file mode 100644
index 000000000..6deaca434
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/conditionalfactor.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ConditionalFactor (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/conditionalfactor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\ConditionalFactor</div>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalFactor.php at line 35</div>
+
+<h1>Class ConditionalFactor</h1>
+
+<pre class="tree">Class:ConditionalFactor - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>ConditionalFactor</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConditionalFactor</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ConditionalFactor ::= ["NOT"] ConditionalPrimary</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#conditionalPrimary">$conditionalPrimary</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#not">$not</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ConditionalFactor()">ConditionalFactor</a>(mixed conditionalPrimary)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalFactor.php at line 38</div>
+<h3 id="conditionalPrimary">conditionalPrimary</h3>
+<code class="signature">public  mixed <strong>$conditionalPrimary</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalFactor.php at line 37</div>
+<h3 id="not">not</h3>
+<code class="signature">public  mixed <strong>$not</strong> = false</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalFactor.php at line 40</div>
+<h3 id="ConditionalFactor()">ConditionalFactor</h3>
+<code class="signature">public <strong>ConditionalFactor</strong>(mixed conditionalPrimary)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalFactor.php at line 45</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/conditionalfactor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/conditionalprimary.html b/lib/api/doctrine/orm/query/ast/conditionalprimary.html
new file mode 100644
index 000000000..4a7f07e5f
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/conditionalprimary.html
@@ -0,0 +1,172 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ConditionalPrimary (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/conditionalprimary.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\ConditionalPrimary</div>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalPrimary.php at line 35</div>
+
+<h1>Class ConditionalPrimary</h1>
+
+<pre class="tree">Class:ConditionalPrimary - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>ConditionalPrimary</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConditionalPrimary</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ConditionalPrimary ::= SimpleConditionalExpression | "(" ConditionalExpression ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#conditionalExpression">$conditionalExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#simpleConditionalExpression">$simpleConditionalExpression</a></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isConditionalExpression()">isConditionalExpression</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isSimpleConditionalExpression()">isSimpleConditionalExpression</a>()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalPrimary.php at line 38</div>
+<h3 id="conditionalExpression">conditionalExpression</h3>
+<code class="signature">public  mixed <strong>$conditionalExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalPrimary.php at line 37</div>
+<h3 id="simpleConditionalExpression">simpleConditionalExpression</h3>
+<code class="signature">public  mixed <strong>$simpleConditionalExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalPrimary.php at line 50</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalPrimary.php at line 45</div>
+<h3 id="isConditionalExpression()">isConditionalExpression</h3>
+<code class="signature">public  void <strong>isConditionalExpression</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalPrimary.php at line 40</div>
+<h3 id="isSimpleConditionalExpression()">isSimpleConditionalExpression</h3>
+<code class="signature">public  void <strong>isSimpleConditionalExpression</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/conditionalprimary.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/conditionalterm.html b/lib/api/doctrine/orm/query/ast/conditionalterm.html
new file mode 100644
index 000000000..42ba8ae37
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/conditionalterm.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ConditionalTerm (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/conditionalterm.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\ConditionalTerm</div>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalTerm.php at line 35</div>
+
+<h1>Class ConditionalTerm</h1>
+
+<pre class="tree">Class:ConditionalTerm - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>ConditionalTerm</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConditionalTerm</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ConditionalTerm ::= ConditionalFactor {"AND" ConditionalFactor}</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#conditionalFactors">$conditionalFactors</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ConditionalTerm()">ConditionalTerm</a>(mixed conditionalFactors)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalTerm.php at line 37</div>
+<h3 id="conditionalFactors">conditionalFactors</h3>
+<code class="signature">public  mixed <strong>$conditionalFactors</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalTerm.php at line 39</div>
+<h3 id="ConditionalTerm()">ConditionalTerm</h3>
+<code class="signature">public <strong>ConditionalTerm</strong>(mixed conditionalFactors)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ConditionalTerm.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/conditionalterm.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/deleteclause.html b/lib/api/doctrine/orm/query/ast/deleteclause.html
new file mode 100644
index 000000000..681ea9242
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/deleteclause.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>DeleteClause (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/deleteclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\DeleteClause</div>
+<div class="location">/Doctrine/ORM/Query/AST/DeleteClause.php at line 35</div>
+
+<h1>Class DeleteClause</h1>
+
+<pre class="tree">Class:DeleteClause - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>DeleteClause</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>DeleteClause</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>DeleteClause ::= "DELETE" ["FROM"] AbstractSchemaName [["AS"] AliasIdentificationVariable]</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#abstractSchemaName">$abstractSchemaName</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#aliasIdentificationVariable">$aliasIdentificationVariable</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#DeleteClause()">DeleteClause</a>(mixed abstractSchemaName)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/DeleteClause.php at line 37</div>
+<h3 id="abstractSchemaName">abstractSchemaName</h3>
+<code class="signature">public  mixed <strong>$abstractSchemaName</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/DeleteClause.php at line 38</div>
+<h3 id="aliasIdentificationVariable">aliasIdentificationVariable</h3>
+<code class="signature">public  mixed <strong>$aliasIdentificationVariable</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/DeleteClause.php at line 40</div>
+<h3 id="DeleteClause()">DeleteClause</h3>
+<code class="signature">public <strong>DeleteClause</strong>(mixed abstractSchemaName)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/DeleteClause.php at line 45</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/deleteclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/deletestatement.html b/lib/api/doctrine/orm/query/ast/deletestatement.html
new file mode 100644
index 000000000..dd8eb0980
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/deletestatement.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>DeleteStatement (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/deletestatement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\DeleteStatement</div>
+<div class="location">/Doctrine/ORM/Query/AST/DeleteStatement.php at line 35</div>
+
+<h1>Class DeleteStatement</h1>
+
+<pre class="tree">Class:DeleteStatement - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>DeleteStatement</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>DeleteStatement</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>DeleteStatement = DeleteClause [WhereClause]</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#deleteClause">$deleteClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#whereClause">$whereClause</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#DeleteStatement()">DeleteStatement</a>(mixed deleteClause)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/DeleteStatement.php at line 37</div>
+<h3 id="deleteClause">deleteClause</h3>
+<code class="signature">public  mixed <strong>$deleteClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/DeleteStatement.php at line 38</div>
+<h3 id="whereClause">whereClause</h3>
+<code class="signature">public  mixed <strong>$whereClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/DeleteStatement.php at line 40</div>
+<h3 id="DeleteStatement()">DeleteStatement</h3>
+<code class="signature">public <strong>DeleteStatement</strong>(mixed deleteClause)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/DeleteStatement.php at line 45</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/deletestatement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/emptycollectioncomparisonexpression.html b/lib/api/doctrine/orm/query/ast/emptycollectioncomparisonexpression.html
new file mode 100644
index 000000000..37cb2b18f
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/emptycollectioncomparisonexpression.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>EmptyCollectionComparisonExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\EmptyCollectionComparisonExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/EmptyCollectionComparisonExpression.php at line 35</div>
+
+<h1>Class EmptyCollectionComparisonExpression</h1>
+
+<pre class="tree">Class:EmptyCollectionComparisonExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>EmptyCollectionComparisonExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>EmptyCollectionComparisonExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>EmptyCollectionComparisonExpression ::= CollectionValuedPathExpression "IS" ["NOT"] "EMPTY"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#expression">$expression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#not">$not</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#EmptyCollectionComparisonExpression()">EmptyCollectionComparisonExpression</a>(mixed expression)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/EmptyCollectionComparisonExpression.php at line 37</div>
+<h3 id="expression">expression</h3>
+<code class="signature">public  mixed <strong>$expression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/EmptyCollectionComparisonExpression.php at line 38</div>
+<h3 id="not">not</h3>
+<code class="signature">public  mixed <strong>$not</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/EmptyCollectionComparisonExpression.php at line 40</div>
+<h3 id="EmptyCollectionComparisonExpression()">EmptyCollectionComparisonExpression</h3>
+<code class="signature">public <strong>EmptyCollectionComparisonExpression</strong>(mixed expression)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/EmptyCollectionComparisonExpression.php at line 45</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/existsexpression.html b/lib/api/doctrine/orm/query/ast/existsexpression.html
new file mode 100644
index 000000000..2e66ea5ee
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/existsexpression.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ExistsExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/existsexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\ExistsExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/ExistsExpression.php at line 35</div>
+
+<h1>Class ExistsExpression</h1>
+
+<pre class="tree">Class:ExistsExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>ExistsExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ExistsExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ExistsExpression ::= ["NOT"] "EXISTS" "(" Subselect ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#not">$not</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#subselect">$subselect</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ExistsExpression()">ExistsExpression</a>(mixed subselect)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ExistsExpression.php at line 37</div>
+<h3 id="not">not</h3>
+<code class="signature">public  mixed <strong>$not</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/ExistsExpression.php at line 38</div>
+<h3 id="subselect">subselect</h3>
+<code class="signature">public  mixed <strong>$subselect</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ExistsExpression.php at line 40</div>
+<h3 id="ExistsExpression()">ExistsExpression</h3>
+<code class="signature">public <strong>ExistsExpression</strong>(mixed subselect)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/ExistsExpression.php at line 45</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/existsexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/fromclause.html b/lib/api/doctrine/orm/query/ast/fromclause.html
new file mode 100644
index 000000000..250892a95
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/fromclause.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>FromClause (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/fromclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\FromClause</div>
+<div class="location">/Doctrine/ORM/Query/AST/FromClause.php at line 35</div>
+
+<h1>Class FromClause</h1>
+
+<pre class="tree">Class:FromClause - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>FromClause</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>FromClause</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>FromClause ::= "FROM" IdentificationVariableDeclaration {"," IdentificationVariableDeclaration}</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#identificationVariableDeclarations">$identificationVariableDeclarations</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#FromClause()">FromClause</a>(mixed identificationVariableDeclarations)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/FromClause.php at line 37</div>
+<h3 id="identificationVariableDeclarations">identificationVariableDeclarations</h3>
+<code class="signature">public  mixed <strong>$identificationVariableDeclarations</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/FromClause.php at line 39</div>
+<h3 id="FromClause()">FromClause</h3>
+<code class="signature">public <strong>FromClause</strong>(mixed identificationVariableDeclarations)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/FromClause.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/fromclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/absfunction.html b/lib/api/doctrine/orm/query/ast/functions/absfunction.html
new file mode 100644
index 000000000..5c8346cdd
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/absfunction.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>AbsFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/absfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\AbsFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/AbsFunction.php at line 37</div>
+
+<h1>Class AbsFunction</h1>
+
+<pre class="tree">Class:AbsFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>AbsFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>AbsFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"ABS" "(" SimpleArithmeticExpression ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#simpleArithmeticExpression">$simpleArithmeticExpression</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/AbsFunction.php at line 39</div>
+<h3 id="simpleArithmeticExpression">simpleArithmeticExpression</h3>
+<code class="signature">public  mixed <strong>$simpleArithmeticExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/AbsFunction.php at line 44</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/AbsFunction.php at line 54</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/absfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/concatfunction.html b/lib/api/doctrine/orm/query/ast/functions/concatfunction.html
new file mode 100644
index 000000000..d75ee175a
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/concatfunction.html
@@ -0,0 +1,174 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>ConcatFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/concatfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\ConcatFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/ConcatFunction.php at line 37</div>
+
+<h1>Class ConcatFunction</h1>
+
+<pre class="tree">Class:ConcatFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>ConcatFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConcatFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"CONCAT" "(" StringPrimary "," StringPrimary ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#firstStringPrimary">$firstStringPrimary</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#secondStringPriamry">$secondStringPriamry</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/ConcatFunction.php at line 39</div>
+<h3 id="firstStringPrimary">firstStringPrimary</h3>
+<code class="signature">public  mixed <strong>$firstStringPrimary</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/ConcatFunction.php at line 40</div>
+<h3 id="secondStringPriamry">secondStringPriamry</h3>
+<code class="signature">public  mixed <strong>$secondStringPriamry</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/ConcatFunction.php at line 45</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/ConcatFunction.php at line 57</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/concatfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/currentdatefunction.html b/lib/api/doctrine/orm/query/ast/functions/currentdatefunction.html
new file mode 100644
index 000000000..e7a39f4ac
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/currentdatefunction.html
@@ -0,0 +1,145 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>CurrentDateFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/currentdatefunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\CurrentDateFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/CurrentDateFunction.php at line 37</div>
+
+<h1>Class CurrentDateFunction</h1>
+
+<pre class="tree">Class:CurrentDateFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>CurrentDateFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>CurrentDateFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"CURRENT_DATE"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/CurrentDateFunction.php at line 42</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/CurrentDateFunction.php at line 50</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/currentdatefunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/currenttimefunction.html b/lib/api/doctrine/orm/query/ast/functions/currenttimefunction.html
new file mode 100644
index 000000000..6622d990d
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/currenttimefunction.html
@@ -0,0 +1,145 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>CurrentTimeFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/currenttimefunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\CurrentTimeFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/CurrentTimeFunction.php at line 37</div>
+
+<h1>Class CurrentTimeFunction</h1>
+
+<pre class="tree">Class:CurrentTimeFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>CurrentTimeFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>CurrentTimeFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"CURRENT_TIME"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/CurrentTimeFunction.php at line 42</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/CurrentTimeFunction.php at line 50</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/currenttimefunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/currenttimestampfunction.html b/lib/api/doctrine/orm/query/ast/functions/currenttimestampfunction.html
new file mode 100644
index 000000000..98ec3a730
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/currenttimestampfunction.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>CurrentTimestampFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/currenttimestampfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\CurrentTimestampFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/CurrentTimestampFunction.php at line 16</div>
+
+<h1>Class CurrentTimestampFunction</h1>
+
+<pre class="tree">Class:CurrentTimestampFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>CurrentTimestampFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>CurrentTimestampFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"CURRENT_TIMESTAMP"</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>robo</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/CurrentTimestampFunction.php at line 21</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/CurrentTimestampFunction.php at line 29</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/currenttimestampfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/functionnode.html b/lib/api/doctrine/orm/query/ast/functions/functionnode.html
new file mode 100644
index 000000000..d8afef84a
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/functionnode.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>FunctionNode (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\FunctionNode</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/FunctionNode.php at line 37</div>
+
+<h1>Class FunctionNode</h1>
+
+<pre class="tree">Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>FunctionNode</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>FunctionNode</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Abtract Function Node.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#FunctionNode()">FunctionNode</a>(mixed name)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+<tr>
+<td class="type">abstract  void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p></td>
+</tr>
+<tr>
+<td class="type">abstract  void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/FunctionNode.php at line 39</div>
+<h3 id="name">name</h3>
+<code class="signature">public  mixed <strong>$name</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/FunctionNode.php at line 41</div>
+<h3 id="FunctionNode()">FunctionNode</h3>
+<code class="signature">public <strong>FunctionNode</strong>(mixed name)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/FunctionNode.php at line 48</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/FunctionNode.php at line 46</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public abstract  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/FunctionNode.php at line 53</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public abstract  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/lengthfunction.html b/lib/api/doctrine/orm/query/ast/functions/lengthfunction.html
new file mode 100644
index 000000000..90b63e899
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/lengthfunction.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>LengthFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/lengthfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\LengthFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LengthFunction.php at line 37</div>
+
+<h1>Class LengthFunction</h1>
+
+<pre class="tree">Class:LengthFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>LengthFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>LengthFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"LENGTH" "(" StringPrimary ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#stringPrimary">$stringPrimary</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LengthFunction.php at line 39</div>
+<h3 id="stringPrimary">stringPrimary</h3>
+<code class="signature">public  mixed <strong>$stringPrimary</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LengthFunction.php at line 44</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LengthFunction.php at line 53</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/lengthfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/locatefunction.html b/lib/api/doctrine/orm/query/ast/functions/locatefunction.html
new file mode 100644
index 000000000..3e7613c65
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/locatefunction.html
@@ -0,0 +1,186 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>LocateFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/locatefunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\LocateFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LocateFunction.php at line 37</div>
+
+<h1>Class LocateFunction</h1>
+
+<pre class="tree">Class:LocateFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>LocateFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>LocateFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"LOCATE" "(" StringPrimary "," StringPrimary ["," SimpleArithmeticExpression]")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#firstStringPrimary">$firstStringPrimary</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#secondStringPrimary">$secondStringPrimary</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#simpleArithmeticExpression">$simpleArithmeticExpression</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LocateFunction.php at line 39</div>
+<h3 id="firstStringPrimary">firstStringPrimary</h3>
+<code class="signature">public  mixed <strong>$firstStringPrimary</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LocateFunction.php at line 40</div>
+<h3 id="secondStringPrimary">secondStringPrimary</h3>
+<code class="signature">public  mixed <strong>$secondStringPrimary</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LocateFunction.php at line 41</div>
+<h3 id="simpleArithmeticExpression">simpleArithmeticExpression</h3>
+<code class="signature">public  mixed <strong>$simpleArithmeticExpression</strong> = false</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LocateFunction.php at line 46</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LocateFunction.php at line 62</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/locatefunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/lowerfunction.html b/lib/api/doctrine/orm/query/ast/functions/lowerfunction.html
new file mode 100644
index 000000000..4bdc023a4
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/lowerfunction.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>LowerFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/lowerfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\LowerFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LowerFunction.php at line 37</div>
+
+<h1>Class LowerFunction</h1>
+
+<pre class="tree">Class:LowerFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>LowerFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>LowerFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"LOWER" "(" StringPrimary ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#stringPrimary">$stringPrimary</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LowerFunction.php at line 39</div>
+<h3 id="stringPrimary">stringPrimary</h3>
+<code class="signature">public  mixed <strong>$stringPrimary</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LowerFunction.php at line 44</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/LowerFunction.php at line 53</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/lowerfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/modfunction.html b/lib/api/doctrine/orm/query/ast/functions/modfunction.html
new file mode 100644
index 000000000..d969d6254
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/modfunction.html
@@ -0,0 +1,174 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>ModFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/modfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\ModFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/ModFunction.php at line 37</div>
+
+<h1>Class ModFunction</h1>
+
+<pre class="tree">Class:ModFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>ModFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ModFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"MOD" "(" SimpleArithmeticExpression "," SimpleArithmeticExpression ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#firstSimpleArithmeticExpression">$firstSimpleArithmeticExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#secondSimpleArithmeticExpression">$secondSimpleArithmeticExpression</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/ModFunction.php at line 39</div>
+<h3 id="firstSimpleArithmeticExpression">firstSimpleArithmeticExpression</h3>
+<code class="signature">public  mixed <strong>$firstSimpleArithmeticExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/ModFunction.php at line 40</div>
+<h3 id="secondSimpleArithmeticExpression">secondSimpleArithmeticExpression</h3>
+<code class="signature">public  mixed <strong>$secondSimpleArithmeticExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/ModFunction.php at line 45</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/ModFunction.php at line 58</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/modfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/package-frame.html b/lib/api/doctrine/orm/query/ast/functions/package-frame.html
new file mode 100644
index 000000000..d9ab6c3be
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/package-frame.html
@@ -0,0 +1,40 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\AST\Functions (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Query\AST\Functions</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/absfunction.html" target="main">AbsFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/concatfunction.html" target="main">ConcatFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/currentdatefunction.html" target="main">CurrentDateFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/currenttimefunction.html" target="main">CurrentTimeFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/currenttimestampfunction.html" target="main">CurrentTimestampFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html" target="main">FunctionNode</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/lengthfunction.html" target="main">LengthFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/locatefunction.html" target="main">LocateFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/lowerfunction.html" target="main">LowerFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/modfunction.html" target="main">ModFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/sizefunction.html" target="main">SizeFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/sqrtfunction.html" target="main">SqrtFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/substringfunction.html" target="main">SubstringFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/trimfunction.html" target="main">TrimFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/upperfunction.html" target="main">UpperFunction</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/package-functions.html b/lib/api/doctrine/orm/query/ast/functions/package-functions.html
new file mode 100644
index 000000000..3bea90935
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/package-globals.html b/lib/api/doctrine/orm/query/ast/functions/package-globals.html
new file mode 100644
index 000000000..2e6bd8e42
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/package-summary.html b/lib/api/doctrine/orm/query/ast/functions/package-summary.html
new file mode 100644
index 000000000..63626937b
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/package-summary.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\AST\Functions (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Query\AST\Functions</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/absfunction.html">AbsFunction</a></td><td class="description">"ABS" "(" SimpleArithmeticExpression ")"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/concatfunction.html">ConcatFunction</a></td><td class="description">"CONCAT" "(" StringPrimary "," StringPrimary ")"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/currentdatefunction.html">CurrentDateFunction</a></td><td class="description">"CURRENT_DATE"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/currenttimefunction.html">CurrentTimeFunction</a></td><td class="description">"CURRENT_TIME"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/currenttimestampfunction.html">CurrentTimestampFunction</a></td><td class="description">"CURRENT_TIMESTAMP"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a></td><td class="description">Abtract Function Node.</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/lengthfunction.html">LengthFunction</a></td><td class="description">"LENGTH" "(" StringPrimary ")"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/locatefunction.html">LocateFunction</a></td><td class="description">"LOCATE" "(" StringPrimary "," StringPrimary ["," SimpleArithmeticExpression]")"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/lowerfunction.html">LowerFunction</a></td><td class="description">"LOWER" "(" StringPrimary ")"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/modfunction.html">ModFunction</a></td><td class="description">"MOD" "(" SimpleArithmeticExpression "," SimpleArithmeticExpression ")"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/sizefunction.html">SizeFunction</a></td><td class="description">"SIZE" "(" CollectionValuedPathExpression ")"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/sqrtfunction.html">SqrtFunction</a></td><td class="description">"SQRT" "(" SimpleArithmeticExpression ")"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/substringfunction.html">SubstringFunction</a></td><td class="description">"SUBSTRING" "(" StringPrimary "," SimpleArithmeticExpression "," SimpleArithmeticExpression ")"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/trimfunction.html">TrimFunction</a></td><td class="description">"TRIM" "(" [["LEADING" | "TRAILING" | "BOTH"] [char] "FROM"] StringPrimary ")"</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/query/ast/functions/upperfunction.html">UpperFunction</a></td><td class="description">"UPPER" "(" StringPrimary ")"</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/package-tree.html b/lib/api/doctrine/orm/query/ast/functions/package-tree.html
new file mode 100644
index 000000000..2bf66f683
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/package-tree.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\AST\Functions (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Query\AST\Functions</h1><ul>
+<li><a href="../../../../../doctrine/orm/query/ast/node.html">Doctrine\ORM\Query\AST\Node</a><ul>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">Doctrine\ORM\Query\AST\Functions\FunctionNode</a><ul>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/absfunction.html">Doctrine\ORM\Query\AST\Functions\AbsFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/concatfunction.html">Doctrine\ORM\Query\AST\Functions\ConcatFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/currentdatefunction.html">Doctrine\ORM\Query\AST\Functions\CurrentDateFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/currenttimefunction.html">Doctrine\ORM\Query\AST\Functions\CurrentTimeFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/currenttimestampfunction.html">Doctrine\ORM\Query\AST\Functions\CurrentTimestampFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/lengthfunction.html">Doctrine\ORM\Query\AST\Functions\LengthFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/locatefunction.html">Doctrine\ORM\Query\AST\Functions\LocateFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/lowerfunction.html">Doctrine\ORM\Query\AST\Functions\LowerFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/modfunction.html">Doctrine\ORM\Query\AST\Functions\ModFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/sizefunction.html">Doctrine\ORM\Query\AST\Functions\SizeFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/sqrtfunction.html">Doctrine\ORM\Query\AST\Functions\SqrtFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/substringfunction.html">Doctrine\ORM\Query\AST\Functions\SubstringFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/trimfunction.html">Doctrine\ORM\Query\AST\Functions\TrimFunction</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/upperfunction.html">Doctrine\ORM\Query\AST\Functions\UpperFunction</a></li>
+</ul>
+</li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/sizefunction.html b/lib/api/doctrine/orm/query/ast/functions/sizefunction.html
new file mode 100644
index 000000000..da0ea571f
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/sizefunction.html
@@ -0,0 +1,165 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>SizeFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/sizefunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\SizeFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SizeFunction.php at line 38</div>
+
+<h1>Class SizeFunction</h1>
+
+<pre class="tree">Class:SizeFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>SizeFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SizeFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"SIZE" "(" CollectionValuedPathExpression ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#collectionPathExpression">$collectionPathExpression</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SizeFunction.php at line 40</div>
+<h3 id="collectionPathExpression">collectionPathExpression</h3>
+<code class="signature">public  mixed <strong>$collectionPathExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SizeFunction.php at line 46</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+<dt>Todo:</dt>
+<dd>If the collection being counted is already joined, the SQL can be simpler (more efficient).</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SizeFunction.php at line 93</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/sizefunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/sqrtfunction.html b/lib/api/doctrine/orm/query/ast/functions/sqrtfunction.html
new file mode 100644
index 000000000..715fa7182
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/sqrtfunction.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>SqrtFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/sqrtfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\SqrtFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SqrtFunction.php at line 37</div>
+
+<h1>Class SqrtFunction</h1>
+
+<pre class="tree">Class:SqrtFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>SqrtFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SqrtFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"SQRT" "(" SimpleArithmeticExpression ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#simpleArithmeticExpression">$simpleArithmeticExpression</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SqrtFunction.php at line 39</div>
+<h3 id="simpleArithmeticExpression">simpleArithmeticExpression</h3>
+<code class="signature">public  mixed <strong>$simpleArithmeticExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SqrtFunction.php at line 44</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SqrtFunction.php at line 53</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/sqrtfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/substringfunction.html b/lib/api/doctrine/orm/query/ast/functions/substringfunction.html
new file mode 100644
index 000000000..534513793
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/substringfunction.html
@@ -0,0 +1,186 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>SubstringFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/substringfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\SubstringFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SubstringFunction.php at line 37</div>
+
+<h1>Class SubstringFunction</h1>
+
+<pre class="tree">Class:SubstringFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>SubstringFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SubstringFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"SUBSTRING" "(" StringPrimary "," SimpleArithmeticExpression "," SimpleArithmeticExpression ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#firstSimpleArithmeticExpression">$firstSimpleArithmeticExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#secondSimpleArithmeticExpression">$secondSimpleArithmeticExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#stringPrimary">$stringPrimary</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SubstringFunction.php at line 40</div>
+<h3 id="firstSimpleArithmeticExpression">firstSimpleArithmeticExpression</h3>
+<code class="signature">public  mixed <strong>$firstSimpleArithmeticExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SubstringFunction.php at line 41</div>
+<h3 id="secondSimpleArithmeticExpression">secondSimpleArithmeticExpression</h3>
+<code class="signature">public  mixed <strong>$secondSimpleArithmeticExpression</strong> = null</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SubstringFunction.php at line 39</div>
+<h3 id="stringPrimary">stringPrimary</h3>
+<code class="signature">public  mixed <strong>$stringPrimary</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SubstringFunction.php at line 46</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/SubstringFunction.php at line 63</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/substringfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/trimfunction.html b/lib/api/doctrine/orm/query/ast/functions/trimfunction.html
new file mode 100644
index 000000000..41b553981
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/trimfunction.html
@@ -0,0 +1,210 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>TrimFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/trimfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\TrimFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/TrimFunction.php at line 38</div>
+
+<h1>Class TrimFunction</h1>
+
+<pre class="tree">Class:TrimFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>TrimFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>TrimFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"TRIM" "(" [["LEADING" | "TRAILING" | "BOTH"] [char] "FROM"] StringPrimary ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#both">$both</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#leading">$leading</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#stringPrimary">$stringPrimary</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#trailing">$trailing</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#trimChar">$trimChar</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/TrimFunction.php at line 42</div>
+<h3 id="both">both</h3>
+<code class="signature">public  mixed <strong>$both</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/TrimFunction.php at line 40</div>
+<h3 id="leading">leading</h3>
+<code class="signature">public  mixed <strong>$leading</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/TrimFunction.php at line 44</div>
+<h3 id="stringPrimary">stringPrimary</h3>
+<code class="signature">public  mixed <strong>$stringPrimary</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/TrimFunction.php at line 41</div>
+<h3 id="trailing">trailing</h3>
+<code class="signature">public  mixed <strong>$trailing</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/TrimFunction.php at line 43</div>
+<h3 id="trimChar">trimChar</h3>
+<code class="signature">public  mixed <strong>$trimChar</strong> = false</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/TrimFunction.php at line 49</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/TrimFunction.php at line 70</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/trimfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/functions/upperfunction.html b/lib/api/doctrine/orm/query/ast/functions/upperfunction.html
new file mode 100644
index 000000000..68c3a9fc3
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/functions/upperfunction.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>UpperFunction (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/upperfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Functions\UpperFunction</div>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/UpperFunction.php at line 37</div>
+
+<h1>Class UpperFunction</h1>
+
+<pre class="tree">Class:UpperFunction - Superclass: FunctionNode
+Class:FunctionNode - Superclass: Node
+<a href="../../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a><br>      &lfloor;&nbsp;<strong>UpperFunction</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>UpperFunction</strong><br>extends <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html">FunctionNode</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>"UPPER" "(" StringPrimary ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#stringPrimary">$stringPrimary</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#name">name</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getSql()">getSql</a>(mixed sqlWalker)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>(mixed parser)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Functions\FunctionNode</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql</a>, <a href="../../../../../doctrine/orm/query/ast/functions/functionnode.html#parse()">parse</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/UpperFunction.php at line 39</div>
+<h3 id="stringPrimary">stringPrimary</h3>
+<code class="signature">public  mixed <strong>$stringPrimary</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Functions/UpperFunction.php at line 44</div>
+<h3 id="getSql()">getSql</h3>
+<code class="signature">public  void <strong>getSql</strong>(mixed sqlWalker)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Functions/UpperFunction.php at line 53</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  void <strong>parse</strong>(mixed parser)</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/query/ast/functions/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/query/ast/functions/upperfunction.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/groupbyclause.html b/lib/api/doctrine/orm/query/ast/groupbyclause.html
new file mode 100644
index 000000000..ee2b0a90b
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/groupbyclause.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>GroupByClause (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/groupbyclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\GroupByClause</div>
+<div class="location">/Doctrine/ORM/Query/AST/GroupByClause.php at line 35</div>
+
+<h1>Class GroupByClause</h1>
+
+<pre class="tree">Class:GroupByClause - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>GroupByClause</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>GroupByClause</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Description of GroupByClause</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#groupByItems">$groupByItems</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#GroupByClause()">GroupByClause</a>(mixed groupByItems)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/GroupByClause.php at line 37</div>
+<h3 id="groupByItems">groupByItems</h3>
+<code class="signature">public  mixed <strong>$groupByItems</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/GroupByClause.php at line 39</div>
+<h3 id="GroupByClause()">GroupByClause</h3>
+<code class="signature">public <strong>GroupByClause</strong>(mixed groupByItems)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/GroupByClause.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/groupbyclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/havingclause.html b/lib/api/doctrine/orm/query/ast/havingclause.html
new file mode 100644
index 000000000..42f455007
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/havingclause.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>HavingClause (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/havingclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\HavingClause</div>
+<div class="location">/Doctrine/ORM/Query/AST/HavingClause.php at line 35</div>
+
+<h1>Class HavingClause</h1>
+
+<pre class="tree">Class:HavingClause - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>HavingClause</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>HavingClause</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Description of HavingClause</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#conditionalExpression">$conditionalExpression</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#HavingClause()">HavingClause</a>(mixed conditionalExpression)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/HavingClause.php at line 37</div>
+<h3 id="conditionalExpression">conditionalExpression</h3>
+<code class="signature">public  mixed <strong>$conditionalExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/HavingClause.php at line 39</div>
+<h3 id="HavingClause()">HavingClause</h3>
+<code class="signature">public <strong>HavingClause</strong>(mixed conditionalExpression)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/HavingClause.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/havingclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/identificationvariabledeclaration.html b/lib/api/doctrine/orm/query/ast/identificationvariabledeclaration.html
new file mode 100644
index 000000000..b3aab93b1
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/identificationvariabledeclaration.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>IdentificationVariableDeclaration (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/identificationvariabledeclaration.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\IdentificationVariableDeclaration</div>
+<div class="location">/Doctrine/ORM/Query/AST/IdentificationVariableDeclaration.php at line 35</div>
+
+<h1>Class IdentificationVariableDeclaration</h1>
+
+<pre class="tree">Class:IdentificationVariableDeclaration - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>IdentificationVariableDeclaration</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>IdentificationVariableDeclaration</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>IdentificationVariableDeclaration ::= RangeVariableDeclaration [IndexBy] {JoinVariableDeclaration}</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#indexBy">$indexBy</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#joinVariableDeclarations">$joinVariableDeclarations</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#rangeVariableDeclaration">$rangeVariableDeclaration</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#IdentificationVariableDeclaration()">IdentificationVariableDeclaration</a>(mixed rangeVariableDecl, mixed indexBy, mixed joinVariableDecls)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/IdentificationVariableDeclaration.php at line 38</div>
+<h3 id="indexBy">indexBy</h3>
+<code class="signature">public  mixed <strong>$indexBy</strong> = null</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/IdentificationVariableDeclaration.php at line 39</div>
+<h3 id="joinVariableDeclarations">joinVariableDeclarations</h3>
+<code class="signature">public  mixed <strong>$joinVariableDeclarations</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/IdentificationVariableDeclaration.php at line 37</div>
+<h3 id="rangeVariableDeclaration">rangeVariableDeclaration</h3>
+<code class="signature">public  mixed <strong>$rangeVariableDeclaration</strong> = null</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/IdentificationVariableDeclaration.php at line 41</div>
+<h3 id="IdentificationVariableDeclaration()">IdentificationVariableDeclaration</h3>
+<code class="signature">public <strong>IdentificationVariableDeclaration</strong>(mixed rangeVariableDecl, mixed indexBy, mixed joinVariableDecls)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/IdentificationVariableDeclaration.php at line 48</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/identificationvariabledeclaration.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/indexby.html b/lib/api/doctrine/orm/query/ast/indexby.html
new file mode 100644
index 000000000..7ca02ebf2
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/indexby.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>IndexBy (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/indexby.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\IndexBy</div>
+<div class="location">/Doctrine/ORM/Query/AST/IndexBy.php at line 35</div>
+
+<h1>Class IndexBy</h1>
+
+<pre class="tree">Class:IndexBy - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>IndexBy</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>IndexBy</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>IndexBy ::= "INDEX" "BY" SimpleStateFieldPathExpression</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#simpleStateFieldPathExpression">$simpleStateFieldPathExpression</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#IndexBy()">IndexBy</a>(mixed simpleStateFieldPathExpression)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/IndexBy.php at line 37</div>
+<h3 id="simpleStateFieldPathExpression">simpleStateFieldPathExpression</h3>
+<code class="signature">public  mixed <strong>$simpleStateFieldPathExpression</strong> = null</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/IndexBy.php at line 39</div>
+<h3 id="IndexBy()">IndexBy</h3>
+<code class="signature">public <strong>IndexBy</strong>(mixed simpleStateFieldPathExpression)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/IndexBy.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/indexby.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/inexpression.html b/lib/api/doctrine/orm/query/ast/inexpression.html
new file mode 100644
index 000000000..0d4ee2661
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/inexpression.html
@@ -0,0 +1,188 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>InExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/inexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\InExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/InExpression.php at line 35</div>
+
+<h1>Class InExpression</h1>
+
+<pre class="tree">Class:InExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>InExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>InExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>InExpression ::= StateFieldPathExpression ["NOT"] "IN" "(" (Literal {"," Literal}* | Subselect) ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#literals">$literals</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#not">$not</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#pathExpression">$pathExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#subselect">$subselect</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#InExpression()">InExpression</a>(mixed pathExpression)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/InExpression.php at line 39</div>
+<h3 id="literals">literals</h3>
+<code class="signature">public  mixed <strong>$literals</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/InExpression.php at line 37</div>
+<h3 id="not">not</h3>
+<code class="signature">public  mixed <strong>$not</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/InExpression.php at line 38</div>
+<h3 id="pathExpression">pathExpression</h3>
+<code class="signature">public  mixed <strong>$pathExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/InExpression.php at line 40</div>
+<h3 id="subselect">subselect</h3>
+<code class="signature">public  mixed <strong>$subselect</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/InExpression.php at line 42</div>
+<h3 id="InExpression()">InExpression</h3>
+<code class="signature">public <strong>InExpression</strong>(mixed pathExpression)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/InExpression.php at line 47</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/inexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/inputparameter.html b/lib/api/doctrine/orm/query/ast/inputparameter.html
new file mode 100644
index 000000000..328908d1f
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/inputparameter.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>InputParameter (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/inputparameter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\InputParameter</div>
+<div class="location">/Doctrine/ORM/Query/AST/InputParameter.php at line 35</div>
+
+<h1>Class InputParameter</h1>
+
+<pre class="tree">Class:InputParameter - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>InputParameter</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>InputParameter</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Description of InputParameter</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#isNamed">$isNamed</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#name">$name</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#InputParameter()">InputParameter</a>(string value)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/InputParameter.php at line 37</div>
+<h3 id="isNamed">isNamed</h3>
+<code class="signature">public  mixed <strong>$isNamed</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/InputParameter.php at line 38</div>
+<h3 id="name">name</h3>
+<code class="signature">public  mixed <strong>$name</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/InputParameter.php at line 43</div>
+<h3 id="InputParameter()">InputParameter</h3>
+<code class="signature">public <strong>InputParameter</strong>(string value)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/InputParameter.php at line 54</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/inputparameter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/join.html b/lib/api/doctrine/orm/query/ast/join.html
new file mode 100644
index 000000000..3e705eb7c
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/join.html
@@ -0,0 +1,225 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Join (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/join.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Join</div>
+<div class="location">/Doctrine/ORM/Query/AST/Join.php at line 36</div>
+
+<h1>Class Join</h1>
+
+<pre class="tree">Class:Join - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>Join</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Join</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Join ::= ["LEFT" ["OUTER"] | "INNER"] "JOIN" JoinAssociationPathExpression
+["AS"] AliasIdentificationVariable [("ON" | "WITH") ConditionalExpression]</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#JOIN_TYPE_INNER">JOIN_TYPE_INNER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#JOIN_TYPE_LEFT">JOIN_TYPE_LEFT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#JOIN_TYPE_LEFTOUTER">JOIN_TYPE_LEFTOUTER</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#aliasIdentificationVariable">$aliasIdentificationVariable</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#conditionalExpression">$conditionalExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#joinAssociationPathExpression">$joinAssociationPathExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#joinType">$joinType</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Join()">Join</a>(mixed joinType, mixed joinAssocPathExpr, mixed aliasIdentVar)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Join.php at line 40</div>
+<h3 id="JOIN_TYPE_INNER">JOIN_TYPE_INNER</h3>
+<code class="signature">public final  int <strong>JOIN_TYPE_INNER</strong> = 3</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Join.php at line 38</div>
+<h3 id="JOIN_TYPE_LEFT">JOIN_TYPE_LEFT</h3>
+<code class="signature">public final  int <strong>JOIN_TYPE_LEFT</strong> = 1</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Join.php at line 39</div>
+<h3 id="JOIN_TYPE_LEFTOUTER">JOIN_TYPE_LEFTOUTER</h3>
+<code class="signature">public final  int <strong>JOIN_TYPE_LEFTOUTER</strong> = 2</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Join.php at line 44</div>
+<h3 id="aliasIdentificationVariable">aliasIdentificationVariable</h3>
+<code class="signature">public  mixed <strong>$aliasIdentificationVariable</strong> = null</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Join.php at line 45</div>
+<h3 id="conditionalExpression">conditionalExpression</h3>
+<code class="signature">public  mixed <strong>$conditionalExpression</strong> = null</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Join.php at line 43</div>
+<h3 id="joinAssociationPathExpression">joinAssociationPathExpression</h3>
+<code class="signature">public  mixed <strong>$joinAssociationPathExpression</strong> = null</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Join.php at line 42</div>
+<h3 id="joinType">joinType</h3>
+<code class="signature">public  mixed <strong>$joinType</strong> = self::JOIN_TYPE_INNER</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Join.php at line 47</div>
+<h3 id="Join()">Join</h3>
+<code class="signature">public <strong>Join</strong>(mixed joinType, mixed joinAssocPathExpr, mixed aliasIdentVar)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Join.php at line 54</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/join.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/joinassociationpathexpression.html b/lib/api/doctrine/orm/query/ast/joinassociationpathexpression.html
new file mode 100644
index 000000000..a72a3b4fb
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/joinassociationpathexpression.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>JoinAssociationPathExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/joinassociationpathexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\JoinAssociationPathExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/JoinAssociationPathExpression.php at line 35</div>
+
+<h1>Class JoinAssociationPathExpression</h1>
+
+<pre class="tree">Class:JoinAssociationPathExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>JoinAssociationPathExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>JoinAssociationPathExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>JoinAssociationPathExpression ::= IdentificationVariable "." (SingleValuedAssociationField | CollectionValuedAssociationField)</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#associationField">$associationField</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#identificationVariable">$identificationVariable</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#JoinAssociationPathExpression()">JoinAssociationPathExpression</a>(mixed identificationVariable, mixed associationField)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/JoinAssociationPathExpression.php at line 38</div>
+<h3 id="associationField">associationField</h3>
+<code class="signature">public  mixed <strong>$associationField</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/JoinAssociationPathExpression.php at line 37</div>
+<h3 id="identificationVariable">identificationVariable</h3>
+<code class="signature">public  mixed <strong>$identificationVariable</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/JoinAssociationPathExpression.php at line 40</div>
+<h3 id="JoinAssociationPathExpression()">JoinAssociationPathExpression</h3>
+<code class="signature">public <strong>JoinAssociationPathExpression</strong>(mixed identificationVariable, mixed associationField)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/JoinAssociationPathExpression.php at line 46</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/joinassociationpathexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/joinvariabledeclaration.html b/lib/api/doctrine/orm/query/ast/joinvariabledeclaration.html
new file mode 100644
index 000000000..e35e87eb6
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/joinvariabledeclaration.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>JoinVariableDeclaration (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/joinvariabledeclaration.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\JoinVariableDeclaration</div>
+<div class="location">/Doctrine/ORM/Query/AST/JoinVariableDeclaration.php at line 35</div>
+
+<h1>Class JoinVariableDeclaration</h1>
+
+<pre class="tree">Class:JoinVariableDeclaration - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>JoinVariableDeclaration</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>JoinVariableDeclaration</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>JoinVariableDeclaration ::= Join [IndexBy]</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#indexBy">$indexBy</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#join">$join</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#JoinVariableDeclaration()">JoinVariableDeclaration</a>(mixed join, mixed indexBy)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/JoinVariableDeclaration.php at line 38</div>
+<h3 id="indexBy">indexBy</h3>
+<code class="signature">public  mixed <strong>$indexBy</strong> = null</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/JoinVariableDeclaration.php at line 37</div>
+<h3 id="join">join</h3>
+<code class="signature">public  mixed <strong>$join</strong> = null</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/JoinVariableDeclaration.php at line 40</div>
+<h3 id="JoinVariableDeclaration()">JoinVariableDeclaration</h3>
+<code class="signature">public <strong>JoinVariableDeclaration</strong>(mixed join, mixed indexBy)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/JoinVariableDeclaration.php at line 46</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/joinvariabledeclaration.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/likeexpression.html b/lib/api/doctrine/orm/query/ast/likeexpression.html
new file mode 100644
index 000000000..409f1bbc9
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/likeexpression.html
@@ -0,0 +1,188 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>LikeExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/likeexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\LikeExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/LikeExpression.php at line 35</div>
+
+<h1>Class LikeExpression</h1>
+
+<pre class="tree">Class:LikeExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>LikeExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>LikeExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>LikeExpression ::= StringExpression ["NOT"] "LIKE" string ["ESCAPE" char]</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#escapeChar">$escapeChar</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#not">$not</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#stringExpression">$stringExpression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#stringPattern">$stringPattern</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#LikeExpression()">LikeExpression</a>(mixed stringExpression, mixed stringPattern, mixed escapeChar)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/LikeExpression.php at line 40</div>
+<h3 id="escapeChar">escapeChar</h3>
+<code class="signature">public  mixed <strong>$escapeChar</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/LikeExpression.php at line 37</div>
+<h3 id="not">not</h3>
+<code class="signature">public  mixed <strong>$not</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/LikeExpression.php at line 38</div>
+<h3 id="stringExpression">stringExpression</h3>
+<code class="signature">public  mixed <strong>$stringExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/LikeExpression.php at line 39</div>
+<h3 id="stringPattern">stringPattern</h3>
+<code class="signature">public  mixed <strong>$stringPattern</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/LikeExpression.php at line 42</div>
+<h3 id="LikeExpression()">LikeExpression</h3>
+<code class="signature">public <strong>LikeExpression</strong>(mixed stringExpression, mixed stringPattern, mixed escapeChar)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/LikeExpression.php at line 49</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/likeexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/literal.html b/lib/api/doctrine/orm/query/ast/literal.html
new file mode 100644
index 000000000..e8b43973e
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/literal.html
@@ -0,0 +1,200 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Literal (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/literal.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Literal</div>
+<div class="location">/Doctrine/ORM/Query/AST/Literal.php at line 5</div>
+
+<h1>Class Literal</h1>
+
+<pre class="tree">Class:Literal - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>Literal</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Literal</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Abstract class of an AST node</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#BOOLEAN">BOOLEAN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#NUMERIC">NUMERIC</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#STRING">STRING</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#type">$type</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#value">$value</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Literal()">Literal</a>(mixed type, mixed value)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Literal.php at line 8</div>
+<h3 id="BOOLEAN">BOOLEAN</h3>
+<code class="signature">public final  int <strong>BOOLEAN</strong> = 2</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Literal.php at line 9</div>
+<h3 id="NUMERIC">NUMERIC</h3>
+<code class="signature">public final  int <strong>NUMERIC</strong> = 3</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Literal.php at line 7</div>
+<h3 id="STRING">STRING</h3>
+<code class="signature">public final  int <strong>STRING</strong> = 1</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Literal.php at line 11</div>
+<h3 id="type">type</h3>
+<code class="signature">public  mixed <strong>$type</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Literal.php at line 12</div>
+<h3 id="value">value</h3>
+<code class="signature">public  mixed <strong>$value</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Literal.php at line 14</div>
+<h3 id="Literal()">Literal</h3>
+<code class="signature">public <strong>Literal</strong>(mixed type, mixed value)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Literal.php at line 20</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/literal.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/node.html b/lib/api/doctrine/orm/query/ast/node.html
new file mode 100644
index 000000000..a94c536ea
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/node.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Node (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/node.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Node</div>
+<div class="location">/Doctrine/ORM/Query/AST/Node.php at line 35</div>
+
+<h1>Class Node</h1>
+
+<pre class="tree"><strong>Node</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>Node</strong></p>
+
+<div class="comment" id="overview_description"><p>Abstract class of an AST node</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dump()">dump</a>(mixed obj)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Node.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Node.php at line 59</div>
+<h3 id="dump()">dump</h3>
+<code class="signature">public  void <strong>dump</strong>(mixed obj)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/node.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/nullcomparisonexpression.html b/lib/api/doctrine/orm/query/ast/nullcomparisonexpression.html
new file mode 100644
index 000000000..8ef125e94
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/nullcomparisonexpression.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>NullComparisonExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/nullcomparisonexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\NullComparisonExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/NullComparisonExpression.php at line 35</div>
+
+<h1>Class NullComparisonExpression</h1>
+
+<pre class="tree">Class:NullComparisonExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>NullComparisonExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>NullComparisonExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>NullComparisonExpression ::= (SingleValuedPathExpression | InputParameter) "IS" ["NOT"] "NULL"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#expression">$expression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#not">$not</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#NullComparisonExpression()">NullComparisonExpression</a>(mixed expression)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/NullComparisonExpression.php at line 38</div>
+<h3 id="expression">expression</h3>
+<code class="signature">public  mixed <strong>$expression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/NullComparisonExpression.php at line 37</div>
+<h3 id="not">not</h3>
+<code class="signature">public  mixed <strong>$not</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/NullComparisonExpression.php at line 40</div>
+<h3 id="NullComparisonExpression()">NullComparisonExpression</h3>
+<code class="signature">public <strong>NullComparisonExpression</strong>(mixed expression)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/NullComparisonExpression.php at line 45</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/nullcomparisonexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/orderbyclause.html b/lib/api/doctrine/orm/query/ast/orderbyclause.html
new file mode 100644
index 000000000..1ee34bdd0
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/orderbyclause.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>OrderByClause (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/orderbyclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\OrderByClause</div>
+<div class="location">/Doctrine/ORM/Query/AST/OrderByClause.php at line 35</div>
+
+<h1>Class OrderByClause</h1>
+
+<pre class="tree">Class:OrderByClause - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>OrderByClause</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OrderByClause</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>OrderByClause ::= "ORDER" "BY" OrderByItem {"," OrderByItem}</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#orderByItems">$orderByItems</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#OrderByClause()">OrderByClause</a>(mixed orderByItems)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/OrderByClause.php at line 37</div>
+<h3 id="orderByItems">orderByItems</h3>
+<code class="signature">public  mixed <strong>$orderByItems</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/OrderByClause.php at line 39</div>
+<h3 id="OrderByClause()">OrderByClause</h3>
+<code class="signature">public <strong>OrderByClause</strong>(mixed orderByItems)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/OrderByClause.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/orderbyclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/orderbyitem.html b/lib/api/doctrine/orm/query/ast/orderbyitem.html
new file mode 100644
index 000000000..e2b7ab637
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/orderbyitem.html
@@ -0,0 +1,188 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>OrderByItem (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/orderbyitem.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\OrderByItem</div>
+<div class="location">/Doctrine/ORM/Query/AST/OrderByItem.php at line 35</div>
+
+<h1>Class OrderByItem</h1>
+
+<pre class="tree">Class:OrderByItem - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>OrderByItem</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OrderByItem</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>OrderByItem ::= (ResultVariable | StateFieldPathExpression) ["ASC" | "DESC"]</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#expression">$expression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#type">$type</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#OrderByItem()">OrderByItem</a>(mixed expression)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isAsc()">isAsc</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isDesc()">isDesc</a>()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/OrderByItem.php at line 37</div>
+<h3 id="expression">expression</h3>
+<code class="signature">public  mixed <strong>$expression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/OrderByItem.php at line 38</div>
+<h3 id="type">type</h3>
+<code class="signature">public  mixed <strong>$type</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/OrderByItem.php at line 40</div>
+<h3 id="OrderByItem()">OrderByItem</h3>
+<code class="signature">public <strong>OrderByItem</strong>(mixed expression)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/OrderByItem.php at line 55</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/OrderByItem.php at line 45</div>
+<h3 id="isAsc()">isAsc</h3>
+<code class="signature">public  void <strong>isAsc</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/OrderByItem.php at line 50</div>
+<h3 id="isDesc()">isDesc</h3>
+<code class="signature">public  void <strong>isDesc</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/orderbyitem.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/package-frame.html b/lib/api/doctrine/orm/query/ast/package-frame.html
new file mode 100644
index 000000000..5797f217a
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/package-frame.html
@@ -0,0 +1,73 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\AST (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Query\AST</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/orm/query/ast/astexception.html" target="main">ASTException</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/aggregateexpression.html" target="main">AggregateExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/arithmeticexpression.html" target="main">ArithmeticExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/arithmeticfactor.html" target="main">ArithmeticFactor</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/arithmeticterm.html" target="main">ArithmeticTerm</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/betweenexpression.html" target="main">BetweenExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/collectionmemberexpression.html" target="main">CollectionMemberExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/comparisonexpression.html" target="main">ComparisonExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/conditionalexpression.html" target="main">ConditionalExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/conditionalfactor.html" target="main">ConditionalFactor</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/conditionalprimary.html" target="main">ConditionalPrimary</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/conditionalterm.html" target="main">ConditionalTerm</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/deleteclause.html" target="main">DeleteClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/deletestatement.html" target="main">DeleteStatement</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html" target="main">EmptyCollectionComparisonExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/existsexpression.html" target="main">ExistsExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/fromclause.html" target="main">FromClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/groupbyclause.html" target="main">GroupByClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/havingclause.html" target="main">HavingClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/identificationvariabledeclaration.html" target="main">IdentificationVariableDeclaration</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/inexpression.html" target="main">InExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/indexby.html" target="main">IndexBy</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/inputparameter.html" target="main">InputParameter</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/join.html" target="main">Join</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/joinassociationpathexpression.html" target="main">JoinAssociationPathExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/joinvariabledeclaration.html" target="main">JoinVariableDeclaration</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/likeexpression.html" target="main">LikeExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/literal.html" target="main">Literal</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/node.html" target="main">Node</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/nullcomparisonexpression.html" target="main">NullComparisonExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/orderbyclause.html" target="main">OrderByClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/orderbyitem.html" target="main">OrderByItem</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/partialobjectexpression.html" target="main">PartialObjectExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/pathexpression.html" target="main">PathExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/quantifiedexpression.html" target="main">QuantifiedExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/rangevariabledeclaration.html" target="main">RangeVariableDeclaration</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/selectclause.html" target="main">SelectClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/selectexpression.html" target="main">SelectExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/selectstatement.html" target="main">SelectStatement</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/simplearithmeticexpression.html" target="main">SimpleArithmeticExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/simpleselectclause.html" target="main">SimpleSelectClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/simpleselectexpression.html" target="main">SimpleSelectExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/subselect.html" target="main">Subselect</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/subselectfromclause.html" target="main">SubselectFromClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/updateclause.html" target="main">UpdateClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/updateitem.html" target="main">UpdateItem</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/updatestatement.html" target="main">UpdateStatement</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/whereclause.html" target="main">WhereClause</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/package-functions.html b/lib/api/doctrine/orm/query/ast/package-functions.html
new file mode 100644
index 000000000..6d16374cd
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/package-globals.html b/lib/api/doctrine/orm/query/ast/package-globals.html
new file mode 100644
index 000000000..1d3015657
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/package-summary.html b/lib/api/doctrine/orm/query/ast/package-summary.html
new file mode 100644
index 000000000..d2e1f5e37
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/package-summary.html
@@ -0,0 +1,128 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\AST (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Query\AST</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/astexception.html">ASTException</a></td><td class="description">Description of QueryException</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/aggregateexpression.html">AggregateExpression</a></td><td class="description">Description of AggregateExpression</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/arithmeticexpression.html">ArithmeticExpression</a></td><td class="description">ArithmeticExpression ::= SimpleArithmeticExpression | "(" Subselect ")"</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/arithmeticfactor.html">ArithmeticFactor</a></td><td class="description">ArithmeticFactor ::= [("+" | "-")] ArithmeticPrimary</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/arithmeticterm.html">ArithmeticTerm</a></td><td class="description">ArithmeticTerm ::= ArithmeticFactor {("*" | "/") ArithmeticFactor}</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/betweenexpression.html">BetweenExpression</a></td><td class="description">Description of BetweenExpression@license http://www.opensource.org/licenses/lgpl-license.php LGPL</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/collectionmemberexpression.html">CollectionMemberExpression</a></td><td class="description">CollectionMemberExpression ::= EntityExpression ["NOT"] "MEMBER" ["OF"] CollectionValuedPathExpression</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/comparisonexpression.html">ComparisonExpression</a></td><td class="description">ComparisonExpression ::= ArithmeticExpression ComparisonOperator ( QuantifiedExpression | ArithmeticExpression ) |
+StringExpression ComparisonOperator (StringExpression | QuantifiedExpression) |
+BooleanExpression ("=" | "" | "!=") (BooleanExpression | QuantifiedExpression) |
+EnumExpression ("=" | "" | "!=") (EnumExpression | QuantifiedExpression) |
+DatetimeExpression ComparisonOperator (DatetimeExpression | QuantifiedExpression) |
+EntityExpression ("=" | "") (EntityExpression | QuantifiedExpression)</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/conditionalexpression.html">ConditionalExpression</a></td><td class="description">ConditionalExpression ::= ConditionalTerm {"OR" ConditionalTerm}</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/conditionalfactor.html">ConditionalFactor</a></td><td class="description">ConditionalFactor ::= ["NOT"] ConditionalPrimary</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/conditionalprimary.html">ConditionalPrimary</a></td><td class="description">ConditionalPrimary ::= SimpleConditionalExpression | "(" ConditionalExpression ")"</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/conditionalterm.html">ConditionalTerm</a></td><td class="description">ConditionalTerm ::= ConditionalFactor {"AND" ConditionalFactor}</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/deleteclause.html">DeleteClause</a></td><td class="description">DeleteClause ::= "DELETE" ["FROM"] AbstractSchemaName [["AS"] AliasIdentificationVariable]</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/deletestatement.html">DeleteStatement</a></td><td class="description">DeleteStatement = DeleteClause [WhereClause]</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">EmptyCollectionComparisonExpression</a></td><td class="description">EmptyCollectionComparisonExpression ::= CollectionValuedPathExpression "IS" ["NOT"] "EMPTY"</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/existsexpression.html">ExistsExpression</a></td><td class="description">ExistsExpression ::= ["NOT"] "EXISTS" "(" Subselect ")"</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/fromclause.html">FromClause</a></td><td class="description">FromClause ::= "FROM" IdentificationVariableDeclaration {"," IdentificationVariableDeclaration}</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/groupbyclause.html">GroupByClause</a></td><td class="description">Description of GroupByClause</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/havingclause.html">HavingClause</a></td><td class="description">Description of HavingClause</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/identificationvariabledeclaration.html">IdentificationVariableDeclaration</a></td><td class="description">IdentificationVariableDeclaration ::= RangeVariableDeclaration [IndexBy] {JoinVariableDeclaration}</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/inexpression.html">InExpression</a></td><td class="description">InExpression ::= StateFieldPathExpression ["NOT"] "IN" "(" (Literal {"," Literal}* | Subselect) ")"</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/indexby.html">IndexBy</a></td><td class="description">IndexBy ::= "INDEX" "BY" SimpleStateFieldPathExpression</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/inputparameter.html">InputParameter</a></td><td class="description">Description of InputParameter</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/join.html">Join</a></td><td class="description">Join ::= ["LEFT" ["OUTER"] | "INNER"] "JOIN" JoinAssociationPathExpression
+["AS"] AliasIdentificationVariable [("ON" | "WITH") ConditionalExpression]</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/joinassociationpathexpression.html">JoinAssociationPathExpression</a></td><td class="description">JoinAssociationPathExpression ::= IdentificationVariable "." (SingleValuedAssociationField | CollectionValuedAssociationField)</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/joinvariabledeclaration.html">JoinVariableDeclaration</a></td><td class="description">JoinVariableDeclaration ::= Join [IndexBy]</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/likeexpression.html">LikeExpression</a></td><td class="description">LikeExpression ::= StringExpression ["NOT"] "LIKE" string ["ESCAPE" char]</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/literal.html">Literal</a></td><td class="description">Abstract class of an AST node</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/node.html">Node</a></td><td class="description">Abstract class of an AST node</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/nullcomparisonexpression.html">NullComparisonExpression</a></td><td class="description">NullComparisonExpression ::= (SingleValuedPathExpression | InputParameter) "IS" ["NOT"] "NULL"</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/orderbyclause.html">OrderByClause</a></td><td class="description">OrderByClause ::= "ORDER" "BY" OrderByItem {"," OrderByItem}</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/orderbyitem.html">OrderByItem</a></td><td class="description">OrderByItem ::= (ResultVariable | StateFieldPathExpression) ["ASC" | "DESC"]</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/partialobjectexpression.html">PartialObjectExpression</a></td><td class="description">Abstract class of an AST node</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/pathexpression.html">PathExpression</a></td><td class="description">AssociationPathExpression ::= CollectionValuedPathExpression | SingleValuedAssociationPathExpression
+SingleValuedPathExpression ::= StateFieldPathExpression | SingleValuedAssociationPathExpression
+StateFieldPathExpression ::= SimpleStateFieldPathExpression | SimpleStateFieldAssociationPathExpression
+SingleValuedAssociationPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* SingleValuedAssociationField
+CollectionValuedPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* CollectionValuedAssociationField
+StateField ::= {EmbeddedClassStateField "."}* SimpleStateField
+SimpleStateFieldPathExpression ::= IdentificationVariable "." StateField
+SimpleStateFieldAssociationPathExpression ::= SingleValuedAssociationPathExpression "." StateField</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/quantifiedexpression.html">QuantifiedExpression</a></td><td class="description">QuantifiedExpression ::= ("ALL" | "ANY" | "SOME") "(" Subselect ")"</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/rangevariabledeclaration.html">RangeVariableDeclaration</a></td><td class="description">RangeVariableDeclaration ::= AbstractSchemaName ["AS"] AliasIdentificationVariable</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/selectclause.html">SelectClause</a></td><td class="description">SelectClause = "SELECT" ["DISTINCT"] SelectExpression {"," SelectExpression}</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/selectexpression.html">SelectExpression</a></td><td class="description">SelectExpression ::= IdentificationVariable ["." "*"] | StateFieldPathExpression |
+(AggregateExpression | "(" Subselect ")") [["AS"] FieldAliasIdentificationVariable]</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/selectstatement.html">SelectStatement</a></td><td class="description">SelectStatement = SelectClause FromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/simplearithmeticexpression.html">SimpleArithmeticExpression</a></td><td class="description">SimpleArithmeticExpression ::= ArithmeticTerm {("+" | "-") ArithmeticTerm}</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/simpleselectclause.html">SimpleSelectClause</a></td><td class="description">SimpleSelectClause  ::= "SELECT" ["DISTINCT"] SimpleSelectExpression</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/simpleselectexpression.html">SimpleSelectExpression</a></td><td class="description">SimpleSelectExpression ::= StateFieldPathExpression | IdentificationVariable
+| (AggregateExpression [["AS"] FieldAliasIdentificationVariable])</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/subselect.html">Subselect</a></td><td class="description">Subselect ::= SimpleSelectClause SubselectFromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/subselectfromclause.html">SubselectFromClause</a></td><td class="description">SubselectFromClause ::= "FROM" SubselectIdentificationVariableDeclaration {"," SubselectIdentificationVariableDeclaration}</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/updateclause.html">UpdateClause</a></td><td class="description">UpdateClause ::= "UPDATE" AbstractSchemaName [["AS"] AliasIdentificationVariable] "SET" UpdateItem {"," UpdateItem}</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/updateitem.html">UpdateItem</a></td><td class="description">UpdateItem ::= [IdentificationVariable "."] {StateField | SingleValuedAssociationField} "=" NewValue
+NewValue ::= SimpleArithmeticExpression | StringPrimary | DatetimePrimary | BooleanPrimary |
+EnumPrimary | SimpleEntityExpression | "NULL"</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/updatestatement.html">UpdateStatement</a></td><td class="description">UpdateStatement = UpdateClause [WhereClause]</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/ast/whereclause.html">WhereClause</a></td><td class="description">WhereClause ::= "WHERE" ConditionalExpression</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/package-tree.html b/lib/api/doctrine/orm/query/ast/package-tree.html
new file mode 100644
index 000000000..d9ff44506
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/package-tree.html
@@ -0,0 +1,104 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\AST (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Query\AST</h1><ul>
+<li><a href="../../../../doctrine/orm/query/ast/node.html">Doctrine\ORM\Query\AST\Node</a><ul>
+<li><a href="../../../../doctrine/orm/query/ast/aggregateexpression.html">Doctrine\ORM\Query\AST\AggregateExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/arithmeticexpression.html">Doctrine\ORM\Query\AST\ArithmeticExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/arithmeticfactor.html">Doctrine\ORM\Query\AST\ArithmeticFactor</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/arithmeticterm.html">Doctrine\ORM\Query\AST\ArithmeticTerm</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/betweenexpression.html">Doctrine\ORM\Query\AST\BetweenExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/collectionmemberexpression.html">Doctrine\ORM\Query\AST\CollectionMemberExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/comparisonexpression.html">Doctrine\ORM\Query\AST\ComparisonExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/conditionalexpression.html">Doctrine\ORM\Query\AST\ConditionalExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/conditionalfactor.html">Doctrine\ORM\Query\AST\ConditionalFactor</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/conditionalprimary.html">Doctrine\ORM\Query\AST\ConditionalPrimary</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/conditionalterm.html">Doctrine\ORM\Query\AST\ConditionalTerm</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/deleteclause.html">Doctrine\ORM\Query\AST\DeleteClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/deletestatement.html">Doctrine\ORM\Query\AST\DeleteStatement</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">Doctrine\ORM\Query\AST\EmptyCollectionComparisonExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/existsexpression.html">Doctrine\ORM\Query\AST\ExistsExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/fromclause.html">Doctrine\ORM\Query\AST\FromClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/groupbyclause.html">Doctrine\ORM\Query\AST\GroupByClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/havingclause.html">Doctrine\ORM\Query\AST\HavingClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/identificationvariabledeclaration.html">Doctrine\ORM\Query\AST\IdentificationVariableDeclaration</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/inexpression.html">Doctrine\ORM\Query\AST\InExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/indexby.html">Doctrine\ORM\Query\AST\IndexBy</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/inputparameter.html">Doctrine\ORM\Query\AST\InputParameter</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/join.html">Doctrine\ORM\Query\AST\Join</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/joinassociationpathexpression.html">Doctrine\ORM\Query\AST\JoinAssociationPathExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/joinvariabledeclaration.html">Doctrine\ORM\Query\AST\JoinVariableDeclaration</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/likeexpression.html">Doctrine\ORM\Query\AST\LikeExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/literal.html">Doctrine\ORM\Query\AST\Literal</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/nullcomparisonexpression.html">Doctrine\ORM\Query\AST\NullComparisonExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/orderbyclause.html">Doctrine\ORM\Query\AST\OrderByClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/orderbyitem.html">Doctrine\ORM\Query\AST\OrderByItem</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/partialobjectexpression.html">Doctrine\ORM\Query\AST\PartialObjectExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/pathexpression.html">Doctrine\ORM\Query\AST\PathExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/quantifiedexpression.html">Doctrine\ORM\Query\AST\QuantifiedExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/rangevariabledeclaration.html">Doctrine\ORM\Query\AST\RangeVariableDeclaration</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/selectclause.html">Doctrine\ORM\Query\AST\SelectClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/selectexpression.html">Doctrine\ORM\Query\AST\SelectExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/selectstatement.html">Doctrine\ORM\Query\AST\SelectStatement</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/simplearithmeticexpression.html">Doctrine\ORM\Query\AST\SimpleArithmeticExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/simpleselectclause.html">Doctrine\ORM\Query\AST\SimpleSelectClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/simpleselectexpression.html">Doctrine\ORM\Query\AST\SimpleSelectExpression</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/subselect.html">Doctrine\ORM\Query\AST\Subselect</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/subselectfromclause.html">Doctrine\ORM\Query\AST\SubselectFromClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/updateclause.html">Doctrine\ORM\Query\AST\UpdateClause</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/updateitem.html">Doctrine\ORM\Query\AST\UpdateItem</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/updatestatement.html">Doctrine\ORM\Query\AST\UpdateStatement</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/whereclause.html">Doctrine\ORM\Query\AST\WhereClause</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/partialobjectexpression.html b/lib/api/doctrine/orm/query/ast/partialobjectexpression.html
new file mode 100644
index 000000000..d036f3fb5
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/partialobjectexpression.html
@@ -0,0 +1,146 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>PartialObjectExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/partialobjectexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\PartialObjectExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/PartialObjectExpression.php at line 5</div>
+
+<h1>Class PartialObjectExpression</h1>
+
+<pre class="tree">Class:PartialObjectExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>PartialObjectExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>PartialObjectExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Abstract class of an AST node</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#identificationVariable">$identificationVariable</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#partialFieldSet">$partialFieldSet</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#PartialObjectExpression()">PartialObjectExpression</a>(mixed identificationVariable, mixed partialFieldSet)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/PartialObjectExpression.php at line 7</div>
+<h3 id="identificationVariable">identificationVariable</h3>
+<code class="signature">public  mixed <strong>$identificationVariable</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/PartialObjectExpression.php at line 8</div>
+<h3 id="partialFieldSet">partialFieldSet</h3>
+<code class="signature">public  mixed <strong>$partialFieldSet</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/PartialObjectExpression.php at line 10</div>
+<h3 id="PartialObjectExpression()">PartialObjectExpression</h3>
+<code class="signature">public <strong>PartialObjectExpression</strong>(mixed identificationVariable, mixed partialFieldSet)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/partialobjectexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/pathexpression.html b/lib/api/doctrine/orm/query/ast/pathexpression.html
new file mode 100644
index 000000000..f85bd9e01
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/pathexpression.html
@@ -0,0 +1,231 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>PathExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/pathexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\PathExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/PathExpression.php at line 42</div>
+
+<h1>Class PathExpression</h1>
+
+<pre class="tree">Class:PathExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>PathExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>PathExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>AssociationPathExpression ::= CollectionValuedPathExpression | SingleValuedAssociationPathExpression
+SingleValuedPathExpression ::= StateFieldPathExpression | SingleValuedAssociationPathExpression
+StateFieldPathExpression ::= SimpleStateFieldPathExpression | SimpleStateFieldAssociationPathExpression
+SingleValuedAssociationPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* SingleValuedAssociationField
+CollectionValuedPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* CollectionValuedAssociationField
+StateField ::= {EmbeddedClassStateField "."}* SimpleStateField
+SimpleStateFieldPathExpression ::= IdentificationVariable "." StateField
+SimpleStateFieldAssociationPathExpression ::= SingleValuedAssociationPathExpression "." StateField</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TYPE_COLLECTION_VALUED_ASSOCIATION">TYPE_COLLECTION_VALUED_ASSOCIATION</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TYPE_SINGLE_VALUED_ASSOCIATION">TYPE_SINGLE_VALUED_ASSOCIATION</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#TYPE_STATE_FIELD">TYPE_STATE_FIELD</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#expectedType">$expectedType</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#identificationVariable">$identificationVariable</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#parts">$parts</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#type">$type</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#PathExpression()">PathExpression</a>(mixed expectedType, mixed identificationVariable, mixed parts)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/PathExpression.php at line 44</div>
+<h3 id="TYPE_COLLECTION_VALUED_ASSOCIATION">TYPE_COLLECTION_VALUED_ASSOCIATION</h3>
+<code class="signature">public final  int <strong>TYPE_COLLECTION_VALUED_ASSOCIATION</strong> = 2</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/PathExpression.php at line 45</div>
+<h3 id="TYPE_SINGLE_VALUED_ASSOCIATION">TYPE_SINGLE_VALUED_ASSOCIATION</h3>
+<code class="signature">public final  int <strong>TYPE_SINGLE_VALUED_ASSOCIATION</strong> = 4</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/PathExpression.php at line 46</div>
+<h3 id="TYPE_STATE_FIELD">TYPE_STATE_FIELD</h3>
+<code class="signature">public final  int <strong>TYPE_STATE_FIELD</strong> = 8</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/PathExpression.php at line 49</div>
+<h3 id="expectedType">expectedType</h3>
+<code class="signature">public  mixed <strong>$expectedType</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/PathExpression.php at line 50</div>
+<h3 id="identificationVariable">identificationVariable</h3>
+<code class="signature">public  mixed <strong>$identificationVariable</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/PathExpression.php at line 51</div>
+<h3 id="parts">parts</h3>
+<code class="signature">public  mixed <strong>$parts</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/PathExpression.php at line 48</div>
+<h3 id="type">type</h3>
+<code class="signature">public  mixed <strong>$type</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/PathExpression.php at line 53</div>
+<h3 id="PathExpression()">PathExpression</h3>
+<code class="signature">public <strong>PathExpression</strong>(mixed expectedType, mixed identificationVariable, mixed parts)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/PathExpression.php at line 60</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/pathexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/quantifiedexpression.html b/lib/api/doctrine/orm/query/ast/quantifiedexpression.html
new file mode 100644
index 000000000..18073a883
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/quantifiedexpression.html
@@ -0,0 +1,202 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>QuantifiedExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/quantifiedexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\QuantifiedExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/QuantifiedExpression.php at line 35</div>
+
+<h1>Class QuantifiedExpression</h1>
+
+<pre class="tree">Class:QuantifiedExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>QuantifiedExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>QuantifiedExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>QuantifiedExpression ::= ("ALL" | "ANY" | "SOME") "(" Subselect ")"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#subselect">$subselect</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#type">$type</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#QuantifiedExpression()">QuantifiedExpression</a>(mixed subselect)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isAll()">isAll</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isAny()">isAny</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isSome()">isSome</a>()</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/QuantifiedExpression.php at line 38</div>
+<h3 id="subselect">subselect</h3>
+<code class="signature">public  mixed <strong>$subselect</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/QuantifiedExpression.php at line 37</div>
+<h3 id="type">type</h3>
+<code class="signature">public  mixed <strong>$type</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/QuantifiedExpression.php at line 40</div>
+<h3 id="QuantifiedExpression()">QuantifiedExpression</h3>
+<code class="signature">public <strong>QuantifiedExpression</strong>(mixed subselect)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/QuantifiedExpression.php at line 63</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p></p><dl>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/QuantifiedExpression.php at line 45</div>
+<h3 id="isAll()">isAll</h3>
+<code class="signature">public  void <strong>isAll</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/QuantifiedExpression.php at line 50</div>
+<h3 id="isAny()">isAny</h3>
+<code class="signature">public  void <strong>isAny</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/QuantifiedExpression.php at line 55</div>
+<h3 id="isSome()">isSome</h3>
+<code class="signature">public  void <strong>isSome</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/quantifiedexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/rangevariabledeclaration.html b/lib/api/doctrine/orm/query/ast/rangevariabledeclaration.html
new file mode 100644
index 000000000..09e307900
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/rangevariabledeclaration.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>RangeVariableDeclaration (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/rangevariabledeclaration.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\RangeVariableDeclaration</div>
+<div class="location">/Doctrine/ORM/Query/AST/RangeVariableDeclaration.php at line 35</div>
+
+<h1>Class RangeVariableDeclaration</h1>
+
+<pre class="tree">Class:RangeVariableDeclaration - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>RangeVariableDeclaration</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>RangeVariableDeclaration</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>RangeVariableDeclaration ::= AbstractSchemaName ["AS"] AliasIdentificationVariable</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#abstractSchemaName">$abstractSchemaName</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#aliasIdentificationVariable">$aliasIdentificationVariable</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#RangeVariableDeclaration()">RangeVariableDeclaration</a>(mixed abstractSchemaName, mixed aliasIdentificationVar)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/RangeVariableDeclaration.php at line 37</div>
+<h3 id="abstractSchemaName">abstractSchemaName</h3>
+<code class="signature">public  mixed <strong>$abstractSchemaName</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/RangeVariableDeclaration.php at line 38</div>
+<h3 id="aliasIdentificationVariable">aliasIdentificationVariable</h3>
+<code class="signature">public  mixed <strong>$aliasIdentificationVariable</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/RangeVariableDeclaration.php at line 40</div>
+<h3 id="RangeVariableDeclaration()">RangeVariableDeclaration</h3>
+<code class="signature">public <strong>RangeVariableDeclaration</strong>(mixed abstractSchemaName, mixed aliasIdentificationVar)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/RangeVariableDeclaration.php at line 46</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/rangevariabledeclaration.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/selectclause.html b/lib/api/doctrine/orm/query/ast/selectclause.html
new file mode 100644
index 000000000..f16c90c3d
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/selectclause.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>SelectClause (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/selectclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\SelectClause</div>
+<div class="location">/Doctrine/ORM/Query/AST/SelectClause.php at line 35</div>
+
+<h1>Class SelectClause</h1>
+
+<pre class="tree">Class:SelectClause - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>SelectClause</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SelectClause</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>SelectClause = "SELECT" ["DISTINCT"] SelectExpression {"," SelectExpression}</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#isDistinct">$isDistinct</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#selectExpressions">$selectExpressions</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SelectClause()">SelectClause</a>(mixed selectExpressions, mixed isDistinct)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SelectClause.php at line 37</div>
+<h3 id="isDistinct">isDistinct</h3>
+<code class="signature">public  mixed <strong>$isDistinct</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/SelectClause.php at line 38</div>
+<h3 id="selectExpressions">selectExpressions</h3>
+<code class="signature">public  mixed <strong>$selectExpressions</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SelectClause.php at line 40</div>
+<h3 id="SelectClause()">SelectClause</h3>
+<code class="signature">public <strong>SelectClause</strong>(mixed selectExpressions, mixed isDistinct)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SelectClause.php at line 46</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/selectclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/selectexpression.html b/lib/api/doctrine/orm/query/ast/selectexpression.html
new file mode 100644
index 000000000..1d02fbbc2
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/selectexpression.html
@@ -0,0 +1,165 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>SelectExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/selectexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\SelectExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/SelectExpression.php at line 36</div>
+
+<h1>Class SelectExpression</h1>
+
+<pre class="tree">Class:SelectExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>SelectExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SelectExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>SelectExpression ::= IdentificationVariable ["." "*"] | StateFieldPathExpression |
+(AggregateExpression | "(" Subselect ")") [["AS"] FieldAliasIdentificationVariable]</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#expression">$expression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fieldIdentificationVariable">$fieldIdentificationVariable</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SelectExpression()">SelectExpression</a>(mixed expression, mixed fieldIdentificationVariable)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SelectExpression.php at line 38</div>
+<h3 id="expression">expression</h3>
+<code class="signature">public  mixed <strong>$expression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/SelectExpression.php at line 39</div>
+<h3 id="fieldIdentificationVariable">fieldIdentificationVariable</h3>
+<code class="signature">public  mixed <strong>$fieldIdentificationVariable</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SelectExpression.php at line 41</div>
+<h3 id="SelectExpression()">SelectExpression</h3>
+<code class="signature">public <strong>SelectExpression</strong>(mixed expression, mixed fieldIdentificationVariable)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SelectExpression.php at line 47</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/selectexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/selectstatement.html b/lib/api/doctrine/orm/query/ast/selectstatement.html
new file mode 100644
index 000000000..30c5b9c97
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/selectstatement.html
@@ -0,0 +1,212 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>SelectStatement (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/selectstatement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\SelectStatement</div>
+<div class="location">/Doctrine/ORM/Query/AST/SelectStatement.php at line 35</div>
+
+<h1>Class SelectStatement</h1>
+
+<pre class="tree">Class:SelectStatement - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>SelectStatement</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SelectStatement</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>SelectStatement = SelectClause FromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fromClause">$fromClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#groupByClause">$groupByClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#havingClause">$havingClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#orderByClause">$orderByClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#selectClause">$selectClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#whereClause">$whereClause</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SelectStatement()">SelectStatement</a>(mixed selectClause, mixed fromClause)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SelectStatement.php at line 38</div>
+<h3 id="fromClause">fromClause</h3>
+<code class="signature">public  mixed <strong>$fromClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/SelectStatement.php at line 40</div>
+<h3 id="groupByClause">groupByClause</h3>
+<code class="signature">public  mixed <strong>$groupByClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/SelectStatement.php at line 41</div>
+<h3 id="havingClause">havingClause</h3>
+<code class="signature">public  mixed <strong>$havingClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/SelectStatement.php at line 42</div>
+<h3 id="orderByClause">orderByClause</h3>
+<code class="signature">public  mixed <strong>$orderByClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/SelectStatement.php at line 37</div>
+<h3 id="selectClause">selectClause</h3>
+<code class="signature">public  mixed <strong>$selectClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/SelectStatement.php at line 39</div>
+<h3 id="whereClause">whereClause</h3>
+<code class="signature">public  mixed <strong>$whereClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SelectStatement.php at line 44</div>
+<h3 id="SelectStatement()">SelectStatement</h3>
+<code class="signature">public <strong>SelectStatement</strong>(mixed selectClause, mixed fromClause)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SelectStatement.php at line 49</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/selectstatement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/simplearithmeticexpression.html b/lib/api/doctrine/orm/query/ast/simplearithmeticexpression.html
new file mode 100644
index 000000000..50cfacbdc
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/simplearithmeticexpression.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>SimpleArithmeticExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/simplearithmeticexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\SimpleArithmeticExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleArithmeticExpression.php at line 35</div>
+
+<h1>Class SimpleArithmeticExpression</h1>
+
+<pre class="tree">Class:SimpleArithmeticExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>SimpleArithmeticExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SimpleArithmeticExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>SimpleArithmeticExpression ::= ArithmeticTerm {("+" | "-") ArithmeticTerm}</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#arithmeticTerms">$arithmeticTerms</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SimpleArithmeticExpression()">SimpleArithmeticExpression</a>(mixed arithmeticTerms)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleArithmeticExpression.php at line 37</div>
+<h3 id="arithmeticTerms">arithmeticTerms</h3>
+<code class="signature">public  mixed <strong>$arithmeticTerms</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleArithmeticExpression.php at line 39</div>
+<h3 id="SimpleArithmeticExpression()">SimpleArithmeticExpression</h3>
+<code class="signature">public <strong>SimpleArithmeticExpression</strong>(mixed arithmeticTerms)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleArithmeticExpression.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/simplearithmeticexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/simpleselectclause.html b/lib/api/doctrine/orm/query/ast/simpleselectclause.html
new file mode 100644
index 000000000..76c53efba
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/simpleselectclause.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>SimpleSelectClause (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/simpleselectclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\SimpleSelectClause</div>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleSelectClause.php at line 35</div>
+
+<h1>Class SimpleSelectClause</h1>
+
+<pre class="tree">Class:SimpleSelectClause - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>SimpleSelectClause</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SimpleSelectClause</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>SimpleSelectClause  ::= "SELECT" ["DISTINCT"] SimpleSelectExpression</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#isDistinct">$isDistinct</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#simpleSelectExpression">$simpleSelectExpression</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SimpleSelectClause()">SimpleSelectClause</a>(mixed simpleSelectExpression, mixed isDistinct)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleSelectClause.php at line 37</div>
+<h3 id="isDistinct">isDistinct</h3>
+<code class="signature">public  mixed <strong>$isDistinct</strong> = false</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/SimpleSelectClause.php at line 38</div>
+<h3 id="simpleSelectExpression">simpleSelectExpression</h3>
+<code class="signature">public  mixed <strong>$simpleSelectExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleSelectClause.php at line 40</div>
+<h3 id="SimpleSelectClause()">SimpleSelectClause</h3>
+<code class="signature">public <strong>SimpleSelectClause</strong>(mixed simpleSelectExpression, mixed isDistinct)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleSelectClause.php at line 46</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/simpleselectclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/simpleselectexpression.html b/lib/api/doctrine/orm/query/ast/simpleselectexpression.html
new file mode 100644
index 000000000..1e80f455d
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/simpleselectexpression.html
@@ -0,0 +1,165 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>SimpleSelectExpression (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/simpleselectexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\SimpleSelectExpression</div>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleSelectExpression.php at line 36</div>
+
+<h1>Class SimpleSelectExpression</h1>
+
+<pre class="tree">Class:SimpleSelectExpression - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>SimpleSelectExpression</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SimpleSelectExpression</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>SimpleSelectExpression ::= StateFieldPathExpression | IdentificationVariable
+| (AggregateExpression [["AS"] FieldAliasIdentificationVariable])</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#expression">$expression</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#fieldIdentificationVariable">$fieldIdentificationVariable</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SimpleSelectExpression()">SimpleSelectExpression</a>(mixed expression)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleSelectExpression.php at line 38</div>
+<h3 id="expression">expression</h3>
+<code class="signature">public  mixed <strong>$expression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/SimpleSelectExpression.php at line 39</div>
+<h3 id="fieldIdentificationVariable">fieldIdentificationVariable</h3>
+<code class="signature">public  mixed <strong>$fieldIdentificationVariable</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleSelectExpression.php at line 41</div>
+<h3 id="SimpleSelectExpression()">SimpleSelectExpression</h3>
+<code class="signature">public <strong>SimpleSelectExpression</strong>(mixed expression)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SimpleSelectExpression.php at line 46</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/simpleselectexpression.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/subselect.html b/lib/api/doctrine/orm/query/ast/subselect.html
new file mode 100644
index 000000000..0ba24fb3e
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/subselect.html
@@ -0,0 +1,212 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Subselect (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/subselect.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\Subselect</div>
+<div class="location">/Doctrine/ORM/Query/AST/Subselect.php at line 35</div>
+
+<h1>Class Subselect</h1>
+
+<pre class="tree">Class:Subselect - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>Subselect</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Subselect</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Subselect ::= SimpleSelectClause SubselectFromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#groupByClause">$groupByClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#havingClause">$havingClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#orderByClause">$orderByClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#simpleSelectClause">$simpleSelectClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#subselectFromClause">$subselectFromClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#whereClause">$whereClause</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Subselect()">Subselect</a>(mixed simpleSelectClause, mixed subselectFromClause)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Subselect.php at line 40</div>
+<h3 id="groupByClause">groupByClause</h3>
+<code class="signature">public  mixed <strong>$groupByClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Subselect.php at line 41</div>
+<h3 id="havingClause">havingClause</h3>
+<code class="signature">public  mixed <strong>$havingClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Subselect.php at line 42</div>
+<h3 id="orderByClause">orderByClause</h3>
+<code class="signature">public  mixed <strong>$orderByClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Subselect.php at line 37</div>
+<h3 id="simpleSelectClause">simpleSelectClause</h3>
+<code class="signature">public  mixed <strong>$simpleSelectClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Subselect.php at line 38</div>
+<h3 id="subselectFromClause">subselectFromClause</h3>
+<code class="signature">public  mixed <strong>$subselectFromClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/Subselect.php at line 39</div>
+<h3 id="whereClause">whereClause</h3>
+<code class="signature">public  mixed <strong>$whereClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Subselect.php at line 44</div>
+<h3 id="Subselect()">Subselect</h3>
+<code class="signature">public <strong>Subselect</strong>(mixed simpleSelectClause, mixed subselectFromClause)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/Subselect.php at line 50</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/subselect.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/subselectfromclause.html b/lib/api/doctrine/orm/query/ast/subselectfromclause.html
new file mode 100644
index 000000000..277c89b52
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/subselectfromclause.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>SubselectFromClause (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/subselectfromclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\SubselectFromClause</div>
+<div class="location">/Doctrine/ORM/Query/AST/SubselectFromClause.php at line 35</div>
+
+<h1>Class SubselectFromClause</h1>
+
+<pre class="tree">Class:SubselectFromClause - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>SubselectFromClause</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SubselectFromClause</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>SubselectFromClause ::= "FROM" SubselectIdentificationVariableDeclaration {"," SubselectIdentificationVariableDeclaration}</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#identificationVariableDeclarations">$identificationVariableDeclarations</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SubselectFromClause()">SubselectFromClause</a>(mixed identificationVariableDeclarations)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SubselectFromClause.php at line 37</div>
+<h3 id="identificationVariableDeclarations">identificationVariableDeclarations</h3>
+<code class="signature">public  mixed <strong>$identificationVariableDeclarations</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SubselectFromClause.php at line 39</div>
+<h3 id="SubselectFromClause()">SubselectFromClause</h3>
+<code class="signature">public <strong>SubselectFromClause</strong>(mixed identificationVariableDeclarations)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/SubselectFromClause.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/subselectfromclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/updateclause.html b/lib/api/doctrine/orm/query/ast/updateclause.html
new file mode 100644
index 000000000..1dfa0dad9
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/updateclause.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>UpdateClause (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/updateclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\UpdateClause</div>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateClause.php at line 35</div>
+
+<h1>Class UpdateClause</h1>
+
+<pre class="tree">Class:UpdateClause - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>UpdateClause</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>UpdateClause</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>UpdateClause ::= "UPDATE" AbstractSchemaName [["AS"] AliasIdentificationVariable] "SET" UpdateItem {"," UpdateItem}</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#abstractSchemaName">$abstractSchemaName</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#aliasIdentificationVariable">$aliasIdentificationVariable</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#updateItems">$updateItems</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#UpdateClause()">UpdateClause</a>(mixed abstractSchemaName, mixed updateItems)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateClause.php at line 37</div>
+<h3 id="abstractSchemaName">abstractSchemaName</h3>
+<code class="signature">public  mixed <strong>$abstractSchemaName</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/UpdateClause.php at line 38</div>
+<h3 id="aliasIdentificationVariable">aliasIdentificationVariable</h3>
+<code class="signature">public  mixed <strong>$aliasIdentificationVariable</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/UpdateClause.php at line 39</div>
+<h3 id="updateItems">updateItems</h3>
+<code class="signature">public  mixed <strong>$updateItems</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateClause.php at line 41</div>
+<h3 id="UpdateClause()">UpdateClause</h3>
+<code class="signature">public <strong>UpdateClause</strong>(mixed abstractSchemaName, mixed updateItems)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateClause.php at line 47</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/updateclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/updateitem.html b/lib/api/doctrine/orm/query/ast/updateitem.html
new file mode 100644
index 000000000..352ac0479
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/updateitem.html
@@ -0,0 +1,178 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>UpdateItem (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/updateitem.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\UpdateItem</div>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateItem.php at line 37</div>
+
+<h1>Class UpdateItem</h1>
+
+<pre class="tree">Class:UpdateItem - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>UpdateItem</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>UpdateItem</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>UpdateItem ::= [IdentificationVariable "."] {StateField | SingleValuedAssociationField} "=" NewValue
+NewValue ::= SimpleArithmeticExpression | StringPrimary | DatetimePrimary | BooleanPrimary |
+EnumPrimary | SimpleEntityExpression | "NULL"</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#field">$field</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#identificationVariable">$identificationVariable</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#newValue">$newValue</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#UpdateItem()">UpdateItem</a>(mixed field, mixed newValue)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateItem.php at line 40</div>
+<h3 id="field">field</h3>
+<code class="signature">public  mixed <strong>$field</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/UpdateItem.php at line 39</div>
+<h3 id="identificationVariable">identificationVariable</h3>
+<code class="signature">public  mixed <strong>$identificationVariable</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/UpdateItem.php at line 41</div>
+<h3 id="newValue">newValue</h3>
+<code class="signature">public  mixed <strong>$newValue</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateItem.php at line 43</div>
+<h3 id="UpdateItem()">UpdateItem</h3>
+<code class="signature">public <strong>UpdateItem</strong>(mixed field, mixed newValue)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateItem.php at line 49</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/updateitem.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/updatestatement.html b/lib/api/doctrine/orm/query/ast/updatestatement.html
new file mode 100644
index 000000000..565bfc959
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/updatestatement.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>UpdateStatement (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/updatestatement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\UpdateStatement</div>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateStatement.php at line 35</div>
+
+<h1>Class UpdateStatement</h1>
+
+<pre class="tree">Class:UpdateStatement - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>UpdateStatement</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>UpdateStatement</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>UpdateStatement = UpdateClause [WhereClause]</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#updateClause">$updateClause</a></p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#whereClause">$whereClause</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#UpdateStatement()">UpdateStatement</a>(mixed updateClause)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateStatement.php at line 37</div>
+<h3 id="updateClause">updateClause</h3>
+<code class="signature">public  mixed <strong>$updateClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/AST/UpdateStatement.php at line 38</div>
+<h3 id="whereClause">whereClause</h3>
+<code class="signature">public  mixed <strong>$whereClause</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateStatement.php at line 40</div>
+<h3 id="UpdateStatement()">UpdateStatement</h3>
+<code class="signature">public <strong>UpdateStatement</strong>(mixed updateClause)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/UpdateStatement.php at line 45</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/updatestatement.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/ast/whereclause.html b/lib/api/doctrine/orm/query/ast/whereclause.html
new file mode 100644
index 000000000..f29d135ad
--- /dev/null
+++ b/lib/api/doctrine/orm/query/ast/whereclause.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>WhereClause (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/whereclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\AST\WhereClause</div>
+<div class="location">/Doctrine/ORM/Query/AST/WhereClause.php at line 35</div>
+
+<h1>Class WhereClause</h1>
+
+<pre class="tree">Class:WhereClause - Superclass: Node
+<a href="../../../../doctrine/orm/query/ast/node.html">Node</a><br>   &lfloor;&nbsp;<strong>WhereClause</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>WhereClause</strong><br>extends <a href="../../../../doctrine/orm/query/ast/node.html">Node</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>WhereClause ::= "WHERE" ConditionalExpression</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#conditionalExpression">$conditionalExpression</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#WhereClause()">WhereClause</a>(mixed conditionalExpression)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dispatch()">dispatch</a>(mixed sqlWalker, mixed walker, $walker )</p><p class="description">Double-dispatch method, supposed to dispatch back to the walker.
+</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\AST\Node</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/ast/node.html#dispatch()">dispatch</a>, <a href="../../../../doctrine/orm/query/ast/node.html#dump()">dump</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/WhereClause.php at line 37</div>
+<h3 id="conditionalExpression">conditionalExpression</h3>
+<code class="signature">public  mixed <strong>$conditionalExpression</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/WhereClause.php at line 39</div>
+<h3 id="WhereClause()">WhereClause</h3>
+<code class="signature">public <strong>WhereClause</strong>(mixed conditionalExpression)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/AST/WhereClause.php at line 44</div>
+<h3 id="dispatch()">dispatch</h3>
+<code class="signature">public  void <strong>dispatch</strong>(mixed sqlWalker, mixed walker, $walker )</code>
+<div class="details">
+<p>Double-dispatch method, supposed to dispatch back to the walker.</p><p>Implementation is not mandatory for all nodes.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/ast/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/ast/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/ast/whereclause.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/exec/abstractsqlexecutor.html b/lib/api/doctrine/orm/query/exec/abstractsqlexecutor.html
new file mode 100644
index 000000000..65834251a
--- /dev/null
+++ b/lib/api/doctrine/orm/query/exec/abstractsqlexecutor.html
@@ -0,0 +1,147 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>AbstractSqlExecutor (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Exec\AbstractSqlExecutor</div>
+<div class="location">/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php at line 35</div>
+
+<h1>Class AbstractSqlExecutor</h1>
+
+<pre class="tree"><strong>AbstractSqlExecutor</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractSqlExecutor</strong></p>
+
+<div class="comment" id="overview_description"><p>Base class for SQL statement executors.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code><a href="http://www.doctrine-project.org">http://www.doctrine-project.org</a></code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Todo:</dt>
+<dd>Rename: AbstractSQLExecutor</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_sqlStatements">$_sqlStatements</a></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">abstract  Doctrine\DBAL\Driver\Statement</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(Doctrine\DBAL\Connection conn, array params, mixed types)</p><p class="description">Executes all sql statements.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getSqlStatements()">getSqlStatements</a>()</p><p class="description">Gets the SQL statements that are executed by the executor.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php at line 37</div>
+<h3 id="_sqlStatements">_sqlStatements</h3>
+<code class="signature">protected  mixed <strong>$_sqlStatements</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php at line 56</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">public abstract  Doctrine\DBAL\Driver\Statement <strong>execute</strong>(Doctrine\DBAL\Connection conn, array params, mixed types)</code>
+<div class="details">
+<p>Executes all sql statements.</p><dl>
+<dt>Parameters:</dt>
+<dd>conn - The database connection that is used to execute the queries.</dd>
+<dd>params - The parameters.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Exec/AbstractSqlExecutor.php at line 44</div>
+<h3 id="getSqlStatements()">getSqlStatements</h3>
+<code class="signature">public  array <strong>getSqlStatements</strong>()</code>
+<div class="details">
+<p>Gets the SQL statements that are executed by the executor.</p><dl>
+<dt>Returns:</dt>
+<dd>All the SQL update statements.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/exec/multitabledeleteexecutor.html b/lib/api/doctrine/orm/query/exec/multitabledeleteexecutor.html
new file mode 100644
index 000000000..ad7b7c052
--- /dev/null
+++ b/lib/api/doctrine/orm/query/exec/multitabledeleteexecutor.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>MultiTableDeleteExecutor (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/multitabledeleteexecutor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Exec\MultiTableDeleteExecutor</div>
+<div class="location">/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php at line 37</div>
+
+<h1>Class MultiTableDeleteExecutor</h1>
+
+<pre class="tree">Class:MultiTableDeleteExecutor - Superclass: AbstractSqlExecutor
+<a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html">AbstractSqlExecutor</a><br>   &lfloor;&nbsp;<strong>MultiTableDeleteExecutor</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>MultiTableDeleteExecutor</strong><br>extends <a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html">AbstractSqlExecutor</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Executes the SQL statements for bulk DQL DELETE statements on classes in
+Class Table Inheritance (JOINED).</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code><a href="http://www.doctrine-project.org">http://www.doctrine-project.org</a></code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Todo:</dt>
+<dd>Rename: AbstractSQLExecutor</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\Exec\AbstractSqlExecutor</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#_sqlStatements">_sqlStatements</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#MultiTableDeleteExecutor()">MultiTableDeleteExecutor</a>(<a href="../../../../doctrine/orm/query/ast/node.html">Node</a> AST, <a href="../../../../doctrine/orm/query/sqlwalker.html">SqlWalker</a> sqlWalker)</p><p class="description">Initializes a new MultiTableDeleteExecutor.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Statement</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(Doctrine\DBAL\Connection conn, array params, mixed types)</p><p class="description">Executes all SQL statements.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\Exec\AbstractSqlExecutor</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#execute()">execute</a>, <a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#getSqlStatements()">getSqlStatements</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php at line 51</div>
+<h3 id="MultiTableDeleteExecutor()">MultiTableDeleteExecutor</h3>
+<code class="signature">public <strong>MultiTableDeleteExecutor</strong>(<a href="../../../../doctrine/orm/query/ast/node.html">Node</a> AST, <a href="../../../../doctrine/orm/query/sqlwalker.html">SqlWalker</a> sqlWalker)</code>
+<div class="details">
+<p>Initializes a new <tt>MultiTableDeleteExecutor</tt>.</p><dl>
+<dt>Parameters:</dt>
+<dd>AST - The root AST node of the DQL query.</dd>
+<dd>sqlWalker - The walker used for SQL generation from the AST.</dd>
+<dt>Internal:</dt>
+<dd>Any SQL construction and preparation takes place in the constructor for best performance. With a query cache the executor will be cached.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Exec/MultiTableDeleteExecutor.php at line 110</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Statement <strong>execute</strong>(Doctrine\DBAL\Connection conn, array params, mixed types)</code>
+<div class="details">
+<p>Executes all SQL statements.</p><dl>
+<dt>Parameters:</dt>
+<dd>conn - The database connection that is used to execute the queries.</dd>
+<dd>params - The parameters.</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/multitabledeleteexecutor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/exec/multitableupdateexecutor.html b/lib/api/doctrine/orm/query/exec/multitableupdateexecutor.html
new file mode 100644
index 000000000..fb09b3d01
--- /dev/null
+++ b/lib/api/doctrine/orm/query/exec/multitableupdateexecutor.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>MultiTableUpdateExecutor (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/multitableupdateexecutor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Exec\MultiTableUpdateExecutor</div>
+<div class="location">/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php at line 33</div>
+
+<h1>Class MultiTableUpdateExecutor</h1>
+
+<pre class="tree">Class:MultiTableUpdateExecutor - Superclass: AbstractSqlExecutor
+<a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html">AbstractSqlExecutor</a><br>   &lfloor;&nbsp;<strong>MultiTableUpdateExecutor</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>MultiTableUpdateExecutor</strong><br>extends <a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html">AbstractSqlExecutor</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Executes the SQL statements for bulk DQL UPDATE statements on classes in
+Class Table Inheritance (JOINED).</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code><a href="http://www.doctrine-project.org">http://www.doctrine-project.org</a></code></dd>
+<dt>Todo:</dt>
+<dd>Rename: AbstractSQLExecutor</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\Exec\AbstractSqlExecutor</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#_sqlStatements">_sqlStatements</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#MultiTableUpdateExecutor()">MultiTableUpdateExecutor</a>(<a href="../../../../doctrine/orm/query/ast/node.html">Node</a> AST, <a href="../../../../doctrine/orm/query/sqlwalker.html">SqlWalker</a> sqlWalker)</p><p class="description">Initializes a new MultiTableUpdateExecutor.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Statement</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(<a href="../../../../doctrine/dbal/connection.html">Connection</a> conn, array params, mixed types)</p><p class="description">Executes all SQL statements.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\Exec\AbstractSqlExecutor</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#execute()">execute</a>, <a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#getSqlStatements()">getSqlStatements</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php at line 49</div>
+<h3 id="MultiTableUpdateExecutor()">MultiTableUpdateExecutor</h3>
+<code class="signature">public <strong>MultiTableUpdateExecutor</strong>(<a href="../../../../doctrine/orm/query/ast/node.html">Node</a> AST, <a href="../../../../doctrine/orm/query/sqlwalker.html">SqlWalker</a> sqlWalker)</code>
+<div class="details">
+<p>Initializes a new <tt>MultiTableUpdateExecutor</tt>.</p><dl>
+<dt>Parameters:</dt>
+<dd>AST - The root AST node of the DQL query.</dd>
+<dd>sqlWalker - The walker used for SQL generation from the AST.</dd>
+<dt>Internal:</dt>
+<dd>Any SQL construction and preparation takes place in the constructor for best performance. With a query cache the executor will be cached.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php at line 141</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Statement <strong>execute</strong>(<a href="../../../../doctrine/dbal/connection.html">Connection</a> conn, array params, mixed types)</code>
+<div class="details">
+<p>Executes all SQL statements.</p><dl>
+<dt>Parameters:</dt>
+<dd>conn - The database connection that is used to execute the queries.</dd>
+<dd>params - The parameters.</dd>
+<dt>Override.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/multitableupdateexecutor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/exec/package-frame.html b/lib/api/doctrine/orm/query/exec/package-frame.html
new file mode 100644
index 000000000..4c3060f54
--- /dev/null
+++ b/lib/api/doctrine/orm/query/exec/package-frame.html
@@ -0,0 +1,30 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\Exec (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Query\Exec</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html" target="main">AbstractSqlExecutor</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/multitabledeleteexecutor.html" target="main">MultiTableDeleteExecutor</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/multitableupdateexecutor.html" target="main">MultiTableUpdateExecutor</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/singleselectexecutor.html" target="main">SingleSelectExecutor</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/singletabledeleteupdateexecutor.html" target="main">SingleTableDeleteUpdateExecutor</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/exec/package-functions.html b/lib/api/doctrine/orm/query/exec/package-functions.html
new file mode 100644
index 000000000..1dfc0c9b1
--- /dev/null
+++ b/lib/api/doctrine/orm/query/exec/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/exec/package-globals.html b/lib/api/doctrine/orm/query/exec/package-globals.html
new file mode 100644
index 000000000..f7864605f
--- /dev/null
+++ b/lib/api/doctrine/orm/query/exec/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/exec/package-summary.html b/lib/api/doctrine/orm/query/exec/package-summary.html
new file mode 100644
index 000000000..75e528493
--- /dev/null
+++ b/lib/api/doctrine/orm/query/exec/package-summary.html
@@ -0,0 +1,71 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\Exec (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Query\Exec</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html">AbstractSqlExecutor</a></td><td class="description">Base class for SQL statement executors.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/exec/multitabledeleteexecutor.html">MultiTableDeleteExecutor</a></td><td class="description">Executes the SQL statements for bulk DQL DELETE statements on classes in
+Class Table Inheritance (JOINED).</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/exec/multitableupdateexecutor.html">MultiTableUpdateExecutor</a></td><td class="description">Executes the SQL statements for bulk DQL UPDATE statements on classes in
+Class Table Inheritance (JOINED).</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/exec/singleselectexecutor.html">SingleSelectExecutor</a></td><td class="description">Executor that executes the SQL statement for simple DQL SELECT statements.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/exec/singletabledeleteupdateexecutor.html">SingleTableDeleteUpdateExecutor</a></td><td class="description">Executor that executes the SQL statements for DQL DELETE/UPDATE statements on classes
+that are mapped to a single table.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/exec/package-tree.html b/lib/api/doctrine/orm/query/exec/package-tree.html
new file mode 100644
index 000000000..0667525fa
--- /dev/null
+++ b/lib/api/doctrine/orm/query/exec/package-tree.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\Exec (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Query\Exec</h1><ul>
+<li><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html">Doctrine\ORM\Query\Exec\AbstractSqlExecutor</a><ul>
+<li><a href="../../../../doctrine/orm/query/exec/multitabledeleteexecutor.html">Doctrine\ORM\Query\Exec\MultiTableDeleteExecutor</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/multitableupdateexecutor.html">Doctrine\ORM\Query\Exec\MultiTableUpdateExecutor</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/singleselectexecutor.html">Doctrine\ORM\Query\Exec\SingleSelectExecutor</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/singletabledeleteupdateexecutor.html">Doctrine\ORM\Query\Exec\SingleTableDeleteUpdateExecutor</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/exec/singleselectexecutor.html b/lib/api/doctrine/orm/query/exec/singleselectexecutor.html
new file mode 100644
index 000000000..9d97fbe5c
--- /dev/null
+++ b/lib/api/doctrine/orm/query/exec/singleselectexecutor.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>SingleSelectExecutor (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/singleselectexecutor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Exec\SingleSelectExecutor</div>
+<div class="location">/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php at line 37</div>
+
+<h1>Class SingleSelectExecutor</h1>
+
+<pre class="tree">Class:SingleSelectExecutor - Superclass: AbstractSqlExecutor
+<a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html">AbstractSqlExecutor</a><br>   &lfloor;&nbsp;<strong>SingleSelectExecutor</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SingleSelectExecutor</strong><br>extends <a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html">AbstractSqlExecutor</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Executor that executes the SQL statement for simple DQL SELECT statements.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Todo:</dt>
+<dd>Rename: AbstractSQLExecutor</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\Exec\AbstractSqlExecutor</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#_sqlStatements">_sqlStatements</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SingleSelectExecutor()">SingleSelectExecutor</a>(mixed AST, mixed sqlWalker)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Statement</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(Doctrine\DBAL\Connection conn, array params, mixed types)</p><p class="description">Executes all sql statements.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\Exec\AbstractSqlExecutor</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#execute()">execute</a>, <a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#getSqlStatements()">getSqlStatements</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php at line 39</div>
+<h3 id="SingleSelectExecutor()">SingleSelectExecutor</h3>
+<code class="signature">public <strong>SingleSelectExecutor</strong>(mixed AST, mixed sqlWalker)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Exec/SingleSelectExecutor.php at line 44</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Statement <strong>execute</strong>(Doctrine\DBAL\Connection conn, array params, mixed types)</code>
+<div class="details">
+<p>Executes all sql statements.</p><dl>
+<dt>Parameters:</dt>
+<dd>conn - The database connection that is used to execute the queries.</dd>
+<dd>params - The parameters.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/singleselectexecutor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/exec/singletabledeleteupdateexecutor.html b/lib/api/doctrine/orm/query/exec/singletabledeleteupdateexecutor.html
new file mode 100644
index 000000000..57de34ba3
--- /dev/null
+++ b/lib/api/doctrine/orm/query/exec/singletabledeleteupdateexecutor.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>SingleTableDeleteUpdateExecutor (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/singletabledeleteupdateexecutor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Exec\SingleTableDeleteUpdateExecutor</div>
+<div class="location">/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php at line 38</div>
+
+<h1>Class SingleTableDeleteUpdateExecutor</h1>
+
+<pre class="tree">Class:SingleTableDeleteUpdateExecutor - Superclass: AbstractSqlExecutor
+<a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html">AbstractSqlExecutor</a><br>   &lfloor;&nbsp;<strong>SingleTableDeleteUpdateExecutor</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SingleTableDeleteUpdateExecutor</strong><br>extends <a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html">AbstractSqlExecutor</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Executor that executes the SQL statements for DQL DELETE/UPDATE statements on classes
+that are mapped to a single table.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Todo:</dt>
+<dd>This is exactly the same as SingleSelectExecutor. Unify in SingleStatementExecutor.</dd>
+</dl>
+<hr>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\Exec\AbstractSqlExecutor</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#_sqlStatements">_sqlStatements</a></td></tr></table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SingleTableDeleteUpdateExecutor()">SingleTableDeleteUpdateExecutor</a>(mixed AST, mixed sqlWalker)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> Doctrine\DBAL\Driver\Statement</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(Doctrine\DBAL\Connection conn, array params, mixed types)</p><p class="description">Executes all sql statements.</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\Exec\AbstractSqlExecutor</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#execute()">execute</a>, <a href="../../../../doctrine/orm/query/exec/abstractsqlexecutor.html#getSqlStatements()">getSqlStatements</a></td></tr></table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php at line 40</div>
+<h3 id="SingleTableDeleteUpdateExecutor()">SingleTableDeleteUpdateExecutor</h3>
+<code class="signature">public <strong>SingleTableDeleteUpdateExecutor</strong>(mixed AST, mixed sqlWalker)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Exec/SingleTableDeleteUpdateExecutor.php at line 49</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">public  Doctrine\DBAL\Driver\Statement <strong>execute</strong>(Doctrine\DBAL\Connection conn, array params, mixed types)</code>
+<div class="details">
+<p>Executes all sql statements.</p><dl>
+<dt>Parameters:</dt>
+<dd>conn - The database connection that is used to execute the queries.</dd>
+<dd>params - The parameters.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/exec/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/exec/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/exec/singletabledeleteupdateexecutor.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr.html b/lib/api/doctrine/orm/query/expr.html
new file mode 100644
index 000000000..1e16562a8
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr.html
@@ -0,0 +1,767 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Expr (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/expr.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr</div>
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 36</div>
+
+<h1>Class Expr</h1>
+
+<pre class="tree"><strong>Expr</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Expr</strong></p>
+
+<div class="comment" id="overview_description"><p>This class is used to generate DQL expressions via a set of PHP static functions</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Todo:</dt>
+<dd>Rename: ExpressionBuilder</dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#abs()">abs</a>(mixed x)</p><p class="description">Creates an ABS() function expression with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#all()">all</a>(mixed subquery)</p><p class="description">Creates an instance of ALL() function, with the given DQL Subquery.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Andx</td>
+<td class="description"><p class="name"><a href="#andX()">andX</a>(mixed x)</p><p class="description">Creates a conjunction of the given boolean expressions.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#any()">any</a>(mixed subquery)</p><p class="description">Creates an ANY() function expression with the given DQL subquery.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/orm/mapping/orderby.html">OrderBy</a></td>
+<td class="description"><p class="name"><a href="#asc()">asc</a>(mixed expr, $sort )</p><p class="description">Creates an ASCending order expression.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#avg()">avg</a>(mixed x)</p><p class="description">Creates an instance of AVG() function, with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#between()">between</a>(mixed val, integer x, integer y)</p><p class="description">Creates an instance of BETWEEN() function, with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#concat()">concat</a>(mixed x, mixed y)</p><p class="description">Creates a CONCAT() function expression with the given arguments.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#count()">count</a>(mixed x)</p><p class="description">Creates an instance of COUNT() function, with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#countDistinct()">countDistinct</a>(mixed x)</p><p class="description">Creates an instance of COUNT(DISTINCT) function, with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/orm/mapping/orderby.html">OrderBy</a></td>
+<td class="description"><p class="name"><a href="#desc()">desc</a>(mixed expr, $sort )</p><p class="description">Creates a DESCending order expression.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Math</td>
+<td class="description"><p class="name"><a href="#diff()">diff</a>(mixed x, mixed y)</p><p class="description">Creates a difference mathematical expression with the given arguments.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Comparison</td>
+<td class="description"><p class="name"><a href="#eq()">eq</a>(mixed x, mixed y)</p><p class="description">Creates an equality comparison expression with the given arguments.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#exists()">exists</a>(mixed subquery)</p><p class="description">Creates an instance of EXISTS() function, with the given DQL Subquery.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Comparison</td>
+<td class="description"><p class="name"><a href="#gt()">gt</a>(mixed x, mixed y)</p><p class="description">Creates an instance of Expr\Comparison, with the given arguments.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Comparison</td>
+<td class="description"><p class="name"><a href="#gte()">gte</a>(mixed x, mixed y)</p><p class="description">Creates an instance of Expr\Comparison, with the given arguments.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#in()">in</a>(string x, mixed y)</p><p class="description">Creates an IN() expression with the given arguments.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#length()">length</a>(mixed x)</p><p class="description">Creates a LENGTH() function expression with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Comparison</td>
+<td class="description"><p class="name"><a href="#like()">like</a>(string x, mixed y)</p><p class="description">Creates a LIKE() comparison expression with the given arguments.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Literal</td>
+<td class="description"><p class="name"><a href="#literal()">literal</a>(mixed literal)</p><p class="description">Creates a literal expression of the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#lower()">lower</a>(mixed x)</p><p class="description">Creates a LOWER() function expression with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Comparison</td>
+<td class="description"><p class="name"><a href="#lt()">lt</a>(mixed x, mixed y)</p><p class="description">Creates an instance of Expr\Comparison, with the given arguments.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Comparison</td>
+<td class="description"><p class="name"><a href="#lte()">lte</a>(mixed x, mixed y)</p><p class="description">Creates an instance of Expr\Comparison, with the given arguments.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#max()">max</a>(mixed x)</p><p class="description">Creates an instance of MAX() function, with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#min()">min</a>(mixed x)</p><p class="description">Creates an instance of MIN() function, with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Comparison</td>
+<td class="description"><p class="name"><a href="#neq()">neq</a>(mixed x, mixed y)</p><p class="description">Creates an instance of Expr\Comparison, with the given arguments.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#not()">not</a>(mixed restriction)</p><p class="description">Creates a negation expression of the given restriction.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#notIn()">notIn</a>(string x, mixed y)</p><p class="description">Creates a NOT IN() expression with the given arguments.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Orx</td>
+<td class="description"><p class="name"><a href="#orX()">orX</a>(mixed x)</p><p class="description">Creates a disjunction of the given boolean expressions.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Math</td>
+<td class="description"><p class="name"><a href="#prod()">prod</a>(mixed x, mixed y)</p><p class="description">Creates a product mathematical expression with the given arguments.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Math</td>
+<td class="description"><p class="name"><a href="#quot()">quot</a>(mixed x, mixed y)</p><p class="description">Creates a quotient mathematical expression with the given arguments.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#some()">some</a>(mixed subquery)</p><p class="description">Creates a SOME() function expression with the given DQL subquery.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#sqrt()">sqrt</a>(mixed x)</p><p class="description">Creates a SQRT() function expression with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#substring()">substring</a>(mixed x, integer from, integer len)</p><p class="description">Creates a SUBSTRING() function expression with the given arguments.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Math</td>
+<td class="description"><p class="name"><a href="#sum()">sum</a>(mixed x, mixed y)</p><p class="description">Creates a sum mathematical expression with the given arguments.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#trim()">trim</a>(mixed x)</p><p class="description">Creates an instance of TRIM() function, with the given argument.</p></td>
+</tr>
+<tr>
+<td class="type"> Expr\Func</td>
+<td class="description"><p class="name"><a href="#upper()">upper</a>(mixed x)</p><p class="description">Creates an UPPER() function expression with the given argument.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 321</div>
+<h3 id="abs()">abs</h3>
+<code class="signature">public  Expr\Func <strong>abs</strong>(mixed x)</code>
+<div class="details">
+<p>Creates an ABS() function expression with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used in ABS() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 277</div>
+<h3 id="all()">all</h3>
+<code class="signature">public  Expr\Func <strong>all</strong>(mixed subquery)</code>
+<div class="details">
+<p>Creates an instance of ALL() function, with the given DQL Subquery.</p><dl>
+<dt>Parameters:</dt>
+<dd>subquery - DQL Subquery to be used in ALL() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 51</div>
+<h3 id="andX()">andX</h3>
+<code class="signature">public  Expr\Andx <strong>andX</strong>(mixed x)</code>
+<div class="details">
+<p>Creates a conjunction of the given boolean expressions.</p><p>Example:</p><p>[php]
+(u.type = ?1) AND (u.role = ?2)
+$expr->andX('u.type = ?1', 'u.role = ?2'));</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Optional clause. Defaults = null, but requires at least one defined when converting to string.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 299</div>
+<h3 id="any()">any</h3>
+<code class="signature">public  Expr\Func <strong>any</strong>(mixed subquery)</code>
+<div class="details">
+<p>Creates an ANY() function expression with the given DQL subquery.</p><dl>
+<dt>Parameters:</dt>
+<dd>subquery - DQL Subquery to be used in ANY() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 80</div>
+<h3 id="asc()">asc</h3>
+<code class="signature">public  <a href="../../../doctrine/orm/mapping/orderby.html">OrderBy</a> <strong>asc</strong>(mixed expr, $sort )</code>
+<div class="details">
+<p>Creates an ASCending order expression.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 211</div>
+<h3 id="avg()">avg</h3>
+<code class="signature">public  Expr\Func <strong>avg</strong>(mixed x)</code>
+<div class="details">
+<p>Creates an instance of AVG() function, with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used in AVG() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 545</div>
+<h3 id="between()">between</h3>
+<code class="signature">public  Expr\Func <strong>between</strong>(mixed val, integer x, integer y)</code>
+<div class="details">
+<p>Creates an instance of BETWEEN() function, with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>val - Valued to be inspected by range values.</dd>
+<dd>x - Starting range value to be used in BETWEEN() function.</dd>
+<dd>y - End point value to be used in BETWEEN() function.</dd>
+<dt>Returns:</dt>
+<dd>A BETWEEN expression.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 460</div>
+<h3 id="concat()">concat</h3>
+<code class="signature">public  Expr\Func <strong>concat</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates a CONCAT() function expression with the given arguments.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - First argument to be used in CONCAT() function.</dd>
+<dd>x - Second argument to be used in CONCAT() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 244</div>
+<h3 id="count()">count</h3>
+<code class="signature">public  Expr\Func <strong>count</strong>(mixed x)</code>
+<div class="details">
+<p>Creates an instance of COUNT() function, with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used in COUNT() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 255</div>
+<h3 id="countDistinct()">countDistinct</h3>
+<code class="signature">public  string <strong>countDistinct</strong>(mixed x)</code>
+<div class="details">
+<p>Creates an instance of COUNT(DISTINCT) function, with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used in COUNT(DISTINCT) function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 91</div>
+<h3 id="desc()">desc</h3>
+<code class="signature">public  <a href="../../../doctrine/orm/mapping/orderby.html">OrderBy</a> <strong>desc</strong>(mixed expr, $sort )</code>
+<div class="details">
+<p>Creates a DESCending order expression.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 358</div>
+<h3 id="diff()">diff</h3>
+<code class="signature">public  Expr\Math <strong>diff</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates a difference mathematical expression with the given arguments.
+First argument is considered the left expression and the second is the right expression.
+When converted to string, it will generated a <left expr> - <right expr>. Example:</p><p>[php]
+u.monthlySubscriptionCount - 1
+$q->expr()->diff('u.monthlySubscriptionCount', '1')</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Left expression</dd>
+<dd>y - Right expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 110</div>
+<h3 id="eq()">eq</h3>
+<code class="signature">public  Expr\Comparison <strong>eq</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates an equality comparison expression with the given arguments.</p><p>First argument is considered the left expression and the second is the right expression.
+When converted to string, it will generated a <left expr> = <right expr>. Example:</p><p>[php]
+u.id = ?1
+$expr->eq('u.id', '?1');</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Left expression</dd>
+<dd>y - Right expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 266</div>
+<h3 id="exists()">exists</h3>
+<code class="signature">public  Expr\Func <strong>exists</strong>(mixed subquery)</code>
+<div class="details">
+<p>Creates an instance of EXISTS() function, with the given DQL Subquery.</p><dl>
+<dt>Parameters:</dt>
+<dd>subquery - DQL Subquery to be used in EXISTS() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 182</div>
+<h3 id="gt()">gt</h3>
+<code class="signature">public  Expr\Comparison <strong>gt</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates an instance of Expr\Comparison, with the given arguments.
+First argument is considered the left expression and the second is the right expression.
+When converted to string, it will generated a <left expr> > <right expr>. Example:</p><p>[php]
+u.id > ?1
+$q->where($q->expr()->gt('u.id', '?1'));</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Left expression</dd>
+<dd>y - Right expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 200</div>
+<h3 id="gte()">gte</h3>
+<code class="signature">public  Expr\Comparison <strong>gte</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates an instance of Expr\Comparison, with the given arguments.
+First argument is considered the left expression and the second is the right expression.
+When converted to string, it will generated a <left expr> >= <right expr>. Example:</p><p>[php]
+u.id >= ?1
+$q->where($q->expr()->gte('u.id', '?1'));</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Left expression</dd>
+<dd>y - Right expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 417</div>
+<h3 id="in()">in</h3>
+<code class="signature">public  Expr\Func <strong>in</strong>(string x, mixed y)</code>
+<div class="details">
+<p>Creates an IN() expression with the given arguments.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Field in string format to be restricted by IN() function</dd>
+<dd>y - Argument to be used in IN() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 506</div>
+<h3 id="length()">length</h3>
+<code class="signature">public  Expr\Func <strong>length</strong>(mixed x)</code>
+<div class="details">
+<p>Creates a LENGTH() function expression with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used as argument of LENGTH() function.</dd>
+<dt>Returns:</dt>
+<dd>A LENGTH function expression.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 448</div>
+<h3 id="like()">like</h3>
+<code class="signature">public  Expr\Comparison <strong>like</strong>(string x, mixed y)</code>
+<div class="details">
+<p>Creates a LIKE() comparison expression with the given arguments.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Field in string format to be inspected by LIKE() comparison.</dd>
+<dd>y - Argument to be used in LIKE() comparison.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 517</div>
+<h3 id="literal()">literal</h3>
+<code class="signature">public  Expr\Literal <strong>literal</strong>(mixed literal)</code>
+<div class="details">
+<p>Creates a literal expression of the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>literal - Argument to be converted to literal.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 484</div>
+<h3 id="lower()">lower</h3>
+<code class="signature">public  Expr\Func <strong>lower</strong>(mixed x)</code>
+<div class="details">
+<p>Creates a LOWER() function expression with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used in LOWER() function.</dd>
+<dt>Returns:</dt>
+<dd>A LOWER function expression.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 146</div>
+<h3 id="lt()">lt</h3>
+<code class="signature">public  Expr\Comparison <strong>lt</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates an instance of Expr\Comparison, with the given arguments.
+First argument is considered the left expression and the second is the right expression.
+When converted to string, it will generated a <left expr> < <right expr>. Example:</p><p>[php]
+u.id < ?1
+$q->where($q->expr()->lt('u.id', '?1'));</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Left expression</dd>
+<dd>y - Right expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 164</div>
+<h3 id="lte()">lte</h3>
+<code class="signature">public  Expr\Comparison <strong>lte</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates an instance of Expr\Comparison, with the given arguments.
+First argument is considered the left expression and the second is the right expression.
+When converted to string, it will generated a <left expr> <= <right expr>. Example:</p><p>[php]
+u.id <= ?1
+$q->where($q->expr()->lte('u.id', '?1'));</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Left expression</dd>
+<dd>y - Right expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 222</div>
+<h3 id="max()">max</h3>
+<code class="signature">public  Expr\Func <strong>max</strong>(mixed x)</code>
+<div class="details">
+<p>Creates an instance of MAX() function, with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used in MAX() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 233</div>
+<h3 id="min()">min</h3>
+<code class="signature">public  Expr\Func <strong>min</strong>(mixed x)</code>
+<div class="details">
+<p>Creates an instance of MIN() function, with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used in MIN() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 128</div>
+<h3 id="neq()">neq</h3>
+<code class="signature">public  Expr\Comparison <strong>neq</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates an instance of Expr\Comparison, with the given arguments.
+First argument is considered the left expression and the second is the right expression.
+When converted to string, it will generated a <left expr> <> <right expr>. Example:</p><p>[php]
+u.id <> ?1
+$q->where($q->expr()->neq('u.id', '?1'));</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Left expression</dd>
+<dd>y - Right expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 310</div>
+<h3 id="not()">not</h3>
+<code class="signature">public  Expr\Func <strong>not</strong>(mixed restriction)</code>
+<div class="details">
+<p>Creates a negation expression of the given restriction.</p><dl>
+<dt>Parameters:</dt>
+<dd>restriction - Restriction to be used in NOT() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 436</div>
+<h3 id="notIn()">notIn</h3>
+<code class="signature">public  Expr\Func <strong>notIn</strong>(string x, mixed y)</code>
+<div class="details">
+<p>Creates a NOT IN() expression with the given arguments.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Field in string format to be restricted by NOT IN() function</dd>
+<dd>y - Argument to be used in NOT IN() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 69</div>
+<h3 id="orX()">orX</h3>
+<code class="signature">public  Expr\Orx <strong>orX</strong>(mixed x)</code>
+<div class="details">
+<p>Creates a disjunction of the given boolean expressions.</p><p>Example:</p><p>[php]
+(u.type = ?1) OR (u.role = ?2)
+$q->where($q->expr()->orX('u.type = ?1', 'u.role = ?2'));</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Optional clause. Defaults = null, but requires at least one defined when converting to string.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 340</div>
+<h3 id="prod()">prod</h3>
+<code class="signature">public  Expr\Math <strong>prod</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates a product mathematical expression with the given arguments.</p><p>First argument is considered the left expression and the second is the right expression.
+When converted to string, it will generated a <left expr> * <right expr>. Example:</p><p>[php]
+u.salary * u.percentAnualSalaryIncrease
+$q->expr()->prod('u.salary', 'u.percentAnualSalaryIncrease')</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Left expression</dd>
+<dd>y - Right expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 394</div>
+<h3 id="quot()">quot</h3>
+<code class="signature">public  Expr\Math <strong>quot</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates a quotient mathematical expression with the given arguments.
+First argument is considered the left expression and the second is the right expression.
+When converted to string, it will generated a <left expr> / <right expr>. Example:</p><p>[php]
+u.total / u.period
+$expr->quot('u.total', 'u.period')</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Left expression</dd>
+<dd>y - Right expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 288</div>
+<h3 id="some()">some</h3>
+<code class="signature">public  Expr\Func <strong>some</strong>(mixed subquery)</code>
+<div class="details">
+<p>Creates a SOME() function expression with the given DQL subquery.</p><dl>
+<dt>Parameters:</dt>
+<dd>subquery - DQL Subquery to be used in SOME() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 405</div>
+<h3 id="sqrt()">sqrt</h3>
+<code class="signature">public  Expr\Func <strong>sqrt</strong>(mixed x)</code>
+<div class="details">
+<p>Creates a SQRT() function expression with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used in SQRT() function.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 473</div>
+<h3 id="substring()">substring</h3>
+<code class="signature">public  Expr\Func <strong>substring</strong>(mixed x, integer from, integer len)</code>
+<div class="details">
+<p>Creates a SUBSTRING() function expression with the given arguments.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used as string to be cropped by SUBSTRING() function.</dd>
+<dd>from - Initial offset to start cropping string. May accept negative values.</dd>
+<dd>len - Length of crop. May accept negative values.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 376</div>
+<h3 id="sum()">sum</h3>
+<code class="signature">public  Expr\Math <strong>sum</strong>(mixed x, mixed y)</code>
+<div class="details">
+<p>Creates a sum mathematical expression with the given arguments.
+First argument is considered the left expression and the second is the right expression.
+When converted to string, it will generated a <left expr> + <right expr>. Example:</p><p>[php]
+u.numChildren + 1
+$q->expr()->diff('u.numChildren', '1')</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Left expression</dd>
+<dd>y - Right expression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 556</div>
+<h3 id="trim()">trim</h3>
+<code class="signature">public  Expr\Func <strong>trim</strong>(mixed x)</code>
+<div class="details">
+<p>Creates an instance of TRIM() function, with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used as argument of TRIM() function.</dd>
+<dt>Returns:</dt>
+<dd>a TRIM expression.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr.php at line 495</div>
+<h3 id="upper()">upper</h3>
+<code class="signature">public  Expr\Func <strong>upper</strong>(mixed x)</code>
+<div class="details">
+<p>Creates an UPPER() function expression with the given argument.</p><dl>
+<dt>Parameters:</dt>
+<dd>x - Argument to be used in UPPER() function.</dd>
+<dt>Returns:</dt>
+<dd>An UPPER function expression.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/expr.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/andx.html b/lib/api/doctrine/orm/query/expr/andx.html
new file mode 100644
index 000000000..fe7b96cc7
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/andx.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Andx (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/andx.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\Andx</div>
+<div class="location">/Doctrine/ORM/Query/Expr/Andx.php at line 35</div>
+
+<h1>Class Andx</h1>
+
+<pre class="tree">Class:Andx - Superclass: Base
+<a href="../../../../doctrine/orm/query/expr/base.html">Base</a><br>   &lfloor;&nbsp;<strong>Andx</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Andx</strong><br>extends <a href="../../../../doctrine/orm/query/expr/base.html">Base</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Expression class for building DQL and parts</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_allowedClasses">$_allowedClasses</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_separator">$_separator</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\Expr\Base</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/expr/base.html#_allowedClasses">_allowedClasses</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_postSeparator">_postSeparator</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_preSeparator">_preSeparator</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_separator">_separator</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\Expr\Base</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/expr/base.html#add()">add</a>, <a href="../../../../doctrine/orm/query/expr/base.html#addMultiple()">addMultiple</a>, <a href="../../../../doctrine/orm/query/expr/base.html#count()">count</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Andx.php at line 38</div>
+<h3 id="_allowedClasses">_allowedClasses</h3>
+<code class="signature">protected  mixed <strong>$_allowedClasses</strong> = array(...)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Andx.php at line 37</div>
+<h3 id="_separator">_separator</h3>
+<code class="signature">protected  mixed <strong>$_separator</strong> = ') AND ('</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/andx.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/base.html b/lib/api/doctrine/orm/query/expr/base.html
new file mode 100644
index 000000000..b91a71418
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/base.html
@@ -0,0 +1,204 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Base (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/base.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\Base</div>
+<div class="location">/Doctrine/ORM/Query/Expr/Base.php at line 35</div>
+
+<h1>Class Base</h1>
+
+<pre class="tree"><strong>Base</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>Base</strong></p>
+
+<div class="comment" id="overview_description"><p>Abstract base Expr class for building DQL parts</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_allowedClasses">$_allowedClasses</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_postSeparator">$_postSeparator</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_preSeparator">$_preSeparator</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_separator">$_separator</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Base()">Base</a>(mixed args)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#add()">add</a>(mixed arg)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addMultiple()">addMultiple</a>(mixed args)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#count()">count</a>()</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Base.php at line 40</div>
+<h3 id="_allowedClasses">_allowedClasses</h3>
+<code class="signature">protected  mixed <strong>$_allowedClasses</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Base.php at line 39</div>
+<h3 id="_postSeparator">_postSeparator</h3>
+<code class="signature">protected  mixed <strong>$_postSeparator</strong> = ')'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Base.php at line 37</div>
+<h3 id="_preSeparator">_preSeparator</h3>
+<code class="signature">protected  mixed <strong>$_preSeparator</strong> = '('</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Base.php at line 38</div>
+<h3 id="_separator">_separator</h3>
+<code class="signature">protected  mixed <strong>$_separator</strong> = ', '</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Base.php at line 44</div>
+<h3 id="Base()">Base</h3>
+<code class="signature">public <strong>Base</strong>(mixed args)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Base.php at line 56</div>
+<h3 id="add()">add</h3>
+<code class="signature">public  void <strong>add</strong>(mixed arg)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Base.php at line 49</div>
+<h3 id="addMultiple()">addMultiple</h3>
+<code class="signature">public  void <strong>addMultiple</strong>(mixed args)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Base.php at line 72</div>
+<h3 id="count()">count</h3>
+<code class="signature">public  void <strong>count</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/base.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/comparison.html b/lib/api/doctrine/orm/query/expr/comparison.html
new file mode 100644
index 000000000..573a47ffc
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/comparison.html
@@ -0,0 +1,187 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Comparison (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/comparison.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\Comparison</div>
+<div class="location">/Doctrine/ORM/Query/Expr/Comparison.php at line 35</div>
+
+<h1>Class Comparison</h1>
+
+<pre class="tree"><strong>Comparison</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Comparison</strong></p>
+
+<div class="comment" id="overview_description"><p>Expression class for DQL comparison expressions</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#EQ">EQ</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#GT">GT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#GTE">GTE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#LT">LT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#LTE">LTE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#NEQ">NEQ</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Comparison()">Comparison</a>(mixed leftExpr, mixed operator, mixed rightExpr)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Comparison.php at line 37</div>
+<h3 id="EQ">EQ</h3>
+<code class="signature">public final  str <strong>EQ</strong> = '='</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Comparison.php at line 41</div>
+<h3 id="GT">GT</h3>
+<code class="signature">public final  str <strong>GT</strong> = '>'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Comparison.php at line 42</div>
+<h3 id="GTE">GTE</h3>
+<code class="signature">public final  str <strong>GTE</strong> = '>='</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Comparison.php at line 39</div>
+<h3 id="LT">LT</h3>
+<code class="signature">public final  str <strong>LT</strong> = '<'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Comparison.php at line 40</div>
+<h3 id="LTE">LTE</h3>
+<code class="signature">public final  str <strong>LTE</strong> = '<='</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Comparison.php at line 38</div>
+<h3 id="NEQ">NEQ</h3>
+<code class="signature">public final  str <strong>NEQ</strong> = '<>'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Comparison.php at line 48</div>
+<h3 id="Comparison()">Comparison</h3>
+<code class="signature">public <strong>Comparison</strong>(mixed leftExpr, mixed operator, mixed rightExpr)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/comparison.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/from.html b/lib/api/doctrine/orm/query/expr/from.html
new file mode 100644
index 000000000..52b2de005
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/from.html
@@ -0,0 +1,139 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>From (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/from.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\From</div>
+<div class="location">/Doctrine/ORM/Query/Expr/From.php at line 35</div>
+
+<h1>Class From</h1>
+
+<pre class="tree"><strong>From</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>From</strong></p>
+
+<div class="comment" id="overview_description"><p>Expression class for DQL from</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#From()">From</a>(mixed from, mixed alias)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getAlias()">getAlias</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getFrom()">getFrom</a>()</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/From.php at line 40</div>
+<h3 id="From()">From</h3>
+<code class="signature">public <strong>From</strong>(mixed from, mixed alias)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/From.php at line 51</div>
+<h3 id="getAlias()">getAlias</h3>
+<code class="signature">public  void <strong>getAlias</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/From.php at line 46</div>
+<h3 id="getFrom()">getFrom</h3>
+<code class="signature">public  void <strong>getFrom</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/from.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/func.html b/lib/api/doctrine/orm/query/expr/func.html
new file mode 100644
index 000000000..f4dcdf860
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/func.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Func (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/func.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\Func</div>
+<div class="location">/Doctrine/ORM/Query/Expr/Func.php at line 35</div>
+
+<h1>Class Func</h1>
+
+<pre class="tree"><strong>Func</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Func</strong></p>
+
+<div class="comment" id="overview_description"><p>Expression class for generating DQL functions</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Func()">Func</a>(mixed name, mixed arguments)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Func.php at line 40</div>
+<h3 id="Func()">Func</h3>
+<code class="signature">public <strong>Func</strong>(mixed name, mixed arguments)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/func.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/groupby.html b/lib/api/doctrine/orm/query/expr/groupby.html
new file mode 100644
index 000000000..f27f3ff1d
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/groupby.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>GroupBy (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/groupby.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\GroupBy</div>
+<div class="location">/Doctrine/ORM/Query/Expr/GroupBy.php at line 35</div>
+
+<h1>Class GroupBy</h1>
+
+<pre class="tree">Class:GroupBy - Superclass: Base
+<a href="../../../../doctrine/orm/query/expr/base.html">Base</a><br>   &lfloor;&nbsp;<strong>GroupBy</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>GroupBy</strong><br>extends <a href="../../../../doctrine/orm/query/expr/base.html">Base</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Expression class for building DQL Group By parts</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_postSeparator">$_postSeparator</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_preSeparator">$_preSeparator</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\Expr\Base</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/expr/base.html#_allowedClasses">_allowedClasses</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_postSeparator">_postSeparator</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_preSeparator">_preSeparator</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_separator">_separator</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\Expr\Base</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/expr/base.html#add()">add</a>, <a href="../../../../doctrine/orm/query/expr/base.html#addMultiple()">addMultiple</a>, <a href="../../../../doctrine/orm/query/expr/base.html#count()">count</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/GroupBy.php at line 38</div>
+<h3 id="_postSeparator">_postSeparator</h3>
+<code class="signature">protected  mixed <strong>$_postSeparator</strong> = ''</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/GroupBy.php at line 37</div>
+<h3 id="_preSeparator">_preSeparator</h3>
+<code class="signature">protected  mixed <strong>$_preSeparator</strong> = ''</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/groupby.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/join.html b/lib/api/doctrine/orm/query/expr/join.html
new file mode 100644
index 000000000..4437b8cef
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/join.html
@@ -0,0 +1,163 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Join (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/join.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\Join</div>
+<div class="location">/Doctrine/ORM/Query/Expr/Join.php at line 35</div>
+
+<h1>Class Join</h1>
+
+<pre class="tree"><strong>Join</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Join</strong></p>
+
+<div class="comment" id="overview_description"><p>Expression class for DQL from</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#INNER_JOIN">INNER_JOIN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#LEFT_JOIN">LEFT_JOIN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#ON">ON</a></p></td>
+</tr>
+<tr>
+<td class="type">final  str</td>
+<td class="description"><p class="name"><a href="#WITH">WITH</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Join()">Join</a>(mixed joinType, mixed join, mixed alias, mixed conditionType, mixed condition)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Join.php at line 37</div>
+<h3 id="INNER_JOIN">INNER_JOIN</h3>
+<code class="signature">public final  str <strong>INNER_JOIN</strong> = 'INNER'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Join.php at line 38</div>
+<h3 id="LEFT_JOIN">LEFT_JOIN</h3>
+<code class="signature">public final  str <strong>LEFT_JOIN</strong> = 'LEFT'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Join.php at line 40</div>
+<h3 id="ON">ON</h3>
+<code class="signature">public final  str <strong>ON</strong> = 'ON'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Join.php at line 41</div>
+<h3 id="WITH">WITH</h3>
+<code class="signature">public final  str <strong>WITH</strong> = 'WITH'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Join.php at line 49</div>
+<h3 id="Join()">Join</h3>
+<code class="signature">public <strong>Join</strong>(mixed joinType, mixed join, mixed alias, mixed conditionType, mixed condition)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/join.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/literal.html b/lib/api/doctrine/orm/query/expr/literal.html
new file mode 100644
index 000000000..25fc60b89
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/literal.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Literal (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/literal.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\Literal</div>
+<div class="location">/Doctrine/ORM/Query/Expr/Literal.php at line 5</div>
+
+<h1>Class Literal</h1>
+
+<pre class="tree">Class:Literal - Superclass: Base
+<a href="../../../../doctrine/orm/query/expr/base.html">Base</a><br>   &lfloor;&nbsp;<strong>Literal</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Literal</strong><br>extends <a href="../../../../doctrine/orm/query/expr/base.html">Base</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Abstract base Expr class for building DQL parts</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_postSeparator">$_postSeparator</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_preSeparator">$_preSeparator</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\Expr\Base</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/expr/base.html#_allowedClasses">_allowedClasses</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_postSeparator">_postSeparator</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_preSeparator">_preSeparator</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_separator">_separator</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\Expr\Base</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/expr/base.html#add()">add</a>, <a href="../../../../doctrine/orm/query/expr/base.html#addMultiple()">addMultiple</a>, <a href="../../../../doctrine/orm/query/expr/base.html#count()">count</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Literal.php at line 8</div>
+<h3 id="_postSeparator">_postSeparator</h3>
+<code class="signature">protected  mixed <strong>$_postSeparator</strong> = ''</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Literal.php at line 7</div>
+<h3 id="_preSeparator">_preSeparator</h3>
+<code class="signature">protected  mixed <strong>$_preSeparator</strong> = ''</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/literal.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/math.html b/lib/api/doctrine/orm/query/expr/math.html
new file mode 100644
index 000000000..af5b56c8d
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/math.html
@@ -0,0 +1,110 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Math (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/math.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\Math</div>
+<div class="location">/Doctrine/ORM/Query/Expr/Math.php at line 35</div>
+
+<h1>Class Math</h1>
+
+<pre class="tree"><strong>Math</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Math</strong></p>
+
+<div class="comment" id="overview_description"><p>Expression class for DQL math statements</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Math()">Math</a>(mixed leftExpr, mixed operator, mixed rightExpr)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Math.php at line 41</div>
+<h3 id="Math()">Math</h3>
+<code class="signature">public <strong>Math</strong>(mixed leftExpr, mixed operator, mixed rightExpr)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/math.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/orderby.html b/lib/api/doctrine/orm/query/expr/orderby.html
new file mode 100644
index 000000000..7cd310af6
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/orderby.html
@@ -0,0 +1,192 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>OrderBy (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/orderby.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\OrderBy</div>
+<div class="location">/Doctrine/ORM/Query/Expr/OrderBy.php at line 35</div>
+
+<h1>Class OrderBy</h1>
+
+<pre class="tree"><strong>OrderBy</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>OrderBy</strong></p>
+
+<div class="comment" id="overview_description"><p>Expression class for building DQL Order By parts</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_allowedClasses">$_allowedClasses</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_postSeparator">$_postSeparator</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_preSeparator">$_preSeparator</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_separator">$_separator</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#OrderBy()">OrderBy</a>(mixed sort, mixed order)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#add()">add</a>(mixed sort, mixed order)</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#count()">count</a>()</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/OrderBy.php at line 40</div>
+<h3 id="_allowedClasses">_allowedClasses</h3>
+<code class="signature">protected  mixed <strong>$_allowedClasses</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/OrderBy.php at line 39</div>
+<h3 id="_postSeparator">_postSeparator</h3>
+<code class="signature">protected  mixed <strong>$_postSeparator</strong> = ''</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/OrderBy.php at line 37</div>
+<h3 id="_preSeparator">_preSeparator</h3>
+<code class="signature">protected  mixed <strong>$_preSeparator</strong> = ''</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/OrderBy.php at line 38</div>
+<h3 id="_separator">_separator</h3>
+<code class="signature">protected  mixed <strong>$_separator</strong> = ', '</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/OrderBy.php at line 44</div>
+<h3 id="OrderBy()">OrderBy</h3>
+<code class="signature">public <strong>OrderBy</strong>(mixed sort, mixed order)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/OrderBy.php at line 51</div>
+<h3 id="add()">add</h3>
+<code class="signature">public  void <strong>add</strong>(mixed sort, mixed order)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/OrderBy.php at line 57</div>
+<h3 id="count()">count</h3>
+<code class="signature">public  void <strong>count</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/orderby.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/orx.html b/lib/api/doctrine/orm/query/expr/orx.html
new file mode 100644
index 000000000..e81445ead
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/orx.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Orx (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/orx.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\Orx</div>
+<div class="location">/Doctrine/ORM/Query/Expr/Orx.php at line 35</div>
+
+<h1>Class Orx</h1>
+
+<pre class="tree">Class:Orx - Superclass: Base
+<a href="../../../../doctrine/orm/query/expr/base.html">Base</a><br>   &lfloor;&nbsp;<strong>Orx</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Orx</strong><br>extends <a href="../../../../doctrine/orm/query/expr/base.html">Base</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Expression class for building DQL OR clauses</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_allowedClasses">$_allowedClasses</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_separator">$_separator</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\Expr\Base</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/expr/base.html#_allowedClasses">_allowedClasses</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_postSeparator">_postSeparator</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_preSeparator">_preSeparator</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_separator">_separator</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\Expr\Base</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/expr/base.html#add()">add</a>, <a href="../../../../doctrine/orm/query/expr/base.html#addMultiple()">addMultiple</a>, <a href="../../../../doctrine/orm/query/expr/base.html#count()">count</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Orx.php at line 38</div>
+<h3 id="_allowedClasses">_allowedClasses</h3>
+<code class="signature">protected  mixed <strong>$_allowedClasses</strong> = array(...)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Orx.php at line 37</div>
+<h3 id="_separator">_separator</h3>
+<code class="signature">protected  mixed <strong>$_separator</strong> = ') OR ('</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/orx.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/package-frame.html b/lib/api/doctrine/orm/query/expr/package-frame.html
new file mode 100644
index 000000000..94a6b43e2
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/package-frame.html
@@ -0,0 +1,37 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\Expr (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Query\Expr</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/orm/query/expr/andx.html" target="main">Andx</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/base.html" target="main">Base</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/comparison.html" target="main">Comparison</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/from.html" target="main">From</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/func.html" target="main">Func</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/groupby.html" target="main">GroupBy</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/join.html" target="main">Join</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/literal.html" target="main">Literal</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/math.html" target="main">Math</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/orderby.html" target="main">OrderBy</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/orx.html" target="main">Orx</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/select.html" target="main">Select</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/package-functions.html b/lib/api/doctrine/orm/query/expr/package-functions.html
new file mode 100644
index 000000000..af97091f8
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/package-globals.html b/lib/api/doctrine/orm/query/expr/package-globals.html
new file mode 100644
index 000000000..8945cee27
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/package-summary.html b/lib/api/doctrine/orm/query/expr/package-summary.html
new file mode 100644
index 000000000..6f3dad182
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/package-summary.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\Expr (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Query\Expr</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/andx.html">Andx</a></td><td class="description">Expression class for building DQL and parts</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/base.html">Base</a></td><td class="description">Abstract base Expr class for building DQL parts</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/comparison.html">Comparison</a></td><td class="description">Expression class for DQL comparison expressions</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/from.html">From</a></td><td class="description">Expression class for DQL from</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/func.html">Func</a></td><td class="description">Expression class for generating DQL functions</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/groupby.html">GroupBy</a></td><td class="description">Expression class for building DQL Group By parts</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/join.html">Join</a></td><td class="description">Expression class for DQL from</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/literal.html">Literal</a></td><td class="description">Abstract base Expr class for building DQL parts</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/math.html">Math</a></td><td class="description">Expression class for DQL math statements</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/orderby.html">OrderBy</a></td><td class="description">Expression class for building DQL Order By parts</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/orx.html">Orx</a></td><td class="description">Expression class for building DQL OR clauses</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/query/expr/select.html">Select</a></td><td class="description">Expression class for building DQL select statements</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/package-tree.html b/lib/api/doctrine/orm/query/expr/package-tree.html
new file mode 100644
index 000000000..bad896662
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/package-tree.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query\Expr (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Query\Expr</h1><ul>
+<li><a href="../../../../doctrine/orm/query/expr/base.html">Doctrine\ORM\Query\Expr\Base</a><ul>
+<li><a href="../../../../doctrine/orm/query/expr/andx.html">Doctrine\ORM\Query\Expr\Andx</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/groupby.html">Doctrine\ORM\Query\Expr\GroupBy</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/literal.html">Doctrine\ORM\Query\Expr\Literal</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/orx.html">Doctrine\ORM\Query\Expr\Orx</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/select.html">Doctrine\ORM\Query\Expr\Select</a></li>
+</ul>
+</li>
+<li><a href="../../../../doctrine/orm/query/expr/comparison.html">Doctrine\ORM\Query\Expr\Comparison</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/from.html">Doctrine\ORM\Query\Expr\From</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/func.html">Doctrine\ORM\Query\Expr\Func</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/join.html">Doctrine\ORM\Query\Expr\Join</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/math.html">Doctrine\ORM\Query\Expr\Math</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/orderby.html">Doctrine\ORM\Query\Expr\OrderBy</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/expr/select.html b/lib/api/doctrine/orm/query/expr/select.html
new file mode 100644
index 000000000..1dee6e984
--- /dev/null
+++ b/lib/api/doctrine/orm/query/expr/select.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Select (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/select.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Expr\Select</div>
+<div class="location">/Doctrine/ORM/Query/Expr/Select.php at line 35</div>
+
+<h1>Class Select</h1>
+
+<pre class="tree">Class:Select - Superclass: Base
+<a href="../../../../doctrine/orm/query/expr/base.html">Base</a><br>   &lfloor;&nbsp;<strong>Select</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Select</strong><br>extends <a href="../../../../doctrine/orm/query/expr/base.html">Base</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Expression class for building DQL select statements</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_postSeparator">$_postSeparator</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_preSeparator">$_preSeparator</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Query\Expr\Base</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/expr/base.html#_allowedClasses">_allowedClasses</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_postSeparator">_postSeparator</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_preSeparator">_preSeparator</a>, <a href="../../../../doctrine/orm/query/expr/base.html#_separator">_separator</a></td></tr></table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Query\Expr\Base</th></tr>
+<tr><td><a href="../../../../doctrine/orm/query/expr/base.html#add()">add</a>, <a href="../../../../doctrine/orm/query/expr/base.html#addMultiple()">addMultiple</a>, <a href="../../../../doctrine/orm/query/expr/base.html#count()">count</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Expr/Select.php at line 38</div>
+<h3 id="_postSeparator">_postSeparator</h3>
+<code class="signature">protected  mixed <strong>$_postSeparator</strong> = ''</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Expr/Select.php at line 37</div>
+<h3 id="_preSeparator">_preSeparator</h3>
+<code class="signature">protected  mixed <strong>$_preSeparator</strong> = ''</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/query/expr/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/query/expr/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/query/expr/select.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/lexer.html b/lib/api/doctrine/orm/query/lexer.html
new file mode 100644
index 000000000..cdb4d18cb
--- /dev/null
+++ b/lib/api/doctrine/orm/query/lexer.html
@@ -0,0 +1,1009 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Lexer (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/lexer.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Lexer</div>
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 35</div>
+
+<h1>Class Lexer</h1>
+
+<pre class="tree">Class:Lexer - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>Lexer</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Lexer</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>Scans a DQL query for tokens.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Janne Vanhala <jpvanhal@cc.hut.fi></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_ALL">T_ALL</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_AND">T_AND</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_ANY">T_ANY</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_AS">T_AS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_ASC">T_ASC</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_AVG">T_AVG</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_BETWEEN">T_BETWEEN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_BOTH">T_BOTH</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_BY">T_BY</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_CLOSE_CURLY_BRACE">T_CLOSE_CURLY_BRACE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_CLOSE_PARENTHESIS">T_CLOSE_PARENTHESIS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_COMMA">T_COMMA</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_COUNT">T_COUNT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_DELETE">T_DELETE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_DESC">T_DESC</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_DISTINCT">T_DISTINCT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_DIVIDE">T_DIVIDE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_DOT">T_DOT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_EMPTY">T_EMPTY</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_EQUALS">T_EQUALS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_ESCAPE">T_ESCAPE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_EXISTS">T_EXISTS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_FALSE">T_FALSE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_FLOAT">T_FLOAT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_FROM">T_FROM</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_GREATER_THAN">T_GREATER_THAN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_GROUP">T_GROUP</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_HAVING">T_HAVING</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_IDENTIFIER">T_IDENTIFIER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_IN">T_IN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_INDEX">T_INDEX</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_INNER">T_INNER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_INPUT_PARAMETER">T_INPUT_PARAMETER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_INTEGER">T_INTEGER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_IS">T_IS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_JOIN">T_JOIN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_LEADING">T_LEADING</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_LEFT">T_LEFT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_LIKE">T_LIKE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_LIMIT">T_LIMIT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_LOWER_THAN">T_LOWER_THAN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_MAX">T_MAX</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_MEMBER">T_MEMBER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_MIN">T_MIN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_MINUS">T_MINUS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_MOD">T_MOD</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_MULTIPLY">T_MULTIPLY</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_NEGATE">T_NEGATE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_NONE">T_NONE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_NOT">T_NOT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_NULL">T_NULL</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_OF">T_OF</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_OFFSET">T_OFFSET</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_OPEN_CURLY_BRACE">T_OPEN_CURLY_BRACE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_OPEN_PARENTHESIS">T_OPEN_PARENTHESIS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_OR">T_OR</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_ORDER">T_ORDER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_OUTER">T_OUTER</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_PARTIAL">T_PARTIAL</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_PLUS">T_PLUS</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_SELECT">T_SELECT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_SET">T_SET</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_SIZE">T_SIZE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_SOME">T_SOME</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_STRING">T_STRING</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_SUM">T_SUM</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_TRAILING">T_TRAILING</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_TRUE">T_TRUE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_UPDATE">T_UPDATE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_WHERE">T_WHERE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#T_WITH">T_WITH</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Lexer()">Lexer</a>(string input)</p><p class="description">Creates a new query scanner object.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#getCatchablePatterns()">getCatchablePatterns</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#getNonCatchablePatterns()">getNonCatchablePatterns</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 44</div>
+<h3 id="T_ALL">T_ALL</h3>
+<code class="signature">public final  int <strong>T_ALL</strong> = 101</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 45</div>
+<h3 id="T_AND">T_AND</h3>
+<code class="signature">public final  int <strong>T_AND</strong> = 102</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 46</div>
+<h3 id="T_ANY">T_ANY</h3>
+<code class="signature">public final  int <strong>T_ANY</strong> = 103</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 47</div>
+<h3 id="T_AS">T_AS</h3>
+<code class="signature">public final  int <strong>T_AS</strong> = 104</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 48</div>
+<h3 id="T_ASC">T_ASC</h3>
+<code class="signature">public final  int <strong>T_ASC</strong> = 105</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 49</div>
+<h3 id="T_AVG">T_AVG</h3>
+<code class="signature">public final  int <strong>T_AVG</strong> = 106</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 50</div>
+<h3 id="T_BETWEEN">T_BETWEEN</h3>
+<code class="signature">public final  int <strong>T_BETWEEN</strong> = 107</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 51</div>
+<h3 id="T_BOTH">T_BOTH</h3>
+<code class="signature">public final  int <strong>T_BOTH</strong> = 108</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 52</div>
+<h3 id="T_BY">T_BY</h3>
+<code class="signature">public final  int <strong>T_BY</strong> = 109</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 108</div>
+<h3 id="T_CLOSE_CURLY_BRACE">T_CLOSE_CURLY_BRACE</h3>
+<code class="signature">public final  int <strong>T_CLOSE_CURLY_BRACE</strong> = 166</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 53</div>
+<h3 id="T_CLOSE_PARENTHESIS">T_CLOSE_PARENTHESIS</h3>
+<code class="signature">public final  int <strong>T_CLOSE_PARENTHESIS</strong> = 110</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 54</div>
+<h3 id="T_COMMA">T_COMMA</h3>
+<code class="signature">public final  int <strong>T_COMMA</strong> = 111</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 55</div>
+<h3 id="T_COUNT">T_COUNT</h3>
+<code class="signature">public final  int <strong>T_COUNT</strong> = 112</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 56</div>
+<h3 id="T_DELETE">T_DELETE</h3>
+<code class="signature">public final  int <strong>T_DELETE</strong> = 113</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 57</div>
+<h3 id="T_DESC">T_DESC</h3>
+<code class="signature">public final  int <strong>T_DESC</strong> = 114</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 58</div>
+<h3 id="T_DISTINCT">T_DISTINCT</h3>
+<code class="signature">public final  int <strong>T_DISTINCT</strong> = 115</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 59</div>
+<h3 id="T_DIVIDE">T_DIVIDE</h3>
+<code class="signature">public final  int <strong>T_DIVIDE</strong> = 116</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 60</div>
+<h3 id="T_DOT">T_DOT</h3>
+<code class="signature">public final  int <strong>T_DOT</strong> = 117</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 61</div>
+<h3 id="T_EMPTY">T_EMPTY</h3>
+<code class="signature">public final  int <strong>T_EMPTY</strong> = 118</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 62</div>
+<h3 id="T_EQUALS">T_EQUALS</h3>
+<code class="signature">public final  int <strong>T_EQUALS</strong> = 119</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 63</div>
+<h3 id="T_ESCAPE">T_ESCAPE</h3>
+<code class="signature">public final  int <strong>T_ESCAPE</strong> = 120</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 64</div>
+<h3 id="T_EXISTS">T_EXISTS</h3>
+<code class="signature">public final  int <strong>T_EXISTS</strong> = 121</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 65</div>
+<h3 id="T_FALSE">T_FALSE</h3>
+<code class="signature">public final  int <strong>T_FALSE</strong> = 122</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 42</div>
+<h3 id="T_FLOAT">T_FLOAT</h3>
+<code class="signature">public final  int <strong>T_FLOAT</strong> = 6</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 66</div>
+<h3 id="T_FROM">T_FROM</h3>
+<code class="signature">public final  int <strong>T_FROM</strong> = 123</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 67</div>
+<h3 id="T_GREATER_THAN">T_GREATER_THAN</h3>
+<code class="signature">public final  int <strong>T_GREATER_THAN</strong> = 124</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 68</div>
+<h3 id="T_GROUP">T_GROUP</h3>
+<code class="signature">public final  int <strong>T_GROUP</strong> = 125</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 69</div>
+<h3 id="T_HAVING">T_HAVING</h3>
+<code class="signature">public final  int <strong>T_HAVING</strong> = 126</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 38</div>
+<h3 id="T_IDENTIFIER">T_IDENTIFIER</h3>
+<code class="signature">public final  int <strong>T_IDENTIFIER</strong> = 2</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 70</div>
+<h3 id="T_IN">T_IN</h3>
+<code class="signature">public final  int <strong>T_IN</strong> = 127</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 71</div>
+<h3 id="T_INDEX">T_INDEX</h3>
+<code class="signature">public final  int <strong>T_INDEX</strong> = 128</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 72</div>
+<h3 id="T_INNER">T_INNER</h3>
+<code class="signature">public final  int <strong>T_INNER</strong> = 129</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 41</div>
+<h3 id="T_INPUT_PARAMETER">T_INPUT_PARAMETER</h3>
+<code class="signature">public final  int <strong>T_INPUT_PARAMETER</strong> = 5</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 39</div>
+<h3 id="T_INTEGER">T_INTEGER</h3>
+<code class="signature">public final  int <strong>T_INTEGER</strong> = 3</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 73</div>
+<h3 id="T_IS">T_IS</h3>
+<code class="signature">public final  int <strong>T_IS</strong> = 130</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 74</div>
+<h3 id="T_JOIN">T_JOIN</h3>
+<code class="signature">public final  int <strong>T_JOIN</strong> = 131</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 75</div>
+<h3 id="T_LEADING">T_LEADING</h3>
+<code class="signature">public final  int <strong>T_LEADING</strong> = 132</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 76</div>
+<h3 id="T_LEFT">T_LEFT</h3>
+<code class="signature">public final  int <strong>T_LEFT</strong> = 133</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 77</div>
+<h3 id="T_LIKE">T_LIKE</h3>
+<code class="signature">public final  int <strong>T_LIKE</strong> = 134</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 78</div>
+<h3 id="T_LIMIT">T_LIMIT</h3>
+<code class="signature">public final  int <strong>T_LIMIT</strong> = 135</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 79</div>
+<h3 id="T_LOWER_THAN">T_LOWER_THAN</h3>
+<code class="signature">public final  int <strong>T_LOWER_THAN</strong> = 136</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 80</div>
+<h3 id="T_MAX">T_MAX</h3>
+<code class="signature">public final  int <strong>T_MAX</strong> = 137</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 81</div>
+<h3 id="T_MEMBER">T_MEMBER</h3>
+<code class="signature">public final  int <strong>T_MEMBER</strong> = 138</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 82</div>
+<h3 id="T_MIN">T_MIN</h3>
+<code class="signature">public final  int <strong>T_MIN</strong> = 139</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 83</div>
+<h3 id="T_MINUS">T_MINUS</h3>
+<code class="signature">public final  int <strong>T_MINUS</strong> = 140</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 84</div>
+<h3 id="T_MOD">T_MOD</h3>
+<code class="signature">public final  int <strong>T_MOD</strong> = 141</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 85</div>
+<h3 id="T_MULTIPLY">T_MULTIPLY</h3>
+<code class="signature">public final  int <strong>T_MULTIPLY</strong> = 142</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 86</div>
+<h3 id="T_NEGATE">T_NEGATE</h3>
+<code class="signature">public final  int <strong>T_NEGATE</strong> = 143</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 37</div>
+<h3 id="T_NONE">T_NONE</h3>
+<code class="signature">public final  int <strong>T_NONE</strong> = 1</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 87</div>
+<h3 id="T_NOT">T_NOT</h3>
+<code class="signature">public final  int <strong>T_NOT</strong> = 144</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 88</div>
+<h3 id="T_NULL">T_NULL</h3>
+<code class="signature">public final  int <strong>T_NULL</strong> = 145</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 89</div>
+<h3 id="T_OF">T_OF</h3>
+<code class="signature">public final  int <strong>T_OF</strong> = 146</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 90</div>
+<h3 id="T_OFFSET">T_OFFSET</h3>
+<code class="signature">public final  int <strong>T_OFFSET</strong> = 147</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 107</div>
+<h3 id="T_OPEN_CURLY_BRACE">T_OPEN_CURLY_BRACE</h3>
+<code class="signature">public final  int <strong>T_OPEN_CURLY_BRACE</strong> = 165</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 91</div>
+<h3 id="T_OPEN_PARENTHESIS">T_OPEN_PARENTHESIS</h3>
+<code class="signature">public final  int <strong>T_OPEN_PARENTHESIS</strong> = 149</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 92</div>
+<h3 id="T_OR">T_OR</h3>
+<code class="signature">public final  int <strong>T_OR</strong> = 150</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 93</div>
+<h3 id="T_ORDER">T_ORDER</h3>
+<code class="signature">public final  int <strong>T_ORDER</strong> = 151</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 94</div>
+<h3 id="T_OUTER">T_OUTER</h3>
+<code class="signature">public final  int <strong>T_OUTER</strong> = 152</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 106</div>
+<h3 id="T_PARTIAL">T_PARTIAL</h3>
+<code class="signature">public final  int <strong>T_PARTIAL</strong> = 164</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 95</div>
+<h3 id="T_PLUS">T_PLUS</h3>
+<code class="signature">public final  int <strong>T_PLUS</strong> = 153</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 96</div>
+<h3 id="T_SELECT">T_SELECT</h3>
+<code class="signature">public final  int <strong>T_SELECT</strong> = 154</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 97</div>
+<h3 id="T_SET">T_SET</h3>
+<code class="signature">public final  int <strong>T_SET</strong> = 155</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 98</div>
+<h3 id="T_SIZE">T_SIZE</h3>
+<code class="signature">public final  int <strong>T_SIZE</strong> = 156</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 99</div>
+<h3 id="T_SOME">T_SOME</h3>
+<code class="signature">public final  int <strong>T_SOME</strong> = 157</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 40</div>
+<h3 id="T_STRING">T_STRING</h3>
+<code class="signature">public final  int <strong>T_STRING</strong> = 4</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 100</div>
+<h3 id="T_SUM">T_SUM</h3>
+<code class="signature">public final  int <strong>T_SUM</strong> = 158</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 101</div>
+<h3 id="T_TRAILING">T_TRAILING</h3>
+<code class="signature">public final  int <strong>T_TRAILING</strong> = 159</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 102</div>
+<h3 id="T_TRUE">T_TRUE</h3>
+<code class="signature">public final  int <strong>T_TRUE</strong> = 160</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 103</div>
+<h3 id="T_UPDATE">T_UPDATE</h3>
+<code class="signature">public final  int <strong>T_UPDATE</strong> = 161</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 104</div>
+<h3 id="T_WHERE">T_WHERE</h3>
+<code class="signature">public final  int <strong>T_WHERE</strong> = 162</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 105</div>
+<h3 id="T_WITH">T_WITH</h3>
+<code class="signature">public final  int <strong>T_WITH</strong> = 163</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 115</div>
+<h3 id="Lexer()">Lexer</h3>
+<code class="signature">public <strong>Lexer</strong>(string input)</code>
+<div class="details">
+<p>Creates a new query scanner object.</p><dl>
+<dt>Parameters:</dt>
+<dd>input - a query string</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 123</div>
+<h3 id="getCatchablePatterns()">getCatchablePatterns</h3>
+<code class="signature">protected  void <strong>getCatchablePatterns</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Inheritdoc.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Lexer.php at line 136</div>
+<h3 id="getNonCatchablePatterns()">getNonCatchablePatterns</h3>
+<code class="signature">protected  void <strong>getNonCatchablePatterns</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>Inheritdoc.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/lexer.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/package-frame.html b/lib/api/doctrine/orm/query/package-frame.html
new file mode 100644
index 000000000..3857bf3cc
--- /dev/null
+++ b/lib/api/doctrine/orm/query/package-frame.html
@@ -0,0 +1,40 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Query</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/orm/query/expr.html" target="main">Expr</a></li>
+<li><a href="../../../doctrine/orm/query/lexer.html" target="main">Lexer</a></li>
+<li><a href="../../../doctrine/orm/query/parser.html" target="main">Parser</a></li>
+<li><a href="../../../doctrine/orm/query/parserresult.html" target="main">ParserResult</a></li>
+<li><a href="../../../doctrine/orm/query/printer.html" target="main">Printer</a></li>
+<li><a href="../../../doctrine/orm/query/queryexception.html" target="main">QueryException</a></li>
+<li><a href="../../../doctrine/orm/query/resultsetmapping.html" target="main">ResultSetMapping</a></li>
+<li><a href="../../../doctrine/orm/query/sqlwalker.html" target="main">SqlWalker</a></li>
+<li><a href="../../../doctrine/orm/query/treewalkeradapter.html" target="main">TreeWalkerAdapter</a></li>
+<li><a href="../../../doctrine/orm/query/treewalkerchain.html" target="main">TreeWalkerChain</a></li>
+</ul>
+
+<h2>Interfaces</h2>
+<ul>
+<li><a href="../../../doctrine/orm/query/treewalker.html" target="main">TreeWalker</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/package-functions.html b/lib/api/doctrine/orm/query/package-functions.html
new file mode 100644
index 000000000..cabf97263
--- /dev/null
+++ b/lib/api/doctrine/orm/query/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/package-globals.html b/lib/api/doctrine/orm/query/package-globals.html
new file mode 100644
index 000000000..e69ba1696
--- /dev/null
+++ b/lib/api/doctrine/orm/query/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/package-summary.html b/lib/api/doctrine/orm/query/package-summary.html
new file mode 100644
index 000000000..8221be3db
--- /dev/null
+++ b/lib/api/doctrine/orm/query/package-summary.html
@@ -0,0 +1,83 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Query</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/expr.html">Expr</a></td><td class="description">This class is used to generate DQL expressions via a set of PHP static functions</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/lexer.html">Lexer</a></td><td class="description">Scans a DQL query for tokens.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/parser.html">Parser</a></td><td class="description">An LL(*) recursive-descent parser for the context-free grammar of the Doctrine Query Language.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/parserresult.html">ParserResult</a></td><td class="description">Encapsulates the resulting components from a DQL query parsing process that
+can be serialized.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/printer.html">Printer</a></td><td class="description">A parse tree printer for Doctrine Query Language parser.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/queryexception.html">QueryException</a></td><td class="description">Description of QueryException</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a></td><td class="description">A ResultSetMapping describes how a result set of an SQL query maps to a Doctrine result.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/sqlwalker.html">SqlWalker</a></td><td class="description">The SqlWalker is a TreeWalker that walks over a DQL AST and constructs
+the corresponding SQL.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/treewalkeradapter.html">TreeWalkerAdapter</a></td><td class="description">An adapter implementation of the TreeWalker interface. </td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/treewalkerchain.html">TreeWalkerChain</a></td><td class="description">Represents a chain of tree walkers that modify an AST and finally emit output.
+</td></tr>
+</table>
+
+<table class="title">
+<tr><th colspan="2" class="title">Interface Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/query/treewalker.html">TreeWalker</a></td><td class="description">Interface for walkers of DQL ASTs (abstract syntax trees).</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/package-tree.html b/lib/api/doctrine/orm/query/package-tree.html
new file mode 100644
index 000000000..76eb1b1ce
--- /dev/null
+++ b/lib/api/doctrine/orm/query/package-tree.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Query (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Query</h1><ul>
+<li><a href="../../../doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></li>
+<li><a href="../../../doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></li>
+<li><a href="../../../doctrine/orm/query/parserresult.html">Doctrine\ORM\Query\ParserResult</a></li>
+<li><a href="../../../doctrine/orm/query/printer.html">Doctrine\ORM\Query\Printer</a></li>
+<li><a href="../../../doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></li>
+<li><a href="../../../doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></li>
+<li><a href="../../../doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></li>
+<li><a href="../../../doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/parser.html b/lib/api/doctrine/orm/query/parser.html
new file mode 100644
index 000000000..387d3cdbe
--- /dev/null
+++ b/lib/api/doctrine/orm/query/parser.html
@@ -0,0 +1,1315 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Parser (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/parser.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Parser</div>
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 39</div>
+
+<h1>Class Parser</h1>
+
+<pre class="tree"><strong>Parser</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Parser</strong></p>
+
+<div class="comment" id="overview_description"><p>An LL(*) recursive-descent parser for the context-free grammar of the Doctrine Query Language.
+Parses a DQL query, reports any errors in it, and generates an AST.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Janne Vanhala <jpvanhal@cc.hut.fi></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Parser()">Parser</a>(<a href="../../../doctrine/orm/query.html">Query</a> query)</p><p class="description">Creates a new query parser object.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#AbstractSchemaName()">AbstractSchemaName</a>()</p><p class="description">AbstractSchemaName ::= identifier</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\AggregateExpression</td>
+<td class="description"><p class="name"><a href="#AggregateExpression()">AggregateExpression</a>()</p><p class="description">AggregateExpression ::=
+("AVG" | "MAX" | "MIN" | "SUM") "(" ["DISTINCT"] StateFieldPathExpression ")" |
+"COUNT" "(" ["DISTINCT"] (IdentificationVariable | SingleValuedPathExpression) ")"</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#AliasIdentificationVariable()">AliasIdentificationVariable</a>()</p><p class="description">AliasIdentificationVariable = identifier</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#AliasResultVariable()">AliasResultVariable</a>()</p><p class="description">AliasResultVariable ::= identifier</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\ArithmeticExpression</td>
+<td class="description"><p class="name"><a href="#ArithmeticExpression()">ArithmeticExpression</a>()</p><p class="description">ArithmeticExpression ::= SimpleArithmeticExpression | "(" Subselect ")"</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\ArithmeticFactor</td>
+<td class="description"><p class="name"><a href="#ArithmeticFactor()">ArithmeticFactor</a>()</p><p class="description">ArithmeticFactor ::= [("+" | "-")] ArithmeticPrimary</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#ArithmeticPrimary()">ArithmeticPrimary</a>()</p><p class="description">ArithmeticPrimary ::= SingleValuedPathExpression | Literal | "(" SimpleArithmeticExpression ")"
+| FunctionsReturningNumerics | AggregateExpression | FunctionsReturningStrings
+| FunctionsReturningDatetime | IdentificationVariable</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\ArithmeticTerm</td>
+<td class="description"><p class="name"><a href="#ArithmeticTerm()">ArithmeticTerm</a>()</p><p class="description">ArithmeticTerm ::= ArithmeticFactor {("*" | "/") ArithmeticFactor}</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\PathExpression</td>
+<td class="description"><p class="name"><a href="#AssociationPathExpression()">AssociationPathExpression</a>()</p><p class="description">AssociationPathExpression ::= CollectionValuedPathExpression | SingleValuedAssociationPathExpression</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\BetweenExpression</td>
+<td class="description"><p class="name"><a href="#BetweenExpression()">BetweenExpression</a>()</p><p class="description">BetweenExpression ::= ArithmeticExpression ["NOT"] "BETWEEN" ArithmeticExpression "AND" ArithmeticExpression</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#CaseExpression()">CaseExpression</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\CollectionMemberExpression</td>
+<td class="description"><p class="name"><a href="#CollectionMemberExpression()">CollectionMemberExpression</a>()</p><p class="description">CollectionMemberExpression ::= EntityExpression ["NOT"] "MEMBER" ["OF"] CollectionValuedPathExpressionEntityExpression ::= SingleValuedAssociationPathExpression | SimpleEntityExpression
+SimpleEntityExpression ::= IdentificationVariable | InputParameter</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\PathExpression</td>
+<td class="description"><p class="name"><a href="#CollectionValuedPathExpression()">CollectionValuedPathExpression</a>()</p><p class="description">CollectionValuedPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* CollectionValuedAssociationField</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\ComparisonExpression</td>
+<td class="description"><p class="name"><a href="#ComparisonExpression()">ComparisonExpression</a>()</p><p class="description">ComparisonExpression ::= ArithmeticExpression ComparisonOperator ( QuantifiedExpression | ArithmeticExpression )</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#ComparisonOperator()">ComparisonOperator</a>()</p><p class="description">ComparisonOperator ::= "=" | "=" | "!="</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\ConditionalExpression</td>
+<td class="description"><p class="name"><a href="#ConditionalExpression()">ConditionalExpression</a>()</p><p class="description">ConditionalExpression ::= ConditionalTerm {"OR" ConditionalTerm}</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\ConditionalFactor</td>
+<td class="description"><p class="name"><a href="#ConditionalFactor()">ConditionalFactor</a>()</p><p class="description">ConditionalFactor ::= ["NOT"] ConditionalPrimary</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Query\AST\ConditionalPrimary</td>
+<td class="description"><p class="name"><a href="#ConditionalPrimary()">ConditionalPrimary</a>()</p><p class="description">ConditionalPrimary ::= SimpleConditionalExpression | "(" ConditionalExpression ")"</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\ConditionalTerm</td>
+<td class="description"><p class="name"><a href="#ConditionalTerm()">ConditionalTerm</a>()</p><p class="description">ConditionalTerm ::= ConditionalFactor {"AND" ConditionalFactor}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#CustomFunctionsReturningDatetime()">CustomFunctionsReturningDatetime</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#CustomFunctionsReturningNumerics()">CustomFunctionsReturningNumerics</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#CustomFunctionsReturningStrings()">CustomFunctionsReturningStrings</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\DeleteClause</td>
+<td class="description"><p class="name"><a href="#DeleteClause()">DeleteClause</a>()</p><p class="description">DeleteClause ::= "DELETE" ["FROM"] AbstractSchemaName ["AS"] AliasIdentificationVariable</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\DeleteStatement</td>
+<td class="description"><p class="name"><a href="#DeleteStatement()">DeleteStatement</a>()</p><p class="description">DeleteStatement ::= DeleteClause [WhereClause]</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\EmptyCollectionComparisonExpression</td>
+<td class="description"><p class="name"><a href="#EmptyCollectionComparisonExpression()">EmptyCollectionComparisonExpression</a>()</p><p class="description">EmptyCollectionComparisonExpression ::= CollectionValuedPathExpression "IS" ["NOT"] "EMPTY"</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\SingleValuedAssociationPathExpression</td>
+<td class="description"><p class="name"><a href="#EntityExpression()">EntityExpression</a>()</p><p class="description">EntityExpression ::= SingleValuedAssociationPathExpression | SimpleEntityExpression</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\ExistsExpression</td>
+<td class="description"><p class="name"><a href="#ExistsExpression()">ExistsExpression</a>()</p><p class="description">ExistsExpression ::= ["NOT"] "EXISTS" "(" Subselect ")"</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\FromClause</td>
+<td class="description"><p class="name"><a href="#FromClause()">FromClause</a>()</p><p class="description">FromClause ::= "FROM" IdentificationVariableDeclaration {"," IdentificationVariableDeclaration}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#FunctionDeclaration()">FunctionDeclaration</a>()</p><p class="description">FunctionDeclaration ::= FunctionsReturningStrings | FunctionsReturningNumerics | FunctionsReturningDatetime</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#FunctionsReturningDatetime()">FunctionsReturningDatetime</a>()</p><p class="description">FunctionsReturningDateTime ::= "CURRENT_DATE" | "CURRENT_TIME" | "CURRENT_TIMESTAMP"</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#FunctionsReturningNumerics()">FunctionsReturningNumerics</a>()</p><p class="description">FunctionsReturningNumerics ::=
+"LENGTH" "(" StringPrimary ")" |
+"LOCATE" "(" StringPrimary "," StringPrimary ["," SimpleArithmeticExpression]")" |
+"ABS" "(" SimpleArithmeticExpression ")" |
+"SQRT" "(" SimpleArithmeticExpression ")" |
+"MOD" "(" SimpleArithmeticExpression "," SimpleArithmeticExpression ")" |
+"SIZE" "(" CollectionValuedPathExpression ")"</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#FunctionsReturningStrings()">FunctionsReturningStrings</a>()</p><p class="description">FunctionsReturningStrings ::=
+"CONCAT" "(" StringPrimary "," StringPrimary ")" |
+"SUBSTRING" "(" StringPrimary "," SimpleArithmeticExpression "," SimpleArithmeticExpression ")" |
+"TRIM" "(" [["LEADING" | "TRAILING" | "BOTH"] [char] "FROM"] StringPrimary ")" |
+"LOWER" "(" StringPrimary ")" |
+"UPPER" "(" StringPrimary ")"</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\GroupByClause</td>
+<td class="description"><p class="name"><a href="#GroupByClause()">GroupByClause</a>()</p><p class="description">GroupByClause ::= "GROUP" "BY" GroupByItem {"," GroupByItem}</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#GroupByItem()">GroupByItem</a>()</p><p class="description">GroupByItem ::= IdentificationVariable | SingleValuedPathExpression</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\HavingClause</td>
+<td class="description"><p class="name"><a href="#HavingClause()">HavingClause</a>()</p><p class="description">HavingClause ::= "HAVING" ConditionalExpression</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#IdentificationVariable()">IdentificationVariable</a>()</p><p class="description">IdentificationVariable ::= identifier</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\IdentificationVariableDeclaration</td>
+<td class="description"><p class="name"><a href="#IdentificationVariableDeclaration()">IdentificationVariableDeclaration</a>()</p><p class="description">IdentificationVariableDeclaration ::= RangeVariableDeclaration [IndexBy] {JoinVariableDeclaration}</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\InExpression</td>
+<td class="description"><p class="name"><a href="#InExpression()">InExpression</a>()</p><p class="description">InExpression ::= StateFieldPathExpression ["NOT"] "IN" "(" (InParameter {"," InParameter}* | Subselect) ")"</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#InParameter()">InParameter</a>()</p><p class="description">InParameter ::= Literal | InputParameter</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Query\AST\IndexBy</td>
+<td class="description"><p class="name"><a href="#IndexBy()">IndexBy</a>()</p><p class="description">IndexBy ::= "INDEX" "BY" SimpleStateFieldPathExpression</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\InputParameter</td>
+<td class="description"><p class="name"><a href="#InputParameter()">InputParameter</a>()</p><p class="description">InputParameter ::= PositionalParameter | NamedParameter</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Query\AST\Join</td>
+<td class="description"><p class="name"><a href="#Join()">Join</a>()</p><p class="description">Join ::= ["LEFT" ["OUTER"] | "INNER"] "JOIN" JoinAssociationPathExpression
+["AS"] AliasIdentificationVariable ["WITH" ConditionalExpression]</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\JoinAssociationPathExpression</td>
+<td class="description"><p class="name"><a href="#JoinAssociationPathExpression()">JoinAssociationPathExpression</a>()</p><p class="description">JoinAssociationPathExpression ::= IdentificationVariable "." (CollectionValuedAssociationField | SingleValuedAssociationField)</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\JoinVariableDeclaration</td>
+<td class="description"><p class="name"><a href="#JoinVariableDeclaration()">JoinVariableDeclaration</a>()</p><p class="description">JoinVariableDeclaration ::= Join [IndexBy]</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\LikeExpression</td>
+<td class="description"><p class="name"><a href="#LikeExpression()">LikeExpression</a>()</p><p class="description">LikeExpression ::= StringExpression ["NOT"] "LIKE" (string | input_parameter) ["ESCAPE" char]</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#Literal()">Literal</a>()</p><p class="description">Literal ::= string | char | integer | float | boolean</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#NewValue()">NewValue</a>()</p><p class="description">NewValue ::= SimpleArithmeticExpression | StringPrimary | DatetimePrimary | BooleanPrimary |
+EnumPrimary | SimpleEntityExpression | "NULL"NOTE: Since it is not possible to correctly recognize individual types, here is the full
+grammar that needs to be supported:NewValue ::= SimpleArithmeticExpression | "NULL"SimpleArithmeticExpression covers all *Primary grammar rules and also SimplEntityExpression</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\NullComparisonExpression</td>
+<td class="description"><p class="name"><a href="#NullComparisonExpression()">NullComparisonExpression</a>()</p><p class="description">NullComparisonExpression ::= (SingleValuedPathExpression | InputParameter) "IS" ["NOT"] "NULL"</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\OrderByClause</td>
+<td class="description"><p class="name"><a href="#OrderByClause()">OrderByClause</a>()</p><p class="description">OrderByClause ::= "ORDER" "BY" OrderByItem {"," OrderByItem}</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\OrderByItem</td>
+<td class="description"><p class="name"><a href="#OrderByItem()">OrderByItem</a>()</p><p class="description">OrderByItem ::= (ResultVariable | StateFieldPathExpression) ["ASC" | "DESC"]</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#PartialObjectExpression()">PartialObjectExpression</a>()</p><p class="description">PartialObjectExpression ::= "PARTIAL" IdentificationVariable "." PartialFieldSet
+PartialFieldSet ::= "{" SimpleStateField {"," SimpleStateField}* "}"</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\PathExpression</td>
+<td class="description"><p class="name"><a href="#PathExpression()">PathExpression</a>(integer expectedTypes)</p><p class="description">Parses an arbitrary path expression and defers semantical validation
+based on expected types.
+</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\QuantifiedExpression</td>
+<td class="description"><p class="name"><a href="#QuantifiedExpression()">QuantifiedExpression</a>()</p><p class="description">QuantifiedExpression ::= ("ALL" | "ANY" | "SOME") "(" Subselect ")"</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\SelectStatement</td>
+<td class="description"><p class="name"><a href="#QueryLanguage()">QueryLanguage</a>()</p><p class="description">QueryLanguage ::= SelectStatement | UpdateStatement | DeleteStatement</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Query\AST\RangeVariableDeclaration</td>
+<td class="description"><p class="name"><a href="#RangeVariableDeclaration()">RangeVariableDeclaration</a>()</p><p class="description">RangeVariableDeclaration ::= AbstractSchemaName ["AS"] AliasIdentificationVariable</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#ResultVariable()">ResultVariable</a>()</p><p class="description">ResultVariable ::= identifier</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#ScalarExpression()">ScalarExpression</a>()</p><p class="description">ScalarExpression ::= SimpleArithmeticExpression | StringPrimary | DateTimePrimary |
+StateFieldPathExpression | BooleanPrimary | CaseExpression |
+EntityTypeExpression</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\SelectClause</td>
+<td class="description"><p class="name"><a href="#SelectClause()">SelectClause</a>()</p><p class="description">SelectClause ::= "SELECT" ["DISTINCT"] SelectExpression {"," SelectExpression}</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Query\AST\SelectExpression</td>
+<td class="description"><p class="name"><a href="#SelectExpression()">SelectExpression</a>()</p><p class="description">SelectExpression ::=
+IdentificationVariable | StateFieldPathExpression |
+(AggregateExpression | "(" Subselect ")" | ScalarExpression) [["AS"] AliasResultVariable]</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\SelectStatement</td>
+<td class="description"><p class="name"><a href="#SelectStatement()">SelectStatement</a>()</p><p class="description">SelectStatement ::= SelectClause FromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\SimpleArithmeticExpression</td>
+<td class="description"><p class="name"><a href="#SimpleArithmeticExpression()">SimpleArithmeticExpression</a>()</p><p class="description">SimpleArithmeticExpression ::= ArithmeticTerm {("+" | "-") ArithmeticTerm}</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#SimpleConditionalExpression()">SimpleConditionalExpression</a>()</p><p class="description">SimpleConditionalExpression ::=
+ComparisonExpression | BetweenExpression | LikeExpression |
+InExpression | NullComparisonExpression | ExistsExpression |
+EmptyCollectionComparisonExpression | CollectionMemberExpression</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#SimpleEntityExpression()">SimpleEntityExpression</a>()</p><p class="description">SimpleEntityExpression ::= IdentificationVariable | InputParameter</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\SimpleSelectClause</td>
+<td class="description"><p class="name"><a href="#SimpleSelectClause()">SimpleSelectClause</a>()</p><p class="description">SimpleSelectClause ::= "SELECT" ["DISTINCT"] SimpleSelectExpression</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\SimpleSelectExpression</td>
+<td class="description"><p class="name"><a href="#SimpleSelectExpression()">SimpleSelectExpression</a>()</p><p class="description">SimpleSelectExpression ::= StateFieldPathExpression | IdentificationVariable | (AggregateExpression [["AS"] AliasResultVariable])</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\PathExpression</td>
+<td class="description"><p class="name"><a href="#SimpleStateFieldPathExpression()">SimpleStateFieldPathExpression</a>()</p><p class="description">SimpleStateFieldPathExpression ::= IdentificationVariable "." StateField</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\PathExpression</td>
+<td class="description"><p class="name"><a href="#SingleValuedAssociationPathExpression()">SingleValuedAssociationPathExpression</a>()</p><p class="description">SingleValuedAssociationPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* SingleValuedAssociationField</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\PathExpression</td>
+<td class="description"><p class="name"><a href="#SingleValuedPathExpression()">SingleValuedPathExpression</a>()</p><p class="description">SingleValuedPathExpression ::= StateFieldPathExpression | SingleValuedAssociationPathExpression</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\PathExpression</td>
+<td class="description"><p class="name"><a href="#StateFieldPathExpression()">StateFieldPathExpression</a>()</p><p class="description">StateFieldPathExpression ::= SimpleStateFieldPathExpression | SimpleStateFieldAssociationPathExpression</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\StringPrimary</td>
+<td class="description"><p class="name"><a href="#StringExpression()">StringExpression</a>()</p><p class="description">StringExpression ::= StringPrimary | "(" Subselect ")"</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#StringPrimary()">StringPrimary</a>()</p><p class="description">StringPrimary ::= StateFieldPathExpression | string | InputParameter | FunctionsReturningStrings | AggregateExpression</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\Subselect</td>
+<td class="description"><p class="name"><a href="#Subselect()">Subselect</a>()</p><p class="description">Subselect ::= SimpleSelectClause SubselectFromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\SubselectFromClause</td>
+<td class="description"><p class="name"><a href="#SubselectFromClause()">SubselectFromClause</a>()</p><p class="description">SubselectFromClause ::= "FROM" SubselectIdentificationVariableDeclaration {"," SubselectIdentificationVariableDeclaration}</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\SubselectIdentificationVariableDeclaration</td>
+<td class="description"><p class="name"><a href="#SubselectIdentificationVariableDeclaration()">SubselectIdentificationVariableDeclaration</a>()</p><p class="description">SubselectIdentificationVariableDeclaration ::= IdentificationVariableDeclaration | (AssociationPathExpression ["AS"] AliasIdentificationVariable)</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\UpdateClause</td>
+<td class="description"><p class="name"><a href="#UpdateClause()">UpdateClause</a>()</p><p class="description">UpdateClause ::= "UPDATE" AbstractSchemaName ["AS"] AliasIdentificationVariable "SET" UpdateItem {"," UpdateItem}</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\UpdateItem</td>
+<td class="description"><p class="name"><a href="#UpdateItem()">UpdateItem</a>()</p><p class="description">UpdateItem ::= IdentificationVariable "." {StateField | SingleValuedAssociationField} "=" NewValue</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\UpdateStatement</td>
+<td class="description"><p class="name"><a href="#UpdateStatement()">UpdateStatement</a>()</p><p class="description">UpdateStatement ::= UpdateClause [WhereClause]</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\WhereClause</td>
+<td class="description"><p class="name"><a href="#WhereClause()">WhereClause</a>()</p><p class="description">WhereClause ::= "WHERE" ConditionalExpression</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addCustomTreeWalker()">addCustomTreeWalker</a>(string className)</p><p class="description">Adds a custom tree walker for modifying the AST.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#free()">free</a>(boolean deep, integer position)</p><p class="description">Free this parser enabling it to be reused</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\AST\SelectStatement</td>
+<td class="description"><p class="name"><a href="#getAST()">getAST</a>()</p><p class="description">Parse and build AST for the given Query.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#getEntityManager()">getEntityManager</a>()</p><p class="description">Gets the EntityManager used by the parser.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Query\Lexer</td>
+<td class="description"><p class="name"><a href="#getLexer()">getLexer</a>()</p><p class="description">Gets the lexer used by the parser.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Query\ParserResult</td>
+<td class="description"><p class="name"><a href="#getParserResult()">getParserResult</a>()</p><p class="description">Gets the ParserResult that is being filled with information during parsing.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#match()">match</a>(int|string token)</p><p class="description">Attempts to match the given token with the current lookahead token.
+</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/orm/query/parserresult.html">ParserResult</a></td>
+<td class="description"><p class="name"><a href="#parse()">parse</a>()</p><p class="description">Parses a query string.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#semanticalError()">semanticalError</a>(string message, array token)</p><p class="description">Generates a new semantical error.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setCustomOutputTreeWalker()">setCustomOutputTreeWalker</a>(string className)</p><p class="description">Sets a custom tree walker that produces output.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#syntaxError()">syntaxError</a>(string expected, array token)</p><p class="description">Generates a new syntax error.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 137</div>
+<h3 id="Parser()">Parser</h3>
+<code class="signature">public <strong>Parser</strong>(<a href="../../../doctrine/orm/query.html">Query</a> query)</code>
+<div class="details">
+<p>Creates a new query parser object.</p><dl>
+<dt>Parameters:</dt>
+<dd>query - The Query to parse.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 816</div>
+<h3 id="AbstractSchemaName()">AbstractSchemaName</h3>
+<code class="signature">public  string <strong>AbstractSchemaName</strong>()</code>
+<div class="details">
+<p>AbstractSchemaName ::= identifier</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2280</div>
+<h3 id="AggregateExpression()">AggregateExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\AggregateExpression <strong>AggregateExpression</strong>()</code>
+<div class="details">
+<p>AggregateExpression ::=
+("AVG" | "MAX" | "MIN" | "SUM") "(" ["DISTINCT"] StateFieldPathExpression ")" |
+"COUNT" "(" ["DISTINCT"] (IdentificationVariable | SingleValuedPathExpression) ")"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 795</div>
+<h3 id="AliasIdentificationVariable()">AliasIdentificationVariable</h3>
+<code class="signature">public  string <strong>AliasIdentificationVariable</strong>()</code>
+<div class="details">
+<p>AliasIdentificationVariable = identifier</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 841</div>
+<h3 id="AliasResultVariable()">AliasResultVariable</h3>
+<code class="signature">public  string <strong>AliasResultVariable</strong>()</code>
+<div class="details">
+<p>AliasResultVariable ::= identifier</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2065</div>
+<h3 id="ArithmeticExpression()">ArithmeticExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\ArithmeticExpression <strong>ArithmeticExpression</strong>()</code>
+<div class="details">
+<p>ArithmeticExpression ::= SimpleArithmeticExpression | "(" Subselect ")"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2131</div>
+<h3 id="ArithmeticFactor()">ArithmeticFactor</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\ArithmeticFactor <strong>ArithmeticFactor</strong>()</code>
+<div class="details">
+<p>ArithmeticFactor ::= [("+" | "-")] ArithmeticPrimary</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2148</div>
+<h3 id="ArithmeticPrimary()">ArithmeticPrimary</h3>
+<code class="signature">public  void <strong>ArithmeticPrimary</strong>()</code>
+<div class="details">
+<p>ArithmeticPrimary ::= SingleValuedPathExpression | Literal | "(" SimpleArithmeticExpression ")"
+| FunctionsReturningNumerics | AggregateExpression | FunctionsReturningStrings
+| FunctionsReturningDatetime | IdentificationVariable</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2111</div>
+<h3 id="ArithmeticTerm()">ArithmeticTerm</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\ArithmeticTerm <strong>ArithmeticTerm</strong>()</code>
+<div class="details">
+<p>ArithmeticTerm ::= ArithmeticFactor {("*" | "/") ArithmeticFactor}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 943</div>
+<h3 id="AssociationPathExpression()">AssociationPathExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\PathExpression <strong>AssociationPathExpression</strong>()</code>
+<div class="details">
+<p>AssociationPathExpression ::= CollectionValuedPathExpression | SingleValuedAssociationPathExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2354</div>
+<h3 id="BetweenExpression()">BetweenExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\BetweenExpression <strong>BetweenExpression</strong>()</code>
+<div class="details">
+<p>BetweenExpression ::= ArithmeticExpression ["NOT"] "BETWEEN" ArithmeticExpression "AND" ArithmeticExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1646</div>
+<h3 id="CaseExpression()">CaseExpression</h3>
+<code class="signature">public  void <strong>CaseExpression</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1978</div>
+<h3 id="CollectionMemberExpression()">CollectionMemberExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\CollectionMemberExpression <strong>CollectionMemberExpression</strong>()</code>
+<div class="details">
+<p>CollectionMemberExpression ::= EntityExpression ["NOT"] "MEMBER" ["OF"] CollectionValuedPathExpression</p><p>EntityExpression ::= SingleValuedAssociationPathExpression | SimpleEntityExpression
+SimpleEntityExpression ::= IdentificationVariable | InputParameter</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 989</div>
+<h3 id="CollectionValuedPathExpression()">CollectionValuedPathExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\PathExpression <strong>CollectionValuedPathExpression</strong>()</code>
+<div class="details">
+<p>CollectionValuedPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* CollectionValuedAssociationField</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2380</div>
+<h3 id="ComparisonExpression()">ComparisonExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\ComparisonExpression <strong>ComparisonExpression</strong>()</code>
+<div class="details">
+<p>ComparisonExpression ::= ArithmeticExpression ComparisonOperator ( QuantifiedExpression | ArithmeticExpression )</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2526</div>
+<h3 id="ComparisonOperator()">ComparisonOperator</h3>
+<code class="signature">public  string <strong>ComparisonOperator</strong>()</code>
+<div class="details">
+<p>ComparisonOperator ::= "=" | "<" | "<=" | "<>" | ">" | ">=" | "!="</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1775</div>
+<h3 id="ConditionalExpression()">ConditionalExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\ConditionalExpression <strong>ConditionalExpression</strong>()</code>
+<div class="details">
+<p>ConditionalExpression ::= ConditionalTerm {"OR" ConditionalTerm}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1811</div>
+<h3 id="ConditionalFactor()">ConditionalFactor</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\ConditionalFactor <strong>ConditionalFactor</strong>()</code>
+<div class="details">
+<p>ConditionalFactor ::= ["NOT"] ConditionalPrimary</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1831</div>
+<h3 id="ConditionalPrimary()">ConditionalPrimary</h3>
+<code class="signature">public  Doctrine\ORM\Query\AST\ConditionalPrimary <strong>ConditionalPrimary</strong>()</code>
+<div class="details">
+<p>ConditionalPrimary ::= SimpleConditionalExpression | "(" ConditionalExpression ")"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1793</div>
+<h3 id="ConditionalTerm()">ConditionalTerm</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\ConditionalTerm <strong>ConditionalTerm</strong>()</code>
+<div class="details">
+<p>ConditionalTerm ::= ConditionalFactor {"AND" ConditionalFactor}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2643</div>
+<h3 id="CustomFunctionsReturningDatetime()">CustomFunctionsReturningDatetime</h3>
+<code class="signature">public  void <strong>CustomFunctionsReturningDatetime</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2620</div>
+<h3 id="CustomFunctionsReturningNumerics()">CustomFunctionsReturningNumerics</h3>
+<code class="signature">public  void <strong>CustomFunctionsReturningNumerics</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2671</div>
+<h3 id="CustomFunctionsReturningStrings()">CustomFunctionsReturningStrings</h3>
+<code class="signature">public  void <strong>CustomFunctionsReturningStrings</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1111</div>
+<h3 id="DeleteClause()">DeleteClause</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\DeleteClause <strong>DeleteClause</strong>()</code>
+<div class="details">
+<p>DeleteClause ::= "DELETE" ["FROM"] AbstractSchemaName ["AS"] AliasIdentificationVariable</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 761</div>
+<h3 id="DeleteStatement()">DeleteStatement</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\DeleteStatement <strong>DeleteStatement</strong>()</code>
+<div class="details">
+<p>DeleteStatement ::= DeleteClause [WhereClause]</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1953</div>
+<h3 id="EmptyCollectionComparisonExpression()">EmptyCollectionComparisonExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\EmptyCollectionComparisonExpression <strong>EmptyCollectionComparisonExpression</strong>()</code>
+<div class="details">
+<p>EmptyCollectionComparisonExpression ::= CollectionValuedPathExpression "IS" ["NOT"] "EMPTY"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2248</div>
+<h3 id="EntityExpression()">EntityExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\SingleValuedAssociationPathExpression <strong>EntityExpression</strong>()</code>
+<div class="details">
+<p>EntityExpression ::= SingleValuedAssociationPathExpression | SimpleEntityExpression</p><dl>
+<dt>Returns:</dt>
+<dd>| \Doctrine\ORM\Query\AST\SimpleEntityExpression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2503</div>
+<h3 id="ExistsExpression()">ExistsExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\ExistsExpression <strong>ExistsExpression</strong>()</code>
+<div class="details">
+<p>ExistsExpression ::= ["NOT"] "EXISTS" "(" Subselect ")"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1150</div>
+<h3 id="FromClause()">FromClause</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\FromClause <strong>FromClause</strong>()</code>
+<div class="details">
+<p>FromClause ::= "FROM" IdentificationVariableDeclaration {"," IdentificationVariableDeclaration}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2573</div>
+<h3 id="FunctionDeclaration()">FunctionDeclaration</h3>
+<code class="signature">public  void <strong>FunctionDeclaration</strong>()</code>
+<div class="details">
+<p>FunctionDeclaration ::= FunctionsReturningStrings | FunctionsReturningNumerics | FunctionsReturningDatetime</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2633</div>
+<h3 id="FunctionsReturningDatetime()">FunctionsReturningDatetime</h3>
+<code class="signature">public  void <strong>FunctionsReturningDatetime</strong>()</code>
+<div class="details">
+<p>FunctionsReturningDateTime ::= "CURRENT_DATE" | "CURRENT_TIME" | "CURRENT_TIMESTAMP"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2610</div>
+<h3 id="FunctionsReturningNumerics()">FunctionsReturningNumerics</h3>
+<code class="signature">public  void <strong>FunctionsReturningNumerics</strong>()</code>
+<div class="details">
+<p>FunctionsReturningNumerics ::=
+"LENGTH" "(" StringPrimary ")" |
+"LOCATE" "(" StringPrimary "," StringPrimary ["," SimpleArithmeticExpression]")" |
+"ABS" "(" SimpleArithmeticExpression ")" |
+"SQRT" "(" SimpleArithmeticExpression ")" |
+"MOD" "(" SimpleArithmeticExpression "," SimpleArithmeticExpression ")" |
+"SIZE" "(" CollectionValuedPathExpression ")"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2661</div>
+<h3 id="FunctionsReturningStrings()">FunctionsReturningStrings</h3>
+<code class="signature">public  void <strong>FunctionsReturningStrings</strong>()</code>
+<div class="details">
+<p>FunctionsReturningStrings ::=
+"CONCAT" "(" StringPrimary "," StringPrimary ")" |
+"SUBSTRING" "(" StringPrimary "," SimpleArithmeticExpression "," SimpleArithmeticExpression ")" |
+"TRIM" "(" [["LEADING" | "TRAILING" | "BOTH"] [char] "FROM"] StringPrimary ")" |
+"LOWER" "(" StringPrimary ")" |
+"UPPER" "(" StringPrimary ")"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1212</div>
+<h3 id="GroupByClause()">GroupByClause</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\GroupByClause <strong>GroupByClause</strong>()</code>
+<div class="details">
+<p>GroupByClause ::= "GROUP" "BY" GroupByItem {"," GroupByItem}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1316</div>
+<h3 id="GroupByItem()">GroupByItem</h3>
+<code class="signature">public  string <strong>GroupByItem</strong>()</code>
+<div class="details">
+<p>GroupByItem ::= IdentificationVariable | SingleValuedPathExpression</p><dl>
+<dt>Returns:</dt>
+<dd>| \Doctrine\ORM\Query\AST\PathExpression</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1200</div>
+<h3 id="HavingClause()">HavingClause</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\HavingClause <strong>HavingClause</strong>()</code>
+<div class="details">
+<p>HavingClause ::= "HAVING" ConditionalExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 775</div>
+<h3 id="IdentificationVariable()">IdentificationVariable</h3>
+<code class="signature">public  string <strong>IdentificationVariable</strong>()</code>
+<div class="details">
+<p>IdentificationVariable ::= identifier</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1395</div>
+<h3 id="IdentificationVariableDeclaration()">IdentificationVariableDeclaration</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\IdentificationVariableDeclaration <strong>IdentificationVariableDeclaration</strong>()</code>
+<div class="details">
+<p>IdentificationVariableDeclaration ::= RangeVariableDeclaration [IndexBy] {JoinVariableDeclaration}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2401</div>
+<h3 id="InExpression()">InExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\InExpression <strong>InExpression</strong>()</code>
+<div class="details">
+<p>InExpression ::= StateFieldPathExpression ["NOT"] "IN" "(" (InParameter {"," InParameter}* | Subselect) ")"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2039</div>
+<h3 id="InParameter()">InParameter</h3>
+<code class="signature">public  string <strong>InParameter</strong>()</code>
+<div class="details">
+<p>InParameter ::= Literal | InputParameter</p><dl>
+<dt>Returns:</dt>
+<dd>| \Doctrine\ORM\Query\AST\InputParameter</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1594</div>
+<h3 id="IndexBy()">IndexBy</h3>
+<code class="signature">public  Doctrine\ORM\Query\AST\IndexBy <strong>IndexBy</strong>()</code>
+<div class="details">
+<p>IndexBy ::= "INDEX" "BY" SimpleStateFieldPathExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2053</div>
+<h3 id="InputParameter()">InputParameter</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\InputParameter <strong>InputParameter</strong>()</code>
+<div class="details">
+<p>InputParameter ::= PositionalParameter | NamedParameter</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1524</div>
+<h3 id="Join()">Join</h3>
+<code class="signature">public  Doctrine\ORM\Query\AST\Join <strong>Join</strong>()</code>
+<div class="details">
+<p>Join ::= ["LEFT" ["OUTER"] | "INNER"] "JOIN" JoinAssociationPathExpression
+["AS"] AliasIdentificationVariable ["WITH" ConditionalExpression]</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 883</div>
+<h3 id="JoinAssociationPathExpression()">JoinAssociationPathExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\JoinAssociationPathExpression <strong>JoinAssociationPathExpression</strong>()</code>
+<div class="details">
+<p>JoinAssociationPathExpression ::= IdentificationVariable "." (CollectionValuedAssociationField | SingleValuedAssociationField)</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1441</div>
+<h3 id="JoinVariableDeclaration()">JoinVariableDeclaration</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\JoinVariableDeclaration <strong>JoinVariableDeclaration</strong>()</code>
+<div class="details">
+<p>JoinVariableDeclaration ::= Join [IndexBy]</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2437</div>
+<h3 id="LikeExpression()">LikeExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\LikeExpression <strong>LikeExpression</strong>()</code>
+<div class="details">
+<p>LikeExpression ::= StringExpression ["NOT"] "LIKE" (string | input_parameter) ["ESCAPE" char]</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2008</div>
+<h3 id="Literal()">Literal</h3>
+<code class="signature">public  string <strong>Literal</strong>()</code>
+<div class="details">
+<p>Literal ::= string | char | integer | float | boolean</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1377</div>
+<h3 id="NewValue()">NewValue</h3>
+<code class="signature">public  void <strong>NewValue</strong>()</code>
+<div class="details">
+<p>NewValue ::= SimpleArithmeticExpression | StringPrimary | DatetimePrimary | BooleanPrimary |
+EnumPrimary | SimpleEntityExpression | "NULL"</p><p>NOTE: Since it is not possible to correctly recognize individual types, here is the full
+grammar that needs to be supported:</p><p>NewValue ::= SimpleArithmeticExpression | "NULL"</p><p>SimpleArithmeticExpression covers all *Primary grammar rules and also SimplEntityExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2476</div>
+<h3 id="NullComparisonExpression()">NullComparisonExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\NullComparisonExpression <strong>NullComparisonExpression</strong>()</code>
+<div class="details">
+<p>NullComparisonExpression ::= (SingleValuedPathExpression | InputParameter) "IS" ["NOT"] "NULL"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1232</div>
+<h3 id="OrderByClause()">OrderByClause</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\OrderByClause <strong>OrderByClause</strong>()</code>
+<div class="details">
+<p>OrderByClause ::= "ORDER" "BY" OrderByItem {"," OrderByItem}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1339</div>
+<h3 id="OrderByItem()">OrderByItem</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\OrderByItem <strong>OrderByItem</strong>()</code>
+<div class="details">
+<p>OrderByItem ::= (ResultVariable | StateFieldPathExpression) ["ASC" | "DESC"]</p><dl>
+<dt>Todo:</dt>
+<dd>Post 2.0 release. Support general SingleValuedPathExpression instead of only StateFieldPathExpression.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1487</div>
+<h3 id="PartialObjectExpression()">PartialObjectExpression</h3>
+<code class="signature">public  array <strong>PartialObjectExpression</strong>()</code>
+<div class="details">
+<p>PartialObjectExpression ::= "PARTIAL" IdentificationVariable "." PartialFieldSet
+PartialFieldSet ::= "{" SimpleStateField {"," SimpleStateField}* "}"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 912</div>
+<h3 id="PathExpression()">PathExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\PathExpression <strong>PathExpression</strong>(integer expectedTypes)</code>
+<div class="details">
+<p>Parses an arbitrary path expression and defers semantical validation
+based on expected types.</p><p>PathExpression ::= IdentificationVariable {"." identifier}* "." identifier</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2324</div>
+<h3 id="QuantifiedExpression()">QuantifiedExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\QuantifiedExpression <strong>QuantifiedExpression</strong>()</code>
+<div class="details">
+<p>QuantifiedExpression ::= ("ALL" | "ANY" | "SOME") "(" Subselect ")"</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 691</div>
+<h3 id="QueryLanguage()">QueryLanguage</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\SelectStatement <strong>QueryLanguage</strong>()</code>
+<div class="details">
+<p>QueryLanguage ::= SelectStatement | UpdateStatement | DeleteStatement</p><dl>
+<dt>Returns:</dt>
+<dd>| \Doctrine\ORM\Query\AST\UpdateStatement | \Doctrine\ORM\Query\AST\DeleteStatement</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1455</div>
+<h3 id="RangeVariableDeclaration()">RangeVariableDeclaration</h3>
+<code class="signature">public  Doctrine\ORM\Query\AST\RangeVariableDeclaration <strong>RangeVariableDeclaration</strong>()</code>
+<div class="details">
+<p>RangeVariableDeclaration ::= AbstractSchemaName ["AS"] AliasIdentificationVariable</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 862</div>
+<h3 id="ResultVariable()">ResultVariable</h3>
+<code class="signature">public  string <strong>ResultVariable</strong>()</code>
+<div class="details">
+<p>ResultVariable ::= identifier</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1614</div>
+<h3 id="ScalarExpression()">ScalarExpression</h3>
+<code class="signature">public  mixed <strong>ScalarExpression</strong>()</code>
+<div class="details">
+<p>ScalarExpression ::= SimpleArithmeticExpression | StringPrimary | DateTimePrimary |
+StateFieldPathExpression | BooleanPrimary | CaseExpression |
+EntityTypeExpression</p><dl>
+<dt>Returns:</dt>
+<dd>One of the possible expressions or subexpressions.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1019</div>
+<h3 id="SelectClause()">SelectClause</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\SelectClause <strong>SelectClause</strong>()</code>
+<div class="details">
+<p>SelectClause ::= "SELECT" ["DISTINCT"] SelectExpression {"," SelectExpression}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1662</div>
+<h3 id="SelectExpression()">SelectExpression</h3>
+<code class="signature">public  Doctrine\ORM\Query\AST\SelectExpression <strong>SelectExpression</strong>()</code>
+<div class="details">
+<p>SelectExpression ::=
+IdentificationVariable | StateFieldPathExpression |
+(AggregateExpression | "(" Subselect ")" | ScalarExpression) [["AS"] AliasResultVariable]</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 723</div>
+<h3 id="SelectStatement()">SelectStatement</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\SelectStatement <strong>SelectStatement</strong>()</code>
+<div class="details">
+<p>SelectStatement ::= SelectClause FromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2091</div>
+<h3 id="SimpleArithmeticExpression()">SimpleArithmeticExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\SimpleArithmeticExpression <strong>SimpleArithmeticExpression</strong>()</code>
+<div class="details">
+<p>SimpleArithmeticExpression ::= ArithmeticTerm {("+" | "-") ArithmeticTerm}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1865</div>
+<h3 id="SimpleConditionalExpression()">SimpleConditionalExpression</h3>
+<code class="signature">public  void <strong>SimpleConditionalExpression</strong>()</code>
+<div class="details">
+<p>SimpleConditionalExpression ::=
+ComparisonExpression | BetweenExpression | LikeExpression |
+InExpression | NullComparisonExpression | ExistsExpression |
+EmptyCollectionComparisonExpression | CollectionMemberExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2264</div>
+<h3 id="SimpleEntityExpression()">SimpleEntityExpression</h3>
+<code class="signature">public  string <strong>SimpleEntityExpression</strong>()</code>
+<div class="details">
+<p>SimpleEntityExpression ::= IdentificationVariable | InputParameter</p><dl>
+<dt>Returns:</dt>
+<dd>| \Doctrine\ORM\Query\AST\InputParameter</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1047</div>
+<h3 id="SimpleSelectClause()">SimpleSelectClause</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\SimpleSelectClause <strong>SimpleSelectClause</strong>()</code>
+<div class="details">
+<p>SimpleSelectClause ::= "SELECT" ["DISTINCT"] SimpleSelectExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1733</div>
+<h3 id="SimpleSelectExpression()">SimpleSelectExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\SimpleSelectExpression <strong>SimpleSelectExpression</strong>()</code>
+<div class="details">
+<p>SimpleSelectExpression ::= StateFieldPathExpression | IdentificationVariable | (AggregateExpression [["AS"] AliasResultVariable])</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 999</div>
+<h3 id="SimpleStateFieldPathExpression()">SimpleStateFieldPathExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\PathExpression <strong>SimpleStateFieldPathExpression</strong>()</code>
+<div class="details">
+<p>SimpleStateFieldPathExpression ::= IdentificationVariable "." StateField</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 979</div>
+<h3 id="SingleValuedAssociationPathExpression()">SingleValuedAssociationPathExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\PathExpression <strong>SingleValuedAssociationPathExpression</strong>()</code>
+<div class="details">
+<p>SingleValuedAssociationPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* SingleValuedAssociationField</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 956</div>
+<h3 id="SingleValuedPathExpression()">SingleValuedPathExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\PathExpression <strong>SingleValuedPathExpression</strong>()</code>
+<div class="details">
+<p>SingleValuedPathExpression ::= StateFieldPathExpression | SingleValuedAssociationPathExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 969</div>
+<h3 id="StateFieldPathExpression()">StateFieldPathExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\PathExpression <strong>StateFieldPathExpression</strong>()</code>
+<div class="details">
+<p>StateFieldPathExpression ::= SimpleStateFieldPathExpression | SimpleStateFieldAssociationPathExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2197</div>
+<h3 id="StringExpression()">StringExpression</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\StringPrimary <strong>StringExpression</strong>()</code>
+<div class="details">
+<p>StringExpression ::= StringPrimary | "(" Subselect ")"</p><dl>
+<dt>Returns:</dt>
+<dd>| \Doctrine]ORM\Query\AST\Subselect</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 2217</div>
+<h3 id="StringPrimary()">StringPrimary</h3>
+<code class="signature">public  void <strong>StringPrimary</strong>()</code>
+<div class="details">
+<p>StringPrimary ::= StateFieldPathExpression | string | InputParameter | FunctionsReturningStrings | AggregateExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1253</div>
+<h3 id="Subselect()">Subselect</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\Subselect <strong>Subselect</strong>()</code>
+<div class="details">
+<p>Subselect ::= SimpleSelectClause SubselectFromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1169</div>
+<h3 id="SubselectFromClause()">SubselectFromClause</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\SubselectFromClause <strong>SubselectFromClause</strong>()</code>
+<div class="details">
+<p>SubselectFromClause ::= "FROM" SubselectIdentificationVariableDeclaration {"," SubselectIdentificationVariableDeclaration}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1420</div>
+<h3 id="SubselectIdentificationVariableDeclaration()">SubselectIdentificationVariableDeclaration</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\SubselectIdentificationVariableDeclaration <strong>SubselectIdentificationVariableDeclaration</strong>()</code>
+<div class="details">
+<p>SubselectIdentificationVariableDeclaration ::= IdentificationVariableDeclaration | (AssociationPathExpression ["AS"] AliasIdentificationVariable)</p><dl>
+<dt>Returns:</dt>
+<dd>| \Doctrine\ORM\Query\AST\IdentificationVariableDeclaration</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1065</div>
+<h3 id="UpdateClause()">UpdateClause</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\UpdateClause <strong>UpdateClause</strong>()</code>
+<div class="details">
+<p>UpdateClause ::= "UPDATE" AbstractSchemaName ["AS"] AliasIdentificationVariable "SET" UpdateItem {"," UpdateItem}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1283</div>
+<h3 id="UpdateItem()">UpdateItem</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\UpdateItem <strong>UpdateItem</strong>()</code>
+<div class="details">
+<p>UpdateItem ::= IdentificationVariable "." {StateField | SingleValuedAssociationField} "=" NewValue</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 747</div>
+<h3 id="UpdateStatement()">UpdateStatement</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\UpdateStatement <strong>UpdateStatement</strong>()</code>
+<div class="details">
+<p>UpdateStatement ::= UpdateClause [WhereClause]</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 1188</div>
+<h3 id="WhereClause()">WhereClause</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\WhereClause <strong>WhereClause</strong>()</code>
+<div class="details">
+<p>WhereClause ::= "WHERE" ConditionalExpression</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 161</div>
+<h3 id="addCustomTreeWalker()">addCustomTreeWalker</h3>
+<code class="signature">public  void <strong>addCustomTreeWalker</strong>(string className)</code>
+<div class="details">
+<p>Adds a custom tree walker for modifying the AST.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 249</div>
+<h3 id="free()">free</h3>
+<code class="signature">public  void <strong>free</strong>(boolean deep, integer position)</code>
+<div class="details">
+<p>Free this parser enabling it to be reused</p><dl>
+<dt>Parameters:</dt>
+<dd>deep - Whether to clean peek and reset errors</dd>
+<dd>position - Position to reset</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 203</div>
+<h3 id="getAST()">getAST</h3>
+<code class="signature">public  \Doctrine\ORM\Query\AST\SelectStatement <strong>getAST</strong>()</code>
+<div class="details">
+<p>Parse and build AST for the given Query.</p><dl>
+<dt>Returns:</dt>
+<dd>| \Doctrine\ORM\Query\AST\UpdateStatement | \Doctrine\ORM\Query\AST\DeleteStatement</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 191</div>
+<h3 id="getEntityManager()">getEntityManager</h3>
+<code class="signature">public  <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>getEntityManager</strong>()</code>
+<div class="details">
+<p>Gets the EntityManager used by the parser.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 171</div>
+<h3 id="getLexer()">getLexer</h3>
+<code class="signature">public  Doctrine\ORM\Query\Lexer <strong>getLexer</strong>()</code>
+<div class="details">
+<p>Gets the lexer used by the parser.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 181</div>
+<h3 id="getParserResult()">getParserResult</h3>
+<code class="signature">public  Doctrine\ORM\Query\ParserResult <strong>getParserResult</strong>()</code>
+<div class="details">
+<p>Gets the ParserResult that is being filled with information during parsing.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 234</div>
+<h3 id="match()">match</h3>
+<code class="signature">public  void <strong>match</strong>(int|string token)</code>
+<div class="details">
+<p>Attempts to match the given token with the current lookahead token.</p><p>If they match, updates the lookahead token; otherwise raises a syntax
+error.</p><dl>
+<dt>Parameters:</dt>
+<dd>token - type or value</dd>
+<dt>Throws:</dt>
+<dd><a href="../../../doctrine/orm/query/queryexception.html">If the tokens dont match.</a></dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 268</div>
+<h3 id="parse()">parse</h3>
+<code class="signature">public  <a href="../../../doctrine/orm/query/parserresult.html">ParserResult</a> <strong>parse</strong>()</code>
+<div class="details">
+<p>Parses a query string.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 353</div>
+<h3 id="semanticalError()">semanticalError</h3>
+<code class="signature">public  void <strong>semanticalError</strong>(string message, array token)</code>
+<div class="details">
+<p>Generates a new semantical error.</p><dl>
+<dt>Parameters:</dt>
+<dd>message - Optional message.</dd>
+<dd>token - Optional token.</dd>
+<dt>Throws:</dt>
+<dd>\Doctrine\ORM\Query\QueryException</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 151</div>
+<h3 id="setCustomOutputTreeWalker()">setCustomOutputTreeWalker</h3>
+<code class="signature">public  void <strong>setCustomOutputTreeWalker</strong>(string className)</code>
+<div class="details">
+<p>Sets a custom tree walker that produces output.
+This tree walker will be run last over the AST, after any other walkers.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Parser.php at line 321</div>
+<h3 id="syntaxError()">syntaxError</h3>
+<code class="signature">public  void <strong>syntaxError</strong>(string expected, array token)</code>
+<div class="details">
+<p>Generates a new syntax error.</p><dl>
+<dt>Parameters:</dt>
+<dd>expected - Expected string.</dd>
+<dd>token - Got token.</dd>
+<dt>Throws:</dt>
+<dd>\Doctrine\ORM\Query\QueryException</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/parser.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/parserresult.html b/lib/api/doctrine/orm/query/parserresult.html
new file mode 100644
index 000000000..aa6112a77
--- /dev/null
+++ b/lib/api/doctrine/orm/query/parserresult.html
@@ -0,0 +1,218 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ParserResult (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/parserresult.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\ParserResult</div>
+<div class="location">/Doctrine/ORM/Query/ParserResult.php at line 36</div>
+
+<h1>Class ParserResult</h1>
+
+<pre class="tree"><strong>ParserResult</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ParserResult</strong></p>
+
+<div class="comment" id="overview_description"><p>Encapsulates the resulting components from a DQL query parsing process that
+can be serialized.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Janne Vanhala <jpvanhal@cc.hut.fi></dd>
+<dt>Author		Roman:</dt>
+<dd>Borschel <roman@code-factory.org></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code><a href="http://www.doctrine-project.org">http://www.doctrine-project.org</a></code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ParserResult()">ParserResult</a>()</p><p class="description">Initializes a new instance of the ParserResult class.
+</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addParameterMapping()">addParameterMapping</a>(string|integer dqlPosition, integer sqlPosition)</p><p class="description">Adds a DQL to SQL parameter mapping. </p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getParameterMappings()">getParameterMappings</a>()</p><p class="description">Gets all DQL to SQL parameter mappings.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a></td>
+<td class="description"><p class="name"><a href="#getResultSetMapping()">getResultSetMapping</a>()</p><p class="description">Gets the ResultSetMapping for the parsed query.</p></td>
+</tr>
+<tr>
+<td class="type"> \Doctrine\ORM\Query\Exec\AbstractSqlExecutor</td>
+<td class="description"><p class="name"><a href="#getSqlExecutor()">getSqlExecutor</a>()</p><p class="description">Gets the SQL executor used by this ParserResult.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getSqlParameterPositions()">getSqlParameterPositions</a>(string|integer dqlPosition)</p><p class="description">Gets the SQL parameter positions for a DQL parameter name/position.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setResultSetMapping()">setResultSetMapping</a>(<a href="../../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a> rsm)</p><p class="description">Sets the ResultSetMapping of the parsed query.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setSqlExecutor()">setSqlExecutor</a>(\Doctrine\ORM\Query\Exec\AbstractSqlExecutor executor)</p><p class="description">Sets the SQL executor that should be used for this ParserResult.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/ParserResult.php at line 63</div>
+<h3 id="ParserResult()">ParserResult</h3>
+<code class="signature">public <strong>ParserResult</strong>()</code>
+<div class="details">
+<p>Initializes a new instance of the <tt>ParserResult</tt> class.
+The new instance is initialized with an empty <tt>ResultSetMapping</tt>.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/ParserResult.php at line 116</div>
+<h3 id="addParameterMapping()">addParameterMapping</h3>
+<code class="signature">public  void <strong>addParameterMapping</strong>(string|integer dqlPosition, integer sqlPosition)</code>
+<div class="details">
+<p>Adds a DQL to SQL parameter mapping. One DQL parameter name/position can map to
+several SQL parameter positions.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ParserResult.php at line 126</div>
+<h3 id="getParameterMappings()">getParameterMappings</h3>
+<code class="signature">public  array <strong>getParameterMappings</strong>()</code>
+<div class="details">
+<p>Gets all DQL to SQL parameter mappings.</p><dl>
+<dt>Returns:</dt>
+<dd>The parameter mappings.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ParserResult.php at line 74</div>
+<h3 id="getResultSetMapping()">getResultSetMapping</h3>
+<code class="signature">public  <a href="../../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a> <strong>getResultSetMapping</strong>()</code>
+<div class="details">
+<p>Gets the ResultSetMapping for the parsed query.</p><dl>
+<dt>Returns:</dt>
+<dd>The result set mapping of the parsed query or NULL if the query is not a SELECT query.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ParserResult.php at line 104</div>
+<h3 id="getSqlExecutor()">getSqlExecutor</h3>
+<code class="signature">public  \Doctrine\ORM\Query\Exec\AbstractSqlExecutor <strong>getSqlExecutor</strong>()</code>
+<div class="details">
+<p>Gets the SQL executor used by this ParserResult.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ParserResult.php at line 137</div>
+<h3 id="getSqlParameterPositions()">getSqlParameterPositions</h3>
+<code class="signature">public  array <strong>getSqlParameterPositions</strong>(string|integer dqlPosition)</code>
+<div class="details">
+<p>Gets the SQL parameter positions for a DQL parameter name/position.</p><dl>
+<dt>Parameters:</dt>
+<dd>dqlPosition - The name or position of the DQL parameter.</dd>
+<dt>Returns:</dt>
+<dd>The positions of the corresponding SQL parameters.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ParserResult.php at line 84</div>
+<h3 id="setResultSetMapping()">setResultSetMapping</h3>
+<code class="signature">public  void <strong>setResultSetMapping</strong>(<a href="../../../doctrine/orm/query/resultsetmapping.html">ResultSetMapping</a> rsm)</code>
+<div class="details">
+<p>Sets the ResultSetMapping of the parsed query.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ParserResult.php at line 94</div>
+<h3 id="setSqlExecutor()">setSqlExecutor</h3>
+<code class="signature">public  void <strong>setSqlExecutor</strong>(\Doctrine\ORM\Query\Exec\AbstractSqlExecutor executor)</code>
+<div class="details">
+<p>Sets the SQL executor that should be used for this ParserResult.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/parserresult.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/printer.html b/lib/api/doctrine/orm/query/printer.html
new file mode 100644
index 000000000..e97801781
--- /dev/null
+++ b/lib/api/doctrine/orm/query/printer.html
@@ -0,0 +1,194 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Printer (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/printer.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\Printer</div>
+<div class="location">/Doctrine/ORM/Query/Printer.php at line 33</div>
+
+<h1>Class Printer</h1>
+
+<pre class="tree"><strong>Printer</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>Printer</strong></p>
+
+<div class="comment" id="overview_description"><p>A parse tree printer for Doctrine Query Language parser.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Janne Vanhala <jpvanhal@cc.hut.fi></dd>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code><a href="http://www.phpdoctrine.org">http://www.phpdoctrine.org</a></code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  int</td>
+<td class="description"><p class="name"><a href="#_indent">$_indent</a></p><p class="description">Current indentation level</p></td>
+</tr>
+<tr>
+<td class="type">protected  bool</td>
+<td class="description"><p class="name"><a href="#_silent">$_silent</a></p><p class="description">Defines whether parse tree is printed (default, false) or not (true).</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#Printer()">Printer</a>(bool silent)</p><p class="description">Constructs a new parse tree printer.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#endProduction()">endProduction</a>()</p><p class="description">Decreases indentation level by one and prints a closing parenthesis.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#println()">println</a>(string str)</p><p class="description">Prints text indented with spaces depending on current indentation level.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#startProduction()">startProduction</a>(string name)</p><p class="description">Prints an opening parenthesis followed by production name and increases
+indentation level by one.
+</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Printer.php at line 40</div>
+<h3 id="_indent">_indent</h3>
+<code class="signature">protected  int <strong>$_indent</strong></code>
+<div class="details">
+<p>Current indentation level</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Printer.php at line 47</div>
+<h3 id="_silent">_silent</h3>
+<code class="signature">protected  bool <strong>$_silent</strong></code>
+<div class="details">
+<p>Defines whether parse tree is printed (default, false) or not (true).</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Printer.php at line 54</div>
+<h3 id="Printer()">Printer</h3>
+<code class="signature">public <strong>Printer</strong>(bool silent)</code>
+<div class="details">
+<p>Constructs a new parse tree printer.</p><dl>
+<dt>Parameters:</dt>
+<dd>silent - Parse tree will not be printed if true.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/Printer.php at line 78</div>
+<h3 id="endProduction()">endProduction</h3>
+<code class="signature">public  void <strong>endProduction</strong>()</code>
+<div class="details">
+<p>Decreases indentation level by one and prints a closing parenthesis.</p><p>This method is called after executing a production.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Printer.php at line 89</div>
+<h3 id="println()">println</h3>
+<code class="signature">public  void <strong>println</strong>(string str)</code>
+<div class="details">
+<p>Prints text indented with spaces depending on current indentation level.</p><dl>
+<dt>Parameters:</dt>
+<dd>str - text</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/Printer.php at line 67</div>
+<h3 id="startProduction()">startProduction</h3>
+<code class="signature">public  void <strong>startProduction</strong>(string name)</code>
+<div class="details">
+<p>Prints an opening parenthesis followed by production name and increases
+indentation level by one.</p><p>This method is called before executing a production.</p><dl>
+<dt>Parameters:</dt>
+<dd>name - production name</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/printer.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/queryexception.html b/lib/api/doctrine/orm/query/queryexception.html
new file mode 100644
index 000000000..d19dafc97
--- /dev/null
+++ b/lib/api/doctrine/orm/query/queryexception.html
@@ -0,0 +1,271 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>QueryException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/queryexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\QueryException</div>
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 38</div>
+
+<h1>Class QueryException</h1>
+
+<pre class="tree">Class:QueryException - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>QueryException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>QueryException</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>Description of QueryException</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision: 3938 $</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#associationPathCompositeKeyNotSupported()">associationPathCompositeKeyNotSupported</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#associationPathInverseSideNotSupported()">associationPathInverseSideNotSupported</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidLiteral()">invalidLiteral</a>(mixed literal)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidParameterFormat()">invalidParameterFormat</a>(mixed value)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidParameterNumber()">invalidParameterNumber</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidParameterPosition()">invalidParameterPosition</a>(mixed pos)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidPathExpression()">invalidPathExpression</a>(mixed pathExpr)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#iterateWithFetchJoinCollectionNotAllowed()">iterateWithFetchJoinCollectionNotAllowed</a>(Doctrine\ORM\Mapping\AssociationMapping assoc)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#iterateWithFetchJoinNotAllowed()">iterateWithFetchJoinNotAllowed</a>(mixed assoc)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#overwritingJoinConditionsNotYetSupported()">overwritingJoinConditionsNotYetSupported</a>(mixed assoc)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#partialObjectsAreDangerous()">partialObjectsAreDangerous</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#semanticalError()">semanticalError</a>(mixed message)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#syntaxError()">syntaxError</a>(mixed message)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#unknownParameter()">unknownParameter</a>(mixed key)</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 126</div>
+<h3 id="associationPathCompositeKeyNotSupported()">associationPathCompositeKeyNotSupported</h3>
+<code class="signature">public static  void <strong>associationPathCompositeKeyNotSupported</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 111</div>
+<h3 id="associationPathInverseSideNotSupported()">associationPathInverseSideNotSupported</h3>
+<code class="signature">public static  void <strong>associationPathInverseSideNotSupported</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 78</div>
+<h3 id="invalidLiteral()">invalidLiteral</h3>
+<code class="signature">public static  void <strong>invalidLiteral</strong>(mixed literal)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 60</div>
+<h3 id="invalidParameterFormat()">invalidParameterFormat</h3>
+<code class="signature">public static  void <strong>invalidParameterFormat</strong>(mixed value)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 55</div>
+<h3 id="invalidParameterNumber()">invalidParameterNumber</h3>
+<code class="signature">public static  void <strong>invalidParameterNumber</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 50</div>
+<h3 id="invalidParameterPosition()">invalidParameterPosition</h3>
+<code class="signature">public static  void <strong>invalidParameterPosition</strong>(mixed pos)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 70</div>
+<h3 id="invalidPathExpression()">invalidPathExpression</h3>
+<code class="signature">public static  void <strong>invalidPathExpression</strong>(mixed pathExpr)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 85</div>
+<h3 id="iterateWithFetchJoinCollectionNotAllowed()">iterateWithFetchJoinCollectionNotAllowed</h3>
+<code class="signature">public static  void <strong>iterateWithFetchJoinCollectionNotAllowed</strong>(Doctrine\ORM\Mapping\AssociationMapping assoc)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 119</div>
+<h3 id="iterateWithFetchJoinNotAllowed()">iterateWithFetchJoinNotAllowed</h3>
+<code class="signature">public static  void <strong>iterateWithFetchJoinNotAllowed</strong>(mixed assoc)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 102</div>
+<h3 id="overwritingJoinConditionsNotYetSupported()">overwritingJoinConditionsNotYetSupported</h3>
+<code class="signature">public static  void <strong>overwritingJoinConditionsNotYetSupported</strong>(mixed assoc)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 93</div>
+<h3 id="partialObjectsAreDangerous()">partialObjectsAreDangerous</h3>
+<code class="signature">public static  void <strong>partialObjectsAreDangerous</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 45</div>
+<h3 id="semanticalError()">semanticalError</h3>
+<code class="signature">public static  void <strong>semanticalError</strong>(mixed message)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 40</div>
+<h3 id="syntaxError()">syntaxError</h3>
+<code class="signature">public static  void <strong>syntaxError</strong>(mixed message)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/QueryException.php at line 65</div>
+<h3 id="unknownParameter()">unknownParameter</h3>
+<code class="signature">public static  void <strong>unknownParameter</strong>(mixed key)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/queryexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/resultsetmapping.html b/lib/api/doctrine/orm/query/resultsetmapping.html
new file mode 100644
index 000000000..ac5e76f2c
--- /dev/null
+++ b/lib/api/doctrine/orm/query/resultsetmapping.html
@@ -0,0 +1,607 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ResultSetMapping (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/resultsetmapping.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\ResultSetMapping</div>
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 38</div>
+
+<h1>Class ResultSetMapping</h1>
+
+<pre class="tree"><strong>ResultSetMapping</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ResultSetMapping</strong></p>
+
+<div class="comment" id="overview_description"><p>A ResultSetMapping describes how a result set of an SQL query maps to a Doctrine result.</p><p>IMPORTANT NOTE:
+The properties of this class are only public for fast internal READ access and to (drastically)
+reduce the size of serialized instances for more effective caching due to better (un-)serialization
+performance.</p><p><b>Users should use the public methods.</b></p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Todo:</dt>
+<dd>Think about whether the number of lookup maps can be reduced.</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#aliasMap">$aliasMap</a></p><p class="description">Maps alias names to class names.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#columnOwnerMap">$columnOwnerMap</a></p><p class="description">Maps column names in the result set to the alias they belong to.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#declaringClasses">$declaringClasses</a></p><p class="description">Map from column names to class names that declare the field the column is mapped to.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#discriminatorColumns">$discriminatorColumns</a></p><p class="description">List of columns in the result set that are used as discriminator columns.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#fieldMappings">$fieldMappings</a></p><p class="description">Maps column names in the result set to field names for each class.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#indexByMap">$indexByMap</a></p><p class="description">Maps alias names to field names that should be used for indexing.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isMixed">$isMixed</a></p><p class="description">Whether the result is mixed (contains scalar values together with field values).</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#metaMappings">$metaMappings</a></p><p class="description">Maps column names of meta columns (foreign keys, discriminator columns, ...) to field names.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#parentAliasMap">$parentAliasMap</a></p><p class="description">Maps alias names to parent alias names.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#relationMap">$relationMap</a></p><p class="description">Maps alias names to related association field names.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#scalarMappings">$scalarMappings</a></p><p class="description">Maps column names in the result set to the alias/field name to use in the mapped result.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addEntityResult()">addEntityResult</a>(string class, string alias)</p><p class="description">Adds an entity result to this ResultSetMapping.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addFieldResult()">addFieldResult</a>(string alias, string columnName, string fieldName, string declaringClass)</p><p class="description">Adds a field to the result that belongs to an entity or joined entity.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addIndexBy()">addIndexBy</a>(string alias, string fieldName)</p><p class="description">Sets a field to use for indexing an entity result or joined entity result.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addJoinedEntityResult()">addJoinedEntityResult</a>(string class, string alias, string parentAlias, object relation)</p><p class="description">Adds a joined entity result.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addMetaResult()">addMetaResult</a>(mixed alias, mixed columnName, mixed fieldName, $fieldName )</p><p class="description">Adds a meta column (foreign key or discriminator column) to the result set.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addScalarResult()">addScalarResult</a>(string columnName, string alias)</p><p class="description">Adds a scalar result mapping.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getAliasMap()">getAliasMap</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getClassName()">getClassName</a>(string alias)</p><p class="description">Gets the name of the class of an entity result or joined entity result,
+identified by the given unique alias.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDeclaringClass()">getDeclaringClass</a>(string columnName)</p><p class="description">Gets the name of the class that owns a field mapping for the specified column.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getEntityAlias()">getEntityAlias</a>(string columnName)</p><p class="description">Gets the alias of the class that owns a field mapping for the specified column.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getEntityResultCount()">getEntityResultCount</a>()</p><p class="description">Gets the number of different entities that appear in the mapped result.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getFieldName()">getFieldName</a>(string columnName)</p><p class="description">Gets the field name for a column name.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getParentAlias()">getParentAlias</a>(string alias)</p><p class="description">Gets the parent alias of the given alias.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a></td>
+<td class="description"><p class="name"><a href="#getRelation()">getRelation</a>(string alias)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getScalarAlias()">getScalarAlias</a>(string columnName)</p><p class="description">Gets the field alias for a column that is mapped as a scalar value.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#hasIndexBy()">hasIndexBy</a>(string alias)</p><p class="description">Checks whether an entity result or joined entity result with a given alias has
+a field set for indexing.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#hasParentAlias()">hasParentAlias</a>(string alias)</p><p class="description">Checks whether the given alias has a parent alias.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isFieldResult()">isFieldResult</a>(string columnName)</p><p class="description">Checks whether the column with the given name is mapped as a field result
+as part of an entity result or joined entity result.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isMixedResult()">isMixedResult</a>()</p><p class="description">Checks whether this ResultSetMapping defines a mixed result.
+</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isRelation()">isRelation</a>(string alias)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isScalarResult()">isScalarResult</a>(mixed columnName, string columName)</p><p class="description">Checks whether a column with a given name is mapped as a scalar result.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setDiscriminatorColumn()">setDiscriminatorColumn</a>(string alias, string discrColumn)</p><p class="description">Sets a discriminator column for an entity result or joined entity result.
+</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 53</div>
+<h3 id="aliasMap">aliasMap</h3>
+<code class="signature">public  array <strong>$aliasMap</strong> = array()</code>
+<div class="details">
+<p>Maps alias names to class names.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 95</div>
+<h3 id="columnOwnerMap">columnOwnerMap</h3>
+<code class="signature">public  array <strong>$columnOwnerMap</strong> = array()</code>
+<div class="details">
+<p>Maps column names in the result set to the alias they belong to.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 116</div>
+<h3 id="declaringClasses">declaringClasses</h3>
+<code class="signature">public  array <strong>$declaringClasses</strong> = array()</code>
+<div class="details">
+<p>Map from column names to class names that declare the field the column is mapped to.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 102</div>
+<h3 id="discriminatorColumns">discriminatorColumns</h3>
+<code class="signature">public  array <strong>$discriminatorColumns</strong> = array()</code>
+<div class="details">
+<p>List of columns in the result set that are used as discriminator columns.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 74</div>
+<h3 id="fieldMappings">fieldMappings</h3>
+<code class="signature">public  array <strong>$fieldMappings</strong> = array()</code>
+<div class="details">
+<p>Maps column names in the result set to field names for each class.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 109</div>
+<h3 id="indexByMap">indexByMap</h3>
+<code class="signature">public  array <strong>$indexByMap</strong> = array()</code>
+<div class="details">
+<p>Maps alias names to field names that should be used for indexing.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 46</div>
+<h3 id="isMixed">isMixed</h3>
+<code class="signature">public  boolean <strong>$isMixed</strong> = false</code>
+<div class="details">
+<p>Whether the result is mixed (contains scalar values together with field values).</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 88</div>
+<h3 id="metaMappings">metaMappings</h3>
+<code class="signature">public  array <strong>$metaMappings</strong> = array()</code>
+<div class="details">
+<p>Maps column names of meta columns (foreign keys, discriminator columns, ...) to field names.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 67</div>
+<h3 id="parentAliasMap">parentAliasMap</h3>
+<code class="signature">public  array <strong>$parentAliasMap</strong> = array()</code>
+<div class="details">
+<p>Maps alias names to parent alias names.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 60</div>
+<h3 id="relationMap">relationMap</h3>
+<code class="signature">public  array <strong>$relationMap</strong> = array()</code>
+<div class="details">
+<p>Maps alias names to related association field names.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 81</div>
+<h3 id="scalarMappings">scalarMappings</h3>
+<code class="signature">public  array <strong>$scalarMappings</strong> = array()</code>
+<div class="details">
+<p>Maps column names in the result set to the alias/field name to use in the mapped result.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 126</div>
+<h3 id="addEntityResult()">addEntityResult</h3>
+<code class="signature">public  void <strong>addEntityResult</strong>(string class, string alias)</code>
+<div class="details">
+<p>Adds an entity result to this ResultSetMapping.</p><dl>
+<dt>Parameters:</dt>
+<dd>class - The class name of the entity.</dd>
+<dd>alias - The alias for the class. The alias must be unique among all entity results or joined entity results within this ResultSetMapping.</dd>
+<dt>Todo:</dt>
+<dd>Rename: addRootEntity</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 197</div>
+<h3 id="addFieldResult()">addFieldResult</h3>
+<code class="signature">public  void <strong>addFieldResult</strong>(string alias, string columnName, string fieldName, string declaringClass)</code>
+<div class="details">
+<p>Adds a field to the result that belongs to an entity or joined entity.</p><dl>
+<dt>Parameters:</dt>
+<dd>alias - The alias of the root entity or joined entity to which the field belongs.</dd>
+<dd>columnName - The name of the column in the SQL result set.</dd>
+<dd>fieldName - The name of the field on the declaring class.</dd>
+<dd>declaringClass - The name of the class that declares/owns the specified field. When $alias refers to a superclass in a mapped hierarchy but the field $fieldName is defined on a subclass, specify that here. If not specified, the field is assumed to belong to the class designated by $alias.</dd>
+<dt>Todo:</dt>
+<dd>Rename: addField</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 153</div>
+<h3 id="addIndexBy()">addIndexBy</h3>
+<code class="signature">public  void <strong>addIndexBy</strong>(string alias, string fieldName)</code>
+<div class="details">
+<p>Sets a field to use for indexing an entity result or joined entity result.</p><dl>
+<dt>Parameters:</dt>
+<dd>alias - The alias of an entity result or joined entity result.</dd>
+<dd>fieldName - The name of the field to use for indexing.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 219</div>
+<h3 id="addJoinedEntityResult()">addJoinedEntityResult</h3>
+<code class="signature">public  void <strong>addJoinedEntityResult</strong>(string class, string alias, string parentAlias, object relation)</code>
+<div class="details">
+<p>Adds a joined entity result.</p><dl>
+<dt>Parameters:</dt>
+<dd>class - The class name of the joined entity.</dd>
+<dd>alias - The unique alias to use for the joined entity.</dd>
+<dd>parentAlias - The alias of the entity result that is the parent of this joined result.</dd>
+<dd>relation - The association field that connects the parent entity result with the joined entity result.</dd>
+<dt>Todo:</dt>
+<dd>Rename: addJoinedEntity</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 390</div>
+<h3 id="addMetaResult()">addMetaResult</h3>
+<code class="signature">public  void <strong>addMetaResult</strong>(mixed alias, mixed columnName, mixed fieldName, $fieldName )</code>
+<div class="details">
+<p>Adds a meta column (foreign key or discriminator column) to the result set.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 233</div>
+<h3 id="addScalarResult()">addScalarResult</h3>
+<code class="signature">public  void <strong>addScalarResult</strong>(string columnName, string alias)</code>
+<div class="details">
+<p>Adds a scalar result mapping.</p><dl>
+<dt>Parameters:</dt>
+<dd>columnName - The name of the column in the SQL result set.</dd>
+<dd>alias - The result alias with which the scalar result should be placed in the result structure.</dd>
+<dt>Todo:</dt>
+<dd>Rename: addScalar</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 355</div>
+<h3 id="getAliasMap()">getAliasMap</h3>
+<code class="signature">public  array <strong>getAliasMap</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 260</div>
+<h3 id="getClassName()">getClassName</h3>
+<code class="signature">public  string <strong>getClassName</strong>(string alias)</code>
+<div class="details">
+<p>Gets the name of the class of an entity result or joined entity result,
+identified by the given unique alias.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 282</div>
+<h3 id="getDeclaringClass()">getDeclaringClass</h3>
+<code class="signature">public  string <strong>getDeclaringClass</strong>(string columnName)</code>
+<div class="details">
+<p>Gets the name of the class that owns a field mapping for the specified column.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 313</div>
+<h3 id="getEntityAlias()">getEntityAlias</h3>
+<code class="signature">public  string <strong>getEntityAlias</strong>(string columnName)</code>
+<div class="details">
+<p>Gets the alias of the class that owns a field mapping for the specified column.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 365</div>
+<h3 id="getEntityResultCount()">getEntityResultCount</h3>
+<code class="signature">public  integer <strong>getEntityResultCount</strong>()</code>
+<div class="details">
+<p>Gets the number of different entities that appear in the mapped result.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 346</div>
+<h3 id="getFieldName()">getFieldName</h3>
+<code class="signature">public  string <strong>getFieldName</strong>(string columnName)</code>
+<div class="details">
+<p>Gets the field name for a column name.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 324</div>
+<h3 id="getParentAlias()">getParentAlias</h3>
+<code class="signature">public  string <strong>getParentAlias</strong>(string alias)</code>
+<div class="details">
+<p>Gets the parent alias of the given alias.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 292</div>
+<h3 id="getRelation()">getRelation</h3>
+<code class="signature">public  <a href="../../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a> <strong>getRelation</strong>(string alias)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 271</div>
+<h3 id="getScalarAlias()">getScalarAlias</h3>
+<code class="signature">public  string <strong>getScalarAlias</strong>(string columnName)</code>
+<div class="details">
+<p>Gets the field alias for a column that is mapped as a scalar value.</p><dl>
+<dt>Parameters:</dt>
+<dd>columnName - The name of the column in the SQL result set.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 166</div>
+<h3 id="hasIndexBy()">hasIndexBy</h3>
+<code class="signature">public  boolean <strong>hasIndexBy</strong>(string alias)</code>
+<div class="details">
+<p>Checks whether an entity result or joined entity result with a given alias has
+a field set for indexing.</p><dl>
+<dt>Todo:</dt>
+<dd>Rename: isIndexed($alias)</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 335</div>
+<h3 id="hasParentAlias()">hasParentAlias</h3>
+<code class="signature">public  boolean <strong>hasParentAlias</strong>(string alias)</code>
+<div class="details">
+<p>Checks whether the given alias has a parent alias.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 179</div>
+<h3 id="isFieldResult()">isFieldResult</h3>
+<code class="signature">public  boolean <strong>isFieldResult</strong>(string columnName)</code>
+<div class="details">
+<p>Checks whether the column with the given name is mapped as a field result
+as part of an entity result or joined entity result.</p><dl>
+<dt>Parameters:</dt>
+<dd>columnName - The name of the column in the SQL result set.</dd>
+<dt>Todo:</dt>
+<dd>Rename: isField</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 378</div>
+<h3 id="isMixedResult()">isMixedResult</h3>
+<code class="signature">public  boolean <strong>isMixedResult</strong>()</code>
+<div class="details">
+<p>Checks whether this ResultSetMapping defines a mixed result.
+Mixed results can only occur in object and array (graph) hydration. In such a
+case a mixed result means that scalar values are mixed with objects/array in
+the result.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 302</div>
+<h3 id="isRelation()">isRelation</h3>
+<code class="signature">public  boolean <strong>isRelation</strong>(string alias)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 248</div>
+<h3 id="isScalarResult()">isScalarResult</h3>
+<code class="signature">public  boolean <strong>isScalarResult</strong>(mixed columnName, string columName)</code>
+<div class="details">
+<p>Checks whether a column with a given name is mapped as a scalar result.</p><dl>
+<dt>Parameters:</dt>
+<dd>columName - The name of the column in the SQL result set.</dd>
+<dt>Todo:</dt>
+<dd>Rename: isScalar</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/ResultSetMapping.php at line 141</div>
+<h3 id="setDiscriminatorColumn()">setDiscriminatorColumn</h3>
+<code class="signature">public  void <strong>setDiscriminatorColumn</strong>(string alias, string discrColumn)</code>
+<div class="details">
+<p>Sets a discriminator column for an entity result or joined entity result.
+The discriminator column will be used to determine the concrete class name to
+instantiate.</p><dl>
+<dt>Parameters:</dt>
+<dd>alias - The alias of the entity result or joined entity result the discriminator column should be used for.</dd>
+<dd>discrColumn - The name of the discriminator column in the SQL result set.</dd>
+<dt>Todo:</dt>
+<dd>Rename: addDiscriminatorColumn</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/resultsetmapping.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/sqlwalker.html b/lib/api/doctrine/orm/query/sqlwalker.html
new file mode 100644
index 000000000..0ee0f549f
--- /dev/null
+++ b/lib/api/doctrine/orm/query/sqlwalker.html
@@ -0,0 +1,919 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SqlWalker (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/sqlwalker.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\SqlWalker</div>
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 36</div>
+
+<h1>Class SqlWalker</h1>
+
+<pre class="tree"><strong>SqlWalker</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SqlWalker</strong></p>
+
+<div class="comment" id="overview_description"><p>The SqlWalker is a TreeWalker that walks over a DQL AST and constructs
+the corresponding SQL.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Todo:</dt>
+<dd>Rename: SQLWalker</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SqlWalker()">SqlWalker</a>(mixed query, mixed parserResult, mixed queryComponents)</p><p class="description">{@inheritDoc}</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/connection.html">Connection</a></td>
+<td class="description"><p class="name"><a href="#getConnection()">getConnection</a>()</p><p class="description">Gets the Connection used by the walker.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#getEntityManager()">getEntityManager</a>()</p><p class="description">Gets the EntityManager used by the walker.</p></td>
+</tr>
+<tr>
+<td class="type"> AbstractExecutor</td>
+<td class="description"><p class="name"><a href="#getExecutor()">getExecutor</a>(mixed AST)</p><p class="description">Gets an executor that can be used to execute the result of this walker.</p></td>
+</tr>
+<tr>
+<td class="type"> Query.</td>
+<td class="description"><p class="name"><a href="#getQuery()">getQuery</a>()</p><p class="description">Gets the Query instance used by the walker.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getQueryComponent()">getQueryComponent</a>(string dqlAlias)</p><p class="description">Gets the information about a single query component.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSqlColumnAlias()">getSqlColumnAlias</a>(string columnName)</p><p class="description">Gets an SQL column alias for a column name.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getSqlTableAlias()">getSqlTableAlias</a>(mixed tableName, string dqlAlias)</p><p class="description">Generates a unique, short SQL table alias.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setSqlTableAlias()">setSqlTableAlias</a>(string tableName, string alias)</p><p class="description">Forces the SqlWalker to use a specific alias for a table name, rather than
+generating an alias on its own.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkAggregateExpression()">walkAggregateExpression</a>(mixed aggExpression, <a href="../../../doctrine/orm/query/ast/aggregateexpression.html">AggregateExpression</a> )</p><p class="description">Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticExpression()">walkArithmeticExpression</a>(mixed arithmeticExpr, <a href="../../../doctrine/orm/query/ast/arithmeticexpression.html">ArithmeticExpression</a> )</p><p class="description">Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticFactor()">walkArithmeticFactor</a>(mixed factor, mixed )</p><p class="description">Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticTerm()">walkArithmeticTerm</a>(mixed term, mixed )</p><p class="description">Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkBetweenExpression()">walkBetweenExpression</a>(mixed betweenExpr, <a href="../../../doctrine/orm/query/ast/betweenexpression.html">BetweenExpression</a> )</p><p class="description">Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkCollectionMemberExpression()">walkCollectionMemberExpression</a>(mixed collMemberExpr, <a href="../../../doctrine/orm/query/ast/collectionmemberexpression.html">CollectionMemberExpression</a> )</p><p class="description">Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkComparisonExpression()">walkComparisonExpression</a>(mixed compExpr, <a href="../../../doctrine/orm/query/ast/comparisonexpression.html">ComparisonExpression</a> )</p><p class="description">Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkConditionalFactor()">walkConditionalFactor</a>(mixed factor, <a href="../../../doctrine/orm/query/ast/conditionalfactor.html">ConditionalFactor</a> )</p><p class="description">Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkConditionalTerm()">walkConditionalTerm</a>(mixed condTerm, <a href="../../../doctrine/orm/query/ast/conditionalterm.html">ConditionalTerm</a> )</p><p class="description">Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkDeleteClause()">walkDeleteClause</a>(mixed deleteClause, <a href="../../../doctrine/orm/query/ast/deleteclause.html">DeleteClause</a> )</p><p class="description">Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkDeleteStatement()">walkDeleteStatement</a>(mixed AST, <a href="../../../doctrine/orm/query/ast/deletestatement.html">DeleteStatement</a> )</p><p class="description">Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression</a>(mixed emptyCollCompExpr, <a href="../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">EmptyCollectionComparisonExpression</a> )</p><p class="description">Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkExistsExpression()">walkExistsExpression</a>(mixed existsExpr, <a href="../../../doctrine/orm/query/ast/existsexpression.html">ExistsExpression</a> )</p><p class="description">Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkFromClause()">walkFromClause</a>(mixed fromClause)</p><p class="description">Walks down a FromClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkFunction()">walkFunction</a>(mixed function)</p><p class="description">Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkGroupByClause()">walkGroupByClause</a>(mixed groupByClause, <a href="../../../doctrine/orm/query/ast/groupbyclause.html">GroupByClause</a> )</p><p class="description">Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkGroupByItem()">walkGroupByItem</a>(mixed pathExpr, GroupByItem )</p><p class="description">Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkHavingClause()">walkHavingClause</a>(mixed havingClause, <a href="../../../doctrine/orm/query/ast/havingclause.html">HavingClause</a> )</p><p class="description">Walks down a HavingClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkIdentificationVariable()">walkIdentificationVariable</a>(string identificationVariable, mixed fieldName)</p><p class="description">Walks down an IdentificationVariable (no AST node associated), thereby generating the SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkInExpression()">walkInExpression</a>(mixed inExpr, <a href="../../../doctrine/orm/query/ast/inexpression.html">InExpression</a> )</p><p class="description">Walks down an InExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#walkInParameter()">walkInParameter</a>(mixed inParam)</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkInputParameter()">walkInputParameter</a>(mixed inputParam, <a href="../../../doctrine/orm/query/ast/inputparameter.html">InputParameter</a> )</p><p class="description">Walks down an InputParameter AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkJoinVariableDeclaration()">walkJoinVariableDeclaration</a>(<a href="../../../doctrine/orm/query/ast/joinvariabledeclaration.html">JoinVariableDeclaration</a> joinVarDecl)</p><p class="description">Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkLikeExpression()">walkLikeExpression</a>(mixed likeExpr, <a href="../../../doctrine/orm/query/ast/likeexpression.html">LikeExpression</a> )</p><p class="description">Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkLiteral()">walkLiteral</a>(mixed literal, mixed )</p><p class="description">Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkNullComparisonExpression()">walkNullComparisonExpression</a>(mixed nullCompExpr, <a href="../../../doctrine/orm/query/ast/nullcomparisonexpression.html">NullComparisonExpression</a> )</p><p class="description">Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkOrderByClause()">walkOrderByClause</a>(mixed orderByClause, <a href="../../../doctrine/orm/query/ast/orderbyclause.html">OrderByClause</a> )</p><p class="description">Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkOrderByItem()">walkOrderByItem</a>(mixed orderByItem, <a href="../../../doctrine/orm/query/ast/orderbyitem.html">OrderByItem</a> )</p><p class="description">Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkPathExpression()">walkPathExpression</a>(mixed pathExpr, mixed )</p><p class="description">Walks down a PathExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkQuantifiedExpression()">walkQuantifiedExpression</a>(mixed qExpr, <a href="../../../doctrine/orm/query/ast/quantifiedexpression.html">QuantifiedExpression</a> )</p><p class="description">Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectClause()">walkSelectClause</a>(mixed selectClause, $selectClause )</p><p class="description">Walks down a SelectClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectExpression()">walkSelectExpression</a>(<a href="../../../doctrine/orm/query/ast/selectexpression.html">SelectExpression</a> selectExpression)</p><p class="description">Walks down a SelectExpression AST node and generates the corresponding SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectStatement()">walkSelectStatement</a>(mixed AST)</p><p class="description">Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression</a>(mixed simpleArithmeticExpr, <a href="../../../doctrine/orm/query/ast/simplearithmeticexpression.html">SimpleArithmeticExpression</a> )</p><p class="description">Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleSelectClause()">walkSimpleSelectClause</a>(mixed simpleSelectClause, <a href="../../../doctrine/orm/query/ast/simpleselectclause.html">SimpleSelectClause</a> )</p><p class="description">Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleSelectExpression()">walkSimpleSelectExpression</a>(mixed simpleSelectExpression, <a href="../../../doctrine/orm/query/ast/simpleselectexpression.html">SimpleSelectExpression</a> )</p><p class="description">Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkStateFieldPathExpression()">walkStateFieldPathExpression</a>(mixed stateFieldPathExpression, StateFieldPathExpression )</p><p class="description">Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkStringPrimary()">walkStringPrimary</a>(mixed stringPrimary, mixed )</p><p class="description">Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSubselect()">walkSubselect</a>(mixed subselect, <a href="../../../doctrine/orm/query/ast/subselect.html">Subselect</a> )</p><p class="description">Walks down a Subselect AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSubselectFromClause()">walkSubselectFromClause</a>(mixed subselectFromClause, <a href="../../../doctrine/orm/query/ast/subselectfromclause.html">SubselectFromClause</a> )</p><p class="description">Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateClause()">walkUpdateClause</a>(mixed updateClause, <a href="../../../doctrine/orm/query/ast/updateclause.html">UpdateClause</a> )</p><p class="description">Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateItem()">walkUpdateItem</a>(mixed updateItem, <a href="../../../doctrine/orm/query/ast/updateitem.html">UpdateItem</a> )</p><p class="description">Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateStatement()">walkUpdateStatement</a>(mixed AST, <a href="../../../doctrine/orm/query/ast/updatestatement.html">UpdateStatement</a> )</p><p class="description">Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkWhereClause()">walkWhereClause</a>(mixed whereClause, <a href="../../../doctrine/orm/query/ast/whereclause.html">WhereClause</a> )</p><p class="description">Walks down a WhereClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 102</div>
+<h3 id="SqlWalker()">SqlWalker</h3>
+<code class="signature">public <strong>SqlWalker</strong>(mixed query, mixed parserResult, mixed queryComponents)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 128</div>
+<h3 id="getConnection()">getConnection</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/connection.html">Connection</a> <strong>getConnection</strong>()</code>
+<div class="details">
+<p>Gets the Connection used by the walker.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 138</div>
+<h3 id="getEntityManager()">getEntityManager</h3>
+<code class="signature">public  <a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>getEntityManager</strong>()</code>
+<div class="details">
+<p>Gets the EntityManager used by the walker.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 159</div>
+<h3 id="getExecutor()">getExecutor</h3>
+<code class="signature">public  AbstractExecutor <strong>getExecutor</strong>(mixed AST)</code>
+<div class="details">
+<p>Gets an executor that can be used to execute the result of this walker.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 118</div>
+<h3 id="getQuery()">getQuery</h3>
+<code class="signature">public  Query. <strong>getQuery</strong>()</code>
+<div class="details">
+<p>Gets the Query instance used by the walker.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 149</div>
+<h3 id="getQueryComponent()">getQueryComponent</h3>
+<code class="signature">public  array <strong>getQueryComponent</strong>(string dqlAlias)</code>
+<div class="details">
+<p>Gets the information about a single query component.</p><dl>
+<dt>Parameters:</dt>
+<dd>dqlAlias - The DQL alias.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 226</div>
+<h3 id="getSqlColumnAlias()">getSqlColumnAlias</h3>
+<code class="signature">public  string <strong>getSqlColumnAlias</strong>(string columnName)</code>
+<div class="details">
+<p>Gets an SQL column alias for a column name.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 195</div>
+<h3 id="getSqlTableAlias()">getSqlTableAlias</h3>
+<code class="signature">public  string <strong>getSqlTableAlias</strong>(mixed tableName, string dqlAlias)</code>
+<div class="details">
+<p>Generates a unique, short SQL table alias.</p><dl>
+<dt>Parameters:</dt>
+<dd>dqlAlias - The DQL alias.</dd>
+<dt>Returns:</dt>
+<dd>Generated table alias.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 213</div>
+<h3 id="setSqlTableAlias()">setSqlTableAlias</h3>
+<code class="signature">public  void <strong>setSqlTableAlias</strong>(string tableName, string alias)</code>
+<div class="details">
+<p>Forces the SqlWalker to use a specific alias for a table name, rather than
+generating an alias on its own.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1091</div>
+<h3 id="walkAggregateExpression()">walkAggregateExpression</h3>
+<code class="signature">public  string <strong>walkAggregateExpression</strong>(mixed aggExpression, <a href="../../../doctrine/orm/query/ast/aggregateexpression.html">AggregateExpression</a> )</code>
+<div class="details">
+<p>Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1597</div>
+<h3 id="walkArithmeticExpression()">walkArithmeticExpression</h3>
+<code class="signature">public  string <strong>walkArithmeticExpression</strong>(mixed arithmeticExpr, <a href="../../../doctrine/orm/query/ast/arithmeticexpression.html">ArithmeticExpression</a> )</code>
+<div class="details">
+<p>Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1638</div>
+<h3 id="walkArithmeticFactor()">walkArithmeticFactor</h3>
+<code class="signature">public  string <strong>walkArithmeticFactor</strong>(mixed factor, mixed )</code>
+<div class="details">
+<p>Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1610</div>
+<h3 id="walkArithmeticTerm()">walkArithmeticTerm</h3>
+<code class="signature">public  string <strong>walkArithmeticTerm</strong>(mixed term, mixed )</code>
+<div class="details">
+<p>Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1499</div>
+<h3 id="walkBetweenExpression()">walkBetweenExpression</h3>
+<code class="signature">public  string <strong>walkBetweenExpression</strong>(mixed betweenExpr, <a href="../../../doctrine/orm/query/ast/betweenexpression.html">BetweenExpression</a> )</code>
+<div class="details">
+<p>Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1288</div>
+<h3 id="walkCollectionMemberExpression()">walkCollectionMemberExpression</h3>
+<code class="signature">public  string <strong>walkCollectionMemberExpression</strong>(mixed collMemberExpr, <a href="../../../doctrine/orm/query/ast/collectionmemberexpression.html">CollectionMemberExpression</a> )</code>
+<div class="details">
+<p>Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1555</div>
+<h3 id="walkComparisonExpression()">walkComparisonExpression</h3>
+<code class="signature">public  string <strong>walkComparisonExpression</strong>(mixed compExpr, <a href="../../../doctrine/orm/query/ast/comparisonexpression.html">ComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1248</div>
+<h3 id="walkConditionalFactor()">walkConditionalFactor</h3>
+<code class="signature">public  string <strong>walkConditionalFactor</strong>(mixed factor, <a href="../../../doctrine/orm/query/ast/conditionalfactor.html">ConditionalFactor</a> )</code>
+<div class="details">
+<p>Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1235</div>
+<h3 id="walkConditionalTerm()">walkConditionalTerm</h3>
+<code class="signature">public  string <strong>walkConditionalTerm</strong>(mixed condTerm, <a href="../../../doctrine/orm/query/ast/conditionalterm.html">ConditionalTerm</a> )</code>
+<div class="details">
+<p>Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1127</div>
+<h3 id="walkDeleteClause()">walkDeleteClause</h3>
+<code class="signature">public  string <strong>walkDeleteClause</strong>(mixed deleteClause, <a href="../../../doctrine/orm/query/ast/deleteclause.html">DeleteClause</a> )</code>
+<div class="details">
+<p>Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 403</div>
+<h3 id="walkDeleteStatement()">walkDeleteStatement</h3>
+<code class="signature">public  string <strong>walkDeleteStatement</strong>(mixed AST, <a href="../../../doctrine/orm/query/ast/deletestatement.html">DeleteStatement</a> )</code>
+<div class="details">
+<p>Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1410</div>
+<h3 id="walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression</h3>
+<code class="signature">public  string <strong>walkEmptyCollectionComparisonExpression</strong>(mixed emptyCollCompExpr, <a href="../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">EmptyCollectionComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1273</div>
+<h3 id="walkExistsExpression()">walkExistsExpression</h3>
+<code class="signature">public  string <strong>walkExistsExpression</strong>(mixed existsExpr, <a href="../../../doctrine/orm/query/ast/existsexpression.html">ExistsExpression</a> )</code>
+<div class="details">
+<p>Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 583</div>
+<h3 id="walkFromClause()">walkFromClause</h3>
+<code class="signature">public  string <strong>walkFromClause</strong>(mixed fromClause)</code>
+<div class="details">
+<p>Walks down a FromClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 613</div>
+<h3 id="walkFunction()">walkFunction</h3>
+<code class="signature">public  string <strong>walkFunction</strong>(mixed function)</code>
+<div class="details">
+<p>Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1103</div>
+<h3 id="walkGroupByClause()">walkGroupByClause</h3>
+<code class="signature">public  string <strong>walkGroupByClause</strong>(mixed groupByClause, <a href="../../../doctrine/orm/query/ast/groupbyclause.html">GroupByClause</a> )</code>
+<div class="details">
+<p>Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1116</div>
+<h3 id="walkGroupByItem()">walkGroupByItem</h3>
+<code class="signature">public  string <strong>walkGroupByItem</strong>(mixed pathExpr, GroupByItem )</code>
+<div class="details">
+<p>Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 665</div>
+<h3 id="walkHavingClause()">walkHavingClause</h3>
+<code class="signature">public  string <strong>walkHavingClause</strong>(mixed havingClause, <a href="../../../doctrine/orm/query/ast/havingclause.html">HavingClause</a> )</code>
+<div class="details">
+<p>Walks down a HavingClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 424</div>
+<h3 id="walkIdentificationVariable()">walkIdentificationVariable</h3>
+<code class="signature">public  string <strong>walkIdentificationVariable</strong>(string identificationVariable, mixed fieldName)</code>
+<div class="details">
+<p>Walks down an IdentificationVariable (no AST node associated), thereby generating the SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1448</div>
+<h3 id="walkInExpression()">walkInExpression</h3>
+<code class="signature">public  string <strong>walkInExpression</strong>(mixed inExpr, <a href="../../../doctrine/orm/query/ast/inexpression.html">InExpression</a> )</code>
+<div class="details">
+<p>Walks down an InExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1464</div>
+<h3 id="walkInParameter()">walkInParameter</h3>
+<code class="signature">public  void <strong>walkInParameter</strong>(mixed inParam)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1584</div>
+<h3 id="walkInputParameter()">walkInputParameter</h3>
+<code class="signature">public  string <strong>walkInputParameter</strong>(mixed inputParam, <a href="../../../doctrine/orm/query/ast/inputparameter.html">InputParameter</a> )</code>
+<div class="details">
+<p>Walks down an InputParameter AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 678</div>
+<h3 id="walkJoinVariableDeclaration()">walkJoinVariableDeclaration</h3>
+<code class="signature">public  string <strong>walkJoinVariableDeclaration</strong>(<a href="../../../doctrine/orm/query/ast/joinvariabledeclaration.html">JoinVariableDeclaration</a> joinVarDecl)</code>
+<div class="details">
+<p>Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1517</div>
+<h3 id="walkLikeExpression()">walkLikeExpression</h3>
+<code class="signature">public  string <strong>walkLikeExpression</strong>(mixed likeExpr, <a href="../../../doctrine/orm/query/ast/likeexpression.html">LikeExpression</a> )</code>
+<div class="details">
+<p>Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1477</div>
+<h3 id="walkLiteral()">walkLiteral</h3>
+<code class="signature">public  string <strong>walkLiteral</strong>(mixed literal, mixed )</code>
+<div class="details">
+<p>Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1424</div>
+<h3 id="walkNullComparisonExpression()">walkNullComparisonExpression</h3>
+<code class="signature">public  string <strong>walkNullComparisonExpression</strong>(mixed nullCompExpr, <a href="../../../doctrine/orm/query/ast/nullcomparisonexpression.html">NullComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 624</div>
+<h3 id="walkOrderByClause()">walkOrderByClause</h3>
+<code class="signature">public  string <strong>walkOrderByClause</strong>(mixed orderByClause, <a href="../../../doctrine/orm/query/ast/orderbyclause.html">OrderByClause</a> )</code>
+<div class="details">
+<p>Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 643</div>
+<h3 id="walkOrderByItem()">walkOrderByItem</h3>
+<code class="signature">public  string <strong>walkOrderByItem</strong>(mixed orderByItem, <a href="../../../doctrine/orm/query/ast/orderbyitem.html">OrderByItem</a> )</code>
+<div class="details">
+<p>Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 444</div>
+<h3 id="walkPathExpression()">walkPathExpression</h3>
+<code class="signature">public  string <strong>walkPathExpression</strong>(mixed pathExpr, mixed )</code>
+<div class="details">
+<p>Walks down a PathExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 983</div>
+<h3 id="walkQuantifiedExpression()">walkQuantifiedExpression</h3>
+<code class="signature">public  string <strong>walkQuantifiedExpression</strong>(mixed qExpr, <a href="../../../doctrine/orm/query/ast/quantifiedexpression.html">QuantifiedExpression</a> )</code>
+<div class="details">
+<p>Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 500</div>
+<h3 id="walkSelectClause()">walkSelectClause</h3>
+<code class="signature">public  string <strong>walkSelectClause</strong>(mixed selectClause, $selectClause )</code>
+<div class="details">
+<p>Walks down a SelectClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 803</div>
+<h3 id="walkSelectExpression()">walkSelectExpression</h3>
+<code class="signature">public  string <strong>walkSelectExpression</strong>(<a href="../../../doctrine/orm/query/ast/selectexpression.html">SelectExpression</a> selectExpression)</code>
+<div class="details">
+<p>Walks down a SelectExpression AST node and generates the corresponding SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 349</div>
+<h3 id="walkSelectStatement()">walkSelectStatement</h3>
+<code class="signature">public  string <strong>walkSelectStatement</strong>(mixed AST)</code>
+<div class="details">
+<p>Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1662</div>
+<h3 id="walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression</h3>
+<code class="signature">public  string <strong>walkSimpleArithmeticExpression</strong>(mixed simpleArithmeticExpr, <a href="../../../doctrine/orm/query/ast/simplearithmeticexpression.html">SimpleArithmeticExpression</a> )</code>
+<div class="details">
+<p>Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1046</div>
+<h3 id="walkSimpleSelectClause()">walkSimpleSelectClause</h3>
+<code class="signature">public  string <strong>walkSimpleSelectClause</strong>(mixed simpleSelectClause, <a href="../../../doctrine/orm/query/ast/simpleselectclause.html">SimpleSelectClause</a> )</code>
+<div class="details">
+<p>Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1058</div>
+<h3 id="walkSimpleSelectExpression()">walkSimpleSelectExpression</h3>
+<code class="signature">public  string <strong>walkSimpleSelectExpression</strong>(mixed simpleSelectExpression, <a href="../../../doctrine/orm/query/ast/simpleselectexpression.html">SimpleSelectExpression</a> )</code>
+<div class="details">
+<p>Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1544</div>
+<h3 id="walkStateFieldPathExpression()">walkStateFieldPathExpression</h3>
+<code class="signature">public  string <strong>walkStateFieldPathExpression</strong>(mixed stateFieldPathExpression, StateFieldPathExpression )</code>
+<div class="details">
+<p>Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1625</div>
+<h3 id="walkStringPrimary()">walkStringPrimary</h3>
+<code class="signature">public  string <strong>walkStringPrimary</strong>(mixed stringPrimary, mixed )</code>
+<div class="details">
+<p>Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 995</div>
+<h3 id="walkSubselect()">walkSubselect</h3>
+<code class="signature">public  string <strong>walkSubselect</strong>(mixed subselect, <a href="../../../doctrine/orm/query/ast/subselect.html">Subselect</a> )</code>
+<div class="details">
+<p>Walks down a Subselect AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1018</div>
+<h3 id="walkSubselectFromClause()">walkSubselectFromClause</h3>
+<code class="signature">public  string <strong>walkSubselectFromClause</strong>(mixed subselectFromClause, <a href="../../../doctrine/orm/query/ast/subselectfromclause.html">SubselectFromClause</a> )</code>
+<div class="details">
+<p>Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1148</div>
+<h3 id="walkUpdateClause()">walkUpdateClause</h3>
+<code class="signature">public  string <strong>walkUpdateClause</strong>(mixed updateClause, <a href="../../../doctrine/orm/query/ast/updateclause.html">UpdateClause</a> )</code>
+<div class="details">
+<p>Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1173</div>
+<h3 id="walkUpdateItem()">walkUpdateItem</h3>
+<code class="signature">public  string <strong>walkUpdateItem</strong>(mixed updateItem, <a href="../../../doctrine/orm/query/ast/updateitem.html">UpdateItem</a> )</code>
+<div class="details">
+<p>Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 383</div>
+<h3 id="walkUpdateStatement()">walkUpdateStatement</h3>
+<code class="signature">public  string <strong>walkUpdateStatement</strong>(mixed AST, <a href="../../../doctrine/orm/query/ast/updatestatement.html">UpdateStatement</a> )</code>
+<div class="details">
+<p>Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/SqlWalker.php at line 1211</div>
+<h3 id="walkWhereClause()">walkWhereClause</h3>
+<code class="signature">public  string <strong>walkWhereClause</strong>(mixed whereClause, <a href="../../../doctrine/orm/query/ast/whereclause.html">WhereClause</a> )</code>
+<div class="details">
+<p>Walks down a WhereClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/sqlwalker.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/treewalker.html b/lib/api/doctrine/orm/query/treewalker.html
new file mode 100644
index 000000000..fa4621ea1
--- /dev/null
+++ b/lib/api/doctrine/orm/query/treewalker.html
@@ -0,0 +1,797 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>TreeWalker (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/treewalker.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\TreeWalker</div>
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 30</div>
+
+<h1>Interface TreeWalker</h1>
+
+<pre class="tree"><strong>TreeWalker</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  interface <strong>TreeWalker</strong></p>
+
+<div class="comment" id="overview_description"><p>Interface for walkers of DQL ASTs (abstract syntax trees).</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#TreeWalker()">TreeWalker</a>(<a href="../../../doctrine/orm/query.html">Query</a> query, <a href="../../../doctrine/orm/query/parserresult.html">ParserResult</a> parserResult, array queryComponents)</p><p class="description">Initializes TreeWalker with important information about the ASTs to be walked</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> AbstractExecutor</td>
+<td class="description"><p class="name"><a href="#getExecutor()">getExecutor</a>(mixed AST)</p><p class="description">Gets an executor that can be used to execute the result of this walker.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkAggregateExpression()">walkAggregateExpression</a>(mixed aggExpression, <a href="../../../doctrine/orm/query/ast/aggregateexpression.html">AggregateExpression</a> )</p><p class="description">Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticExpression()">walkArithmeticExpression</a>(mixed arithmeticExpr, <a href="../../../doctrine/orm/query/ast/arithmeticexpression.html">ArithmeticExpression</a> )</p><p class="description">Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticFactor()">walkArithmeticFactor</a>(mixed factor, mixed )</p><p class="description">Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticTerm()">walkArithmeticTerm</a>(mixed term, mixed )</p><p class="description">Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkBetweenExpression()">walkBetweenExpression</a>(mixed betweenExpr, <a href="../../../doctrine/orm/query/ast/betweenexpression.html">BetweenExpression</a> )</p><p class="description">Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkCollectionMemberExpression()">walkCollectionMemberExpression</a>(mixed collMemberExpr, <a href="../../../doctrine/orm/query/ast/collectionmemberexpression.html">CollectionMemberExpression</a> )</p><p class="description">Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkComparisonExpression()">walkComparisonExpression</a>(mixed compExpr, <a href="../../../doctrine/orm/query/ast/comparisonexpression.html">ComparisonExpression</a> )</p><p class="description">Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkConditionalFactor()">walkConditionalFactor</a>(mixed factor, <a href="../../../doctrine/orm/query/ast/conditionalfactor.html">ConditionalFactor</a> )</p><p class="description">Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkConditionalTerm()">walkConditionalTerm</a>(mixed condTerm, <a href="../../../doctrine/orm/query/ast/conditionalterm.html">ConditionalTerm</a> )</p><p class="description">Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkDeleteClause()">walkDeleteClause</a>(mixed deleteClause, <a href="../../../doctrine/orm/query/ast/deleteclause.html">DeleteClause</a> )</p><p class="description">Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkDeleteStatement()">walkDeleteStatement</a>(mixed AST, <a href="../../../doctrine/orm/query/ast/deletestatement.html">DeleteStatement</a> )</p><p class="description">Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression</a>(mixed emptyCollCompExpr, <a href="../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">EmptyCollectionComparisonExpression</a> )</p><p class="description">Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkExistsExpression()">walkExistsExpression</a>(mixed existsExpr, <a href="../../../doctrine/orm/query/ast/existsexpression.html">ExistsExpression</a> )</p><p class="description">Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkFromClause()">walkFromClause</a>(mixed fromClause)</p><p class="description">Walks down a FromClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkFunction()">walkFunction</a>(mixed function)</p><p class="description">Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkGroupByClause()">walkGroupByClause</a>(mixed groupByClause, <a href="../../../doctrine/orm/query/ast/groupbyclause.html">GroupByClause</a> )</p><p class="description">Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkGroupByItem()">walkGroupByItem</a>(mixed pathExpr, GroupByItem )</p><p class="description">Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkHavingClause()">walkHavingClause</a>(mixed havingClause, <a href="../../../doctrine/orm/query/ast/havingclause.html">HavingClause</a> )</p><p class="description">Walks down a HavingClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkInExpression()">walkInExpression</a>(mixed inExpr, <a href="../../../doctrine/orm/query/ast/inexpression.html">InExpression</a> )</p><p class="description">Walks down an InExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkInputParameter()">walkInputParameter</a>(mixed inputParam, <a href="../../../doctrine/orm/query/ast/inputparameter.html">InputParameter</a> )</p><p class="description">Walks down an InputParameter AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkJoinVariableDeclaration()">walkJoinVariableDeclaration</a>(<a href="../../../doctrine/orm/query/ast/joinvariabledeclaration.html">JoinVariableDeclaration</a> joinVarDecl)</p><p class="description">Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkLikeExpression()">walkLikeExpression</a>(mixed likeExpr, <a href="../../../doctrine/orm/query/ast/likeexpression.html">LikeExpression</a> )</p><p class="description">Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkLiteral()">walkLiteral</a>(mixed literal, mixed )</p><p class="description">Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkNullComparisonExpression()">walkNullComparisonExpression</a>(mixed nullCompExpr, <a href="../../../doctrine/orm/query/ast/nullcomparisonexpression.html">NullComparisonExpression</a> )</p><p class="description">Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkOrderByClause()">walkOrderByClause</a>(mixed orderByClause, <a href="../../../doctrine/orm/query/ast/orderbyclause.html">OrderByClause</a> )</p><p class="description">Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkOrderByItem()">walkOrderByItem</a>(mixed orderByItem, <a href="../../../doctrine/orm/query/ast/orderbyitem.html">OrderByItem</a> )</p><p class="description">Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkPathExpression()">walkPathExpression</a>(mixed pathExpr, mixed )</p><p class="description">Walks down an PathExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkQuantifiedExpression()">walkQuantifiedExpression</a>(mixed qExpr, <a href="../../../doctrine/orm/query/ast/quantifiedexpression.html">QuantifiedExpression</a> )</p><p class="description">Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectClause()">walkSelectClause</a>(mixed selectClause)</p><p class="description">Walks down a SelectClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectExpression()">walkSelectExpression</a>(<a href="../../../doctrine/orm/query/ast/selectexpression.html">SelectExpression</a> selectExpression)</p><p class="description">Walks down a SelectExpression AST node and generates the corresponding SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectStatement()">walkSelectStatement</a>(mixed AST)</p><p class="description">Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression</a>(mixed simpleArithmeticExpr, <a href="../../../doctrine/orm/query/ast/simplearithmeticexpression.html">SimpleArithmeticExpression</a> )</p><p class="description">Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleSelectClause()">walkSimpleSelectClause</a>(mixed simpleSelectClause, <a href="../../../doctrine/orm/query/ast/simpleselectclause.html">SimpleSelectClause</a> )</p><p class="description">Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleSelectExpression()">walkSimpleSelectExpression</a>(mixed simpleSelectExpression, <a href="../../../doctrine/orm/query/ast/simpleselectexpression.html">SimpleSelectExpression</a> )</p><p class="description">Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkStateFieldPathExpression()">walkStateFieldPathExpression</a>(mixed stateFieldPathExpression, StateFieldPathExpression )</p><p class="description">Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkStringPrimary()">walkStringPrimary</a>(mixed stringPrimary, mixed )</p><p class="description">Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSubselect()">walkSubselect</a>(mixed subselect, <a href="../../../doctrine/orm/query/ast/subselect.html">Subselect</a> )</p><p class="description">Walks down a Subselect AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSubselectFromClause()">walkSubselectFromClause</a>(mixed subselectFromClause, <a href="../../../doctrine/orm/query/ast/subselectfromclause.html">SubselectFromClause</a> )</p><p class="description">Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateClause()">walkUpdateClause</a>(mixed updateClause, <a href="../../../doctrine/orm/query/ast/updateclause.html">UpdateClause</a> )</p><p class="description">Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateItem()">walkUpdateItem</a>(mixed updateItem, <a href="../../../doctrine/orm/query/ast/updateitem.html">UpdateItem</a> )</p><p class="description">Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateStatement()">walkUpdateStatement</a>(mixed AST, <a href="../../../doctrine/orm/query/ast/updatestatement.html">UpdateStatement</a> )</p><p class="description">Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkWhereClause()">walkWhereClause</a>(mixed whereClause, <a href="../../../doctrine/orm/query/ast/whereclause.html">WhereClause</a> )</p><p class="description">Walks down a WhereClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 39</div>
+<h3 id="TreeWalker()">TreeWalker</h3>
+<code class="signature">public <strong>TreeWalker</strong>(<a href="../../../doctrine/orm/query.html">Query</a> query, <a href="../../../doctrine/orm/query/parserresult.html">ParserResult</a> parserResult, array queryComponents)</code>
+<div class="details">
+<p>Initializes TreeWalker with important information about the ASTs to be walked</p><dl>
+<dt>Parameters:</dt>
+<dd>query - The parsed Query.</dd>
+<dd>parserResult - The result of the parsing process.</dd>
+<dd>queryComponents - Query components (symbol table)</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 378</div>
+<h3 id="getExecutor()">getExecutor</h3>
+<code class="signature">public  AbstractExecutor <strong>getExecutor</strong>(mixed AST)</code>
+<div class="details">
+<p>Gets an executor that can be used to execute the result of this walker.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 155</div>
+<h3 id="walkAggregateExpression()">walkAggregateExpression</h3>
+<code class="signature">public  string <strong>walkAggregateExpression</strong>(mixed aggExpression, <a href="../../../doctrine/orm/query/ast/aggregateexpression.html">AggregateExpression</a> )</code>
+<div class="details">
+<p>Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 331</div>
+<h3 id="walkArithmeticExpression()">walkArithmeticExpression</h3>
+<code class="signature">public  string <strong>walkArithmeticExpression</strong>(mixed arithmeticExpr, <a href="../../../doctrine/orm/query/ast/arithmeticexpression.html">ArithmeticExpression</a> )</code>
+<div class="details">
+<p>Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 355</div>
+<h3 id="walkArithmeticFactor()">walkArithmeticFactor</h3>
+<code class="signature">public  string <strong>walkArithmeticFactor</strong>(mixed factor, mixed )</code>
+<div class="details">
+<p>Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 339</div>
+<h3 id="walkArithmeticTerm()">walkArithmeticTerm</h3>
+<code class="signature">public  string <strong>walkArithmeticTerm</strong>(mixed term, mixed )</code>
+<div class="details">
+<p>Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 291</div>
+<h3 id="walkBetweenExpression()">walkBetweenExpression</h3>
+<code class="signature">public  string <strong>walkBetweenExpression</strong>(mixed betweenExpr, <a href="../../../doctrine/orm/query/ast/betweenexpression.html">BetweenExpression</a> )</code>
+<div class="details">
+<p>Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 251</div>
+<h3 id="walkCollectionMemberExpression()">walkCollectionMemberExpression</h3>
+<code class="signature">public  string <strong>walkCollectionMemberExpression</strong>(mixed collMemberExpr, <a href="../../../doctrine/orm/query/ast/collectionmemberexpression.html">CollectionMemberExpression</a> )</code>
+<div class="details">
+<p>Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 315</div>
+<h3 id="walkComparisonExpression()">walkComparisonExpression</h3>
+<code class="signature">public  string <strong>walkComparisonExpression</strong>(mixed compExpr, <a href="../../../doctrine/orm/query/ast/comparisonexpression.html">ComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 235</div>
+<h3 id="walkConditionalFactor()">walkConditionalFactor</h3>
+<code class="signature">public  string <strong>walkConditionalFactor</strong>(mixed factor, <a href="../../../doctrine/orm/query/ast/conditionalfactor.html">ConditionalFactor</a> )</code>
+<div class="details">
+<p>Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 227</div>
+<h3 id="walkConditionalTerm()">walkConditionalTerm</h3>
+<code class="signature">public  string <strong>walkConditionalTerm</strong>(mixed condTerm, <a href="../../../doctrine/orm/query/ast/conditionalterm.html">ConditionalTerm</a> )</code>
+<div class="details">
+<p>Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 195</div>
+<h3 id="walkDeleteClause()">walkDeleteClause</h3>
+<code class="signature">public  string <strong>walkDeleteClause</strong>(mixed deleteClause, <a href="../../../doctrine/orm/query/ast/deleteclause.html">DeleteClause</a> )</code>
+<div class="details">
+<p>Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 187</div>
+<h3 id="walkDeleteStatement()">walkDeleteStatement</h3>
+<code class="signature">public  string <strong>walkDeleteStatement</strong>(mixed AST, <a href="../../../doctrine/orm/query/ast/deletestatement.html">DeleteStatement</a> )</code>
+<div class="details">
+<p>Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 259</div>
+<h3 id="walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression</h3>
+<code class="signature">public  string <strong>walkEmptyCollectionComparisonExpression</strong>(mixed emptyCollCompExpr, <a href="../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">EmptyCollectionComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 243</div>
+<h3 id="walkExistsExpression()">walkExistsExpression</h3>
+<code class="signature">public  string <strong>walkExistsExpression</strong>(mixed existsExpr, <a href="../../../doctrine/orm/query/ast/existsexpression.html">ExistsExpression</a> )</code>
+<div class="details">
+<p>Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 60</div>
+<h3 id="walkFromClause()">walkFromClause</h3>
+<code class="signature">public  string <strong>walkFromClause</strong>(mixed fromClause)</code>
+<div class="details">
+<p>Walks down a FromClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 67</div>
+<h3 id="walkFunction()">walkFunction</h3>
+<code class="signature">public  string <strong>walkFunction</strong>(mixed function)</code>
+<div class="details">
+<p>Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 163</div>
+<h3 id="walkGroupByClause()">walkGroupByClause</h3>
+<code class="signature">public  string <strong>walkGroupByClause</strong>(mixed groupByClause, <a href="../../../doctrine/orm/query/ast/groupbyclause.html">GroupByClause</a> )</code>
+<div class="details">
+<p>Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 171</div>
+<h3 id="walkGroupByItem()">walkGroupByItem</h3>
+<code class="signature">public  string <strong>walkGroupByItem</strong>(mixed pathExpr, GroupByItem )</code>
+<div class="details">
+<p>Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 91</div>
+<h3 id="walkHavingClause()">walkHavingClause</h3>
+<code class="signature">public  string <strong>walkHavingClause</strong>(mixed havingClause, <a href="../../../doctrine/orm/query/ast/havingclause.html">HavingClause</a> )</code>
+<div class="details">
+<p>Walks down a HavingClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 275</div>
+<h3 id="walkInExpression()">walkInExpression</h3>
+<code class="signature">public  string <strong>walkInExpression</strong>(mixed inExpr, <a href="../../../doctrine/orm/query/ast/inexpression.html">InExpression</a> )</code>
+<div class="details">
+<p>Walks down an InExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 323</div>
+<h3 id="walkInputParameter()">walkInputParameter</h3>
+<code class="signature">public  string <strong>walkInputParameter</strong>(mixed inputParam, <a href="../../../doctrine/orm/query/ast/inputparameter.html">InputParameter</a> )</code>
+<div class="details">
+<p>Walks down an InputParameter AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 99</div>
+<h3 id="walkJoinVariableDeclaration()">walkJoinVariableDeclaration</h3>
+<code class="signature">public  string <strong>walkJoinVariableDeclaration</strong>(<a href="../../../doctrine/orm/query/ast/joinvariabledeclaration.html">JoinVariableDeclaration</a> joinVarDecl)</code>
+<div class="details">
+<p>Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 299</div>
+<h3 id="walkLikeExpression()">walkLikeExpression</h3>
+<code class="signature">public  string <strong>walkLikeExpression</strong>(mixed likeExpr, <a href="../../../doctrine/orm/query/ast/likeexpression.html">LikeExpression</a> )</code>
+<div class="details">
+<p>Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 283</div>
+<h3 id="walkLiteral()">walkLiteral</h3>
+<code class="signature">public  string <strong>walkLiteral</strong>(mixed literal, mixed )</code>
+<div class="details">
+<p>Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 267</div>
+<h3 id="walkNullComparisonExpression()">walkNullComparisonExpression</h3>
+<code class="signature">public  string <strong>walkNullComparisonExpression</strong>(mixed nullCompExpr, <a href="../../../doctrine/orm/query/ast/nullcomparisonexpression.html">NullComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 75</div>
+<h3 id="walkOrderByClause()">walkOrderByClause</h3>
+<code class="signature">public  string <strong>walkOrderByClause</strong>(mixed orderByClause, <a href="../../../doctrine/orm/query/ast/orderbyclause.html">OrderByClause</a> )</code>
+<div class="details">
+<p>Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 83</div>
+<h3 id="walkOrderByItem()">walkOrderByItem</h3>
+<code class="signature">public  string <strong>walkOrderByItem</strong>(mixed orderByItem, <a href="../../../doctrine/orm/query/ast/orderbyitem.html">OrderByItem</a> )</code>
+<div class="details">
+<p>Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 371</div>
+<h3 id="walkPathExpression()">walkPathExpression</h3>
+<code class="signature">public  string <strong>walkPathExpression</strong>(mixed pathExpr, mixed )</code>
+<div class="details">
+<p>Walks down an PathExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 115</div>
+<h3 id="walkQuantifiedExpression()">walkQuantifiedExpression</h3>
+<code class="signature">public  string <strong>walkQuantifiedExpression</strong>(mixed qExpr, <a href="../../../doctrine/orm/query/ast/quantifiedexpression.html">QuantifiedExpression</a> )</code>
+<div class="details">
+<p>Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 53</div>
+<h3 id="walkSelectClause()">walkSelectClause</h3>
+<code class="signature">public  string <strong>walkSelectClause</strong>(mixed selectClause)</code>
+<div class="details">
+<p>Walks down a SelectClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 107</div>
+<h3 id="walkSelectExpression()">walkSelectExpression</h3>
+<code class="signature">public  string <strong>walkSelectExpression</strong>(<a href="../../../doctrine/orm/query/ast/selectexpression.html">SelectExpression</a> selectExpression)</code>
+<div class="details">
+<p>Walks down a SelectExpression AST node and generates the corresponding SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 46</div>
+<h3 id="walkSelectStatement()">walkSelectStatement</h3>
+<code class="signature">public  string <strong>walkSelectStatement</strong>(mixed AST)</code>
+<div class="details">
+<p>Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 363</div>
+<h3 id="walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression</h3>
+<code class="signature">public  string <strong>walkSimpleArithmeticExpression</strong>(mixed simpleArithmeticExpr, <a href="../../../doctrine/orm/query/ast/simplearithmeticexpression.html">SimpleArithmeticExpression</a> )</code>
+<div class="details">
+<p>Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 139</div>
+<h3 id="walkSimpleSelectClause()">walkSimpleSelectClause</h3>
+<code class="signature">public  string <strong>walkSimpleSelectClause</strong>(mixed simpleSelectClause, <a href="../../../doctrine/orm/query/ast/simpleselectclause.html">SimpleSelectClause</a> )</code>
+<div class="details">
+<p>Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 147</div>
+<h3 id="walkSimpleSelectExpression()">walkSimpleSelectExpression</h3>
+<code class="signature">public  string <strong>walkSimpleSelectExpression</strong>(mixed simpleSelectExpression, <a href="../../../doctrine/orm/query/ast/simpleselectexpression.html">SimpleSelectExpression</a> )</code>
+<div class="details">
+<p>Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 307</div>
+<h3 id="walkStateFieldPathExpression()">walkStateFieldPathExpression</h3>
+<code class="signature">public  string <strong>walkStateFieldPathExpression</strong>(mixed stateFieldPathExpression, StateFieldPathExpression )</code>
+<div class="details">
+<p>Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 347</div>
+<h3 id="walkStringPrimary()">walkStringPrimary</h3>
+<code class="signature">public  string <strong>walkStringPrimary</strong>(mixed stringPrimary, mixed )</code>
+<div class="details">
+<p>Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 123</div>
+<h3 id="walkSubselect()">walkSubselect</h3>
+<code class="signature">public  string <strong>walkSubselect</strong>(mixed subselect, <a href="../../../doctrine/orm/query/ast/subselect.html">Subselect</a> )</code>
+<div class="details">
+<p>Walks down a Subselect AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 131</div>
+<h3 id="walkSubselectFromClause()">walkSubselectFromClause</h3>
+<code class="signature">public  string <strong>walkSubselectFromClause</strong>(mixed subselectFromClause, <a href="../../../doctrine/orm/query/ast/subselectfromclause.html">SubselectFromClause</a> )</code>
+<div class="details">
+<p>Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 203</div>
+<h3 id="walkUpdateClause()">walkUpdateClause</h3>
+<code class="signature">public  string <strong>walkUpdateClause</strong>(mixed updateClause, <a href="../../../doctrine/orm/query/ast/updateclause.html">UpdateClause</a> )</code>
+<div class="details">
+<p>Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 211</div>
+<h3 id="walkUpdateItem()">walkUpdateItem</h3>
+<code class="signature">public  string <strong>walkUpdateItem</strong>(mixed updateItem, <a href="../../../doctrine/orm/query/ast/updateitem.html">UpdateItem</a> )</code>
+<div class="details">
+<p>Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 179</div>
+<h3 id="walkUpdateStatement()">walkUpdateStatement</h3>
+<code class="signature">public  string <strong>walkUpdateStatement</strong>(mixed AST, <a href="../../../doctrine/orm/query/ast/updatestatement.html">UpdateStatement</a> )</code>
+<div class="details">
+<p>Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalker.php at line 219</div>
+<h3 id="walkWhereClause()">walkWhereClause</h3>
+<code class="signature">public  string <strong>walkWhereClause</strong>(mixed whereClause, <a href="../../../doctrine/orm/query/ast/whereclause.html">WhereClause</a> )</code>
+<div class="details">
+<p>Walks down a WhereClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/treewalker.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/treewalkeradapter.html b/lib/api/doctrine/orm/query/treewalkeradapter.html
new file mode 100644
index 000000000..97948963e
--- /dev/null
+++ b/lib/api/doctrine/orm/query/treewalkeradapter.html
@@ -0,0 +1,797 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>TreeWalkerAdapter (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/treewalkeradapter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\TreeWalkerAdapter</div>
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 31</div>
+
+<h1>Class TreeWalkerAdapter</h1>
+
+<pre class="tree"><strong>TreeWalkerAdapter</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>TreeWalker </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>TreeWalkerAdapter</strong></p>
+
+<div class="comment" id="overview_description"><p>An adapter implementation of the TreeWalker interface. The methods in this class
+are empty. This class exists as convenience for creating tree walkers.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#TreeWalkerAdapter()">TreeWalkerAdapter</a>(mixed query, mixed parserResult, mixed queryComponents)</p><p class="description">{@inheritdoc}</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> AbstractExecutor</td>
+<td class="description"><p class="name"><a href="#getExecutor()">getExecutor</a>(mixed AST)</p><p class="description">Gets an executor that can be used to execute the result of this walker.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkAggregateExpression()">walkAggregateExpression</a>(mixed aggExpression, <a href="../../../doctrine/orm/query/ast/aggregateexpression.html">AggregateExpression</a> )</p><p class="description">Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticExpression()">walkArithmeticExpression</a>(mixed arithmeticExpr, <a href="../../../doctrine/orm/query/ast/arithmeticexpression.html">ArithmeticExpression</a> )</p><p class="description">Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticFactor()">walkArithmeticFactor</a>(mixed factor, mixed )</p><p class="description">Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticTerm()">walkArithmeticTerm</a>(mixed term, mixed )</p><p class="description">Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkBetweenExpression()">walkBetweenExpression</a>(mixed betweenExpr, <a href="../../../doctrine/orm/query/ast/betweenexpression.html">BetweenExpression</a> )</p><p class="description">Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkCollectionMemberExpression()">walkCollectionMemberExpression</a>(mixed collMemberExpr, <a href="../../../doctrine/orm/query/ast/collectionmemberexpression.html">CollectionMemberExpression</a> )</p><p class="description">Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkComparisonExpression()">walkComparisonExpression</a>(mixed compExpr, <a href="../../../doctrine/orm/query/ast/comparisonexpression.html">ComparisonExpression</a> )</p><p class="description">Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkConditionalFactor()">walkConditionalFactor</a>(mixed factor, <a href="../../../doctrine/orm/query/ast/conditionalfactor.html">ConditionalFactor</a> )</p><p class="description">Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkConditionalTerm()">walkConditionalTerm</a>(mixed condTerm, <a href="../../../doctrine/orm/query/ast/conditionalterm.html">ConditionalTerm</a> )</p><p class="description">Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkDeleteClause()">walkDeleteClause</a>(mixed deleteClause, <a href="../../../doctrine/orm/query/ast/deleteclause.html">DeleteClause</a> )</p><p class="description">Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkDeleteStatement()">walkDeleteStatement</a>(mixed AST, <a href="../../../doctrine/orm/query/ast/deletestatement.html">DeleteStatement</a> )</p><p class="description">Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression</a>(mixed emptyCollCompExpr, <a href="../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">EmptyCollectionComparisonExpression</a> )</p><p class="description">Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkExistsExpression()">walkExistsExpression</a>(mixed existsExpr, <a href="../../../doctrine/orm/query/ast/existsexpression.html">ExistsExpression</a> )</p><p class="description">Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkFromClause()">walkFromClause</a>(mixed fromClause)</p><p class="description">Walks down a FromClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkFunction()">walkFunction</a>(mixed function)</p><p class="description">Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkGroupByClause()">walkGroupByClause</a>(mixed groupByClause, <a href="../../../doctrine/orm/query/ast/groupbyclause.html">GroupByClause</a> )</p><p class="description">Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkGroupByItem()">walkGroupByItem</a>(mixed pathExpr, GroupByItem )</p><p class="description">Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkHavingClause()">walkHavingClause</a>(mixed havingClause, <a href="../../../doctrine/orm/query/ast/havingclause.html">HavingClause</a> )</p><p class="description">Walks down a HavingClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkInExpression()">walkInExpression</a>(mixed inExpr, <a href="../../../doctrine/orm/query/ast/inexpression.html">InExpression</a> )</p><p class="description">Walks down an InExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkInputParameter()">walkInputParameter</a>(mixed inputParam, <a href="../../../doctrine/orm/query/ast/inputparameter.html">InputParameter</a> )</p><p class="description">Walks down an InputParameter AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkJoinVariableDeclaration()">walkJoinVariableDeclaration</a>(<a href="../../../doctrine/orm/query/ast/joinvariabledeclaration.html">JoinVariableDeclaration</a> joinVarDecl)</p><p class="description">Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkLikeExpression()">walkLikeExpression</a>(mixed likeExpr, <a href="../../../doctrine/orm/query/ast/likeexpression.html">LikeExpression</a> )</p><p class="description">Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkLiteral()">walkLiteral</a>(mixed literal, mixed )</p><p class="description">Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkNullComparisonExpression()">walkNullComparisonExpression</a>(mixed nullCompExpr, <a href="../../../doctrine/orm/query/ast/nullcomparisonexpression.html">NullComparisonExpression</a> )</p><p class="description">Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkOrderByClause()">walkOrderByClause</a>(mixed orderByClause, <a href="../../../doctrine/orm/query/ast/orderbyclause.html">OrderByClause</a> )</p><p class="description">Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkOrderByItem()">walkOrderByItem</a>(mixed orderByItem, <a href="../../../doctrine/orm/query/ast/orderbyitem.html">OrderByItem</a> )</p><p class="description">Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkPathExpression()">walkPathExpression</a>(mixed pathExpr, mixed )</p><p class="description">Walks down an PathExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkQuantifiedExpression()">walkQuantifiedExpression</a>(mixed qExpr, <a href="../../../doctrine/orm/query/ast/quantifiedexpression.html">QuantifiedExpression</a> )</p><p class="description">Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectClause()">walkSelectClause</a>(mixed selectClause)</p><p class="description">Walks down a SelectClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectExpression()">walkSelectExpression</a>(<a href="../../../doctrine/orm/query/ast/selectexpression.html">SelectExpression</a> selectExpression)</p><p class="description">Walks down a SelectExpression AST node and generates the corresponding SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectStatement()">walkSelectStatement</a>(mixed AST)</p><p class="description">Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression</a>(mixed simpleArithmeticExpr, <a href="../../../doctrine/orm/query/ast/simplearithmeticexpression.html">SimpleArithmeticExpression</a> )</p><p class="description">Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleSelectClause()">walkSimpleSelectClause</a>(mixed simpleSelectClause, <a href="../../../doctrine/orm/query/ast/simpleselectclause.html">SimpleSelectClause</a> )</p><p class="description">Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleSelectExpression()">walkSimpleSelectExpression</a>(mixed simpleSelectExpression, <a href="../../../doctrine/orm/query/ast/simpleselectexpression.html">SimpleSelectExpression</a> )</p><p class="description">Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkStateFieldPathExpression()">walkStateFieldPathExpression</a>(mixed stateFieldPathExpression, StateFieldPathExpression )</p><p class="description">Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkStringPrimary()">walkStringPrimary</a>(mixed stringPrimary, mixed )</p><p class="description">Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSubselect()">walkSubselect</a>(mixed subselect, <a href="../../../doctrine/orm/query/ast/subselect.html">Subselect</a> )</p><p class="description">Walks down a Subselect AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSubselectFromClause()">walkSubselectFromClause</a>(mixed subselectFromClause, <a href="../../../doctrine/orm/query/ast/subselectfromclause.html">SubselectFromClause</a> )</p><p class="description">Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateClause()">walkUpdateClause</a>(mixed updateClause, <a href="../../../doctrine/orm/query/ast/updateclause.html">UpdateClause</a> )</p><p class="description">Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateItem()">walkUpdateItem</a>(mixed updateItem, <a href="../../../doctrine/orm/query/ast/updateitem.html">UpdateItem</a> )</p><p class="description">Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateStatement()">walkUpdateStatement</a>(mixed AST, <a href="../../../doctrine/orm/query/ast/updatestatement.html">UpdateStatement</a> )</p><p class="description">Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkWhereClause()">walkWhereClause</a>(mixed whereClause, <a href="../../../doctrine/orm/query/ast/whereclause.html">WhereClause</a> )</p><p class="description">Walks down a WhereClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 40</div>
+<h3 id="TreeWalkerAdapter()">TreeWalkerAdapter</h3>
+<code class="signature">public <strong>TreeWalkerAdapter</strong>(mixed query, mixed parserResult, mixed queryComponents)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 412</div>
+<h3 id="getExecutor()">getExecutor</h3>
+<code class="signature">public  AbstractExecutor <strong>getExecutor</strong>(mixed AST)</code>
+<div class="details">
+<p>Gets an executor that can be used to execute the result of this walker.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 189</div>
+<h3 id="walkAggregateExpression()">walkAggregateExpression</h3>
+<code class="signature">public  string <strong>walkAggregateExpression</strong>(mixed aggExpression, <a href="../../../doctrine/orm/query/ast/aggregateexpression.html">AggregateExpression</a> )</code>
+<div class="details">
+<p>Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 365</div>
+<h3 id="walkArithmeticExpression()">walkArithmeticExpression</h3>
+<code class="signature">public  string <strong>walkArithmeticExpression</strong>(mixed arithmeticExpr, <a href="../../../doctrine/orm/query/ast/arithmeticexpression.html">ArithmeticExpression</a> )</code>
+<div class="details">
+<p>Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 389</div>
+<h3 id="walkArithmeticFactor()">walkArithmeticFactor</h3>
+<code class="signature">public  string <strong>walkArithmeticFactor</strong>(mixed factor, mixed )</code>
+<div class="details">
+<p>Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 373</div>
+<h3 id="walkArithmeticTerm()">walkArithmeticTerm</h3>
+<code class="signature">public  string <strong>walkArithmeticTerm</strong>(mixed term, mixed )</code>
+<div class="details">
+<p>Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 325</div>
+<h3 id="walkBetweenExpression()">walkBetweenExpression</h3>
+<code class="signature">public  string <strong>walkBetweenExpression</strong>(mixed betweenExpr, <a href="../../../doctrine/orm/query/ast/betweenexpression.html">BetweenExpression</a> )</code>
+<div class="details">
+<p>Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 285</div>
+<h3 id="walkCollectionMemberExpression()">walkCollectionMemberExpression</h3>
+<code class="signature">public  string <strong>walkCollectionMemberExpression</strong>(mixed collMemberExpr, <a href="../../../doctrine/orm/query/ast/collectionmemberexpression.html">CollectionMemberExpression</a> )</code>
+<div class="details">
+<p>Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 349</div>
+<h3 id="walkComparisonExpression()">walkComparisonExpression</h3>
+<code class="signature">public  string <strong>walkComparisonExpression</strong>(mixed compExpr, <a href="../../../doctrine/orm/query/ast/comparisonexpression.html">ComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 269</div>
+<h3 id="walkConditionalFactor()">walkConditionalFactor</h3>
+<code class="signature">public  string <strong>walkConditionalFactor</strong>(mixed factor, <a href="../../../doctrine/orm/query/ast/conditionalfactor.html">ConditionalFactor</a> )</code>
+<div class="details">
+<p>Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 261</div>
+<h3 id="walkConditionalTerm()">walkConditionalTerm</h3>
+<code class="signature">public  string <strong>walkConditionalTerm</strong>(mixed condTerm, <a href="../../../doctrine/orm/query/ast/conditionalterm.html">ConditionalTerm</a> )</code>
+<div class="details">
+<p>Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 229</div>
+<h3 id="walkDeleteClause()">walkDeleteClause</h3>
+<code class="signature">public  string <strong>walkDeleteClause</strong>(mixed deleteClause, <a href="../../../doctrine/orm/query/ast/deleteclause.html">DeleteClause</a> )</code>
+<div class="details">
+<p>Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 221</div>
+<h3 id="walkDeleteStatement()">walkDeleteStatement</h3>
+<code class="signature">public  string <strong>walkDeleteStatement</strong>(mixed AST, <a href="../../../doctrine/orm/query/ast/deletestatement.html">DeleteStatement</a> )</code>
+<div class="details">
+<p>Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 293</div>
+<h3 id="walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression</h3>
+<code class="signature">public  string <strong>walkEmptyCollectionComparisonExpression</strong>(mixed emptyCollCompExpr, <a href="../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">EmptyCollectionComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 277</div>
+<h3 id="walkExistsExpression()">walkExistsExpression</h3>
+<code class="signature">public  string <strong>walkExistsExpression</strong>(mixed existsExpr, <a href="../../../doctrine/orm/query/ast/existsexpression.html">ExistsExpression</a> )</code>
+<div class="details">
+<p>Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 94</div>
+<h3 id="walkFromClause()">walkFromClause</h3>
+<code class="signature">public  string <strong>walkFromClause</strong>(mixed fromClause)</code>
+<div class="details">
+<p>Walks down a FromClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 101</div>
+<h3 id="walkFunction()">walkFunction</h3>
+<code class="signature">public  string <strong>walkFunction</strong>(mixed function)</code>
+<div class="details">
+<p>Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 197</div>
+<h3 id="walkGroupByClause()">walkGroupByClause</h3>
+<code class="signature">public  string <strong>walkGroupByClause</strong>(mixed groupByClause, <a href="../../../doctrine/orm/query/ast/groupbyclause.html">GroupByClause</a> )</code>
+<div class="details">
+<p>Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 205</div>
+<h3 id="walkGroupByItem()">walkGroupByItem</h3>
+<code class="signature">public  string <strong>walkGroupByItem</strong>(mixed pathExpr, GroupByItem )</code>
+<div class="details">
+<p>Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 125</div>
+<h3 id="walkHavingClause()">walkHavingClause</h3>
+<code class="signature">public  string <strong>walkHavingClause</strong>(mixed havingClause, <a href="../../../doctrine/orm/query/ast/havingclause.html">HavingClause</a> )</code>
+<div class="details">
+<p>Walks down a HavingClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 309</div>
+<h3 id="walkInExpression()">walkInExpression</h3>
+<code class="signature">public  string <strong>walkInExpression</strong>(mixed inExpr, <a href="../../../doctrine/orm/query/ast/inexpression.html">InExpression</a> )</code>
+<div class="details">
+<p>Walks down an InExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 357</div>
+<h3 id="walkInputParameter()">walkInputParameter</h3>
+<code class="signature">public  string <strong>walkInputParameter</strong>(mixed inputParam, <a href="../../../doctrine/orm/query/ast/inputparameter.html">InputParameter</a> )</code>
+<div class="details">
+<p>Walks down an InputParameter AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 133</div>
+<h3 id="walkJoinVariableDeclaration()">walkJoinVariableDeclaration</h3>
+<code class="signature">public  string <strong>walkJoinVariableDeclaration</strong>(<a href="../../../doctrine/orm/query/ast/joinvariabledeclaration.html">JoinVariableDeclaration</a> joinVarDecl)</code>
+<div class="details">
+<p>Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 333</div>
+<h3 id="walkLikeExpression()">walkLikeExpression</h3>
+<code class="signature">public  string <strong>walkLikeExpression</strong>(mixed likeExpr, <a href="../../../doctrine/orm/query/ast/likeexpression.html">LikeExpression</a> )</code>
+<div class="details">
+<p>Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 317</div>
+<h3 id="walkLiteral()">walkLiteral</h3>
+<code class="signature">public  string <strong>walkLiteral</strong>(mixed literal, mixed )</code>
+<div class="details">
+<p>Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 301</div>
+<h3 id="walkNullComparisonExpression()">walkNullComparisonExpression</h3>
+<code class="signature">public  string <strong>walkNullComparisonExpression</strong>(mixed nullCompExpr, <a href="../../../doctrine/orm/query/ast/nullcomparisonexpression.html">NullComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 109</div>
+<h3 id="walkOrderByClause()">walkOrderByClause</h3>
+<code class="signature">public  string <strong>walkOrderByClause</strong>(mixed orderByClause, <a href="../../../doctrine/orm/query/ast/orderbyclause.html">OrderByClause</a> )</code>
+<div class="details">
+<p>Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 117</div>
+<h3 id="walkOrderByItem()">walkOrderByItem</h3>
+<code class="signature">public  string <strong>walkOrderByItem</strong>(mixed orderByItem, <a href="../../../doctrine/orm/query/ast/orderbyitem.html">OrderByItem</a> )</code>
+<div class="details">
+<p>Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 405</div>
+<h3 id="walkPathExpression()">walkPathExpression</h3>
+<code class="signature">public  string <strong>walkPathExpression</strong>(mixed pathExpr, mixed )</code>
+<div class="details">
+<p>Walks down an PathExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 149</div>
+<h3 id="walkQuantifiedExpression()">walkQuantifiedExpression</h3>
+<code class="signature">public  string <strong>walkQuantifiedExpression</strong>(mixed qExpr, <a href="../../../doctrine/orm/query/ast/quantifiedexpression.html">QuantifiedExpression</a> )</code>
+<div class="details">
+<p>Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 87</div>
+<h3 id="walkSelectClause()">walkSelectClause</h3>
+<code class="signature">public  string <strong>walkSelectClause</strong>(mixed selectClause)</code>
+<div class="details">
+<p>Walks down a SelectClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 141</div>
+<h3 id="walkSelectExpression()">walkSelectExpression</h3>
+<code class="signature">public  string <strong>walkSelectExpression</strong>(<a href="../../../doctrine/orm/query/ast/selectexpression.html">SelectExpression</a> selectExpression)</code>
+<div class="details">
+<p>Walks down a SelectExpression AST node and generates the corresponding SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 80</div>
+<h3 id="walkSelectStatement()">walkSelectStatement</h3>
+<code class="signature">public  string <strong>walkSelectStatement</strong>(mixed AST)</code>
+<div class="details">
+<p>Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 397</div>
+<h3 id="walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression</h3>
+<code class="signature">public  string <strong>walkSimpleArithmeticExpression</strong>(mixed simpleArithmeticExpr, <a href="../../../doctrine/orm/query/ast/simplearithmeticexpression.html">SimpleArithmeticExpression</a> )</code>
+<div class="details">
+<p>Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 173</div>
+<h3 id="walkSimpleSelectClause()">walkSimpleSelectClause</h3>
+<code class="signature">public  string <strong>walkSimpleSelectClause</strong>(mixed simpleSelectClause, <a href="../../../doctrine/orm/query/ast/simpleselectclause.html">SimpleSelectClause</a> )</code>
+<div class="details">
+<p>Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 181</div>
+<h3 id="walkSimpleSelectExpression()">walkSimpleSelectExpression</h3>
+<code class="signature">public  string <strong>walkSimpleSelectExpression</strong>(mixed simpleSelectExpression, <a href="../../../doctrine/orm/query/ast/simpleselectexpression.html">SimpleSelectExpression</a> )</code>
+<div class="details">
+<p>Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 341</div>
+<h3 id="walkStateFieldPathExpression()">walkStateFieldPathExpression</h3>
+<code class="signature">public  string <strong>walkStateFieldPathExpression</strong>(mixed stateFieldPathExpression, StateFieldPathExpression )</code>
+<div class="details">
+<p>Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 381</div>
+<h3 id="walkStringPrimary()">walkStringPrimary</h3>
+<code class="signature">public  string <strong>walkStringPrimary</strong>(mixed stringPrimary, mixed )</code>
+<div class="details">
+<p>Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 157</div>
+<h3 id="walkSubselect()">walkSubselect</h3>
+<code class="signature">public  string <strong>walkSubselect</strong>(mixed subselect, <a href="../../../doctrine/orm/query/ast/subselect.html">Subselect</a> )</code>
+<div class="details">
+<p>Walks down a Subselect AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 165</div>
+<h3 id="walkSubselectFromClause()">walkSubselectFromClause</h3>
+<code class="signature">public  string <strong>walkSubselectFromClause</strong>(mixed subselectFromClause, <a href="../../../doctrine/orm/query/ast/subselectfromclause.html">SubselectFromClause</a> )</code>
+<div class="details">
+<p>Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 237</div>
+<h3 id="walkUpdateClause()">walkUpdateClause</h3>
+<code class="signature">public  string <strong>walkUpdateClause</strong>(mixed updateClause, <a href="../../../doctrine/orm/query/ast/updateclause.html">UpdateClause</a> )</code>
+<div class="details">
+<p>Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 245</div>
+<h3 id="walkUpdateItem()">walkUpdateItem</h3>
+<code class="signature">public  string <strong>walkUpdateItem</strong>(mixed updateItem, <a href="../../../doctrine/orm/query/ast/updateitem.html">UpdateItem</a> )</code>
+<div class="details">
+<p>Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 213</div>
+<h3 id="walkUpdateStatement()">walkUpdateStatement</h3>
+<code class="signature">public  string <strong>walkUpdateStatement</strong>(mixed AST, <a href="../../../doctrine/orm/query/ast/updatestatement.html">UpdateStatement</a> )</code>
+<div class="details">
+<p>Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerAdapter.php at line 253</div>
+<h3 id="walkWhereClause()">walkWhereClause</h3>
+<code class="signature">public  string <strong>walkWhereClause</strong>(mixed whereClause, <a href="../../../doctrine/orm/query/ast/whereclause.html">WhereClause</a> )</code>
+<div class="details">
+<p>Walks down a WhereClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/treewalkeradapter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/query/treewalkerchain.html b/lib/api/doctrine/orm/query/treewalkerchain.html
new file mode 100644
index 000000000..d269ecd42
--- /dev/null
+++ b/lib/api/doctrine/orm/query/treewalkerchain.html
@@ -0,0 +1,817 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:05 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>TreeWalkerChain (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/treewalkerchain.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Query\TreeWalkerChain</div>
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 32</div>
+
+<h1>Class TreeWalkerChain</h1>
+
+<pre class="tree"><strong>TreeWalkerChain</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>TreeWalker </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>TreeWalkerChain</strong></p>
+
+<div class="comment" id="overview_description"><p>Represents a chain of tree walkers that modify an AST and finally emit output.
+Only the last walker in the chain can emit output. Any previous walkers can modify
+the AST to influence the final output produced by the last walker.</p></div>
+
+<dl>
+<dt>Author:</dt>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#TreeWalkerChain()">TreeWalkerChain</a>(mixed query, mixed parserResult, mixed queryComponents)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addTreeWalker()">addTreeWalker</a>(string walkerClass)</p><p class="description">Adds a tree walker to the chain.</p></td>
+</tr>
+<tr>
+<td class="type"> AbstractExecutor</td>
+<td class="description"><p class="name"><a href="#getExecutor()">getExecutor</a>(mixed AST)</p><p class="description">Gets an executor that can be used to execute the result of this walker.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkAggregateExpression()">walkAggregateExpression</a>(mixed aggExpression, <a href="../../../doctrine/orm/query/ast/aggregateexpression.html">AggregateExpression</a> )</p><p class="description">Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticExpression()">walkArithmeticExpression</a>(mixed arithmeticExpr, <a href="../../../doctrine/orm/query/ast/arithmeticexpression.html">ArithmeticExpression</a> )</p><p class="description">Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticFactor()">walkArithmeticFactor</a>(mixed factor, mixed )</p><p class="description">Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkArithmeticTerm()">walkArithmeticTerm</a>(mixed term, mixed )</p><p class="description">Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkBetweenExpression()">walkBetweenExpression</a>(mixed betweenExpr, <a href="../../../doctrine/orm/query/ast/betweenexpression.html">BetweenExpression</a> )</p><p class="description">Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkCollectionMemberExpression()">walkCollectionMemberExpression</a>(mixed collMemberExpr, <a href="../../../doctrine/orm/query/ast/collectionmemberexpression.html">CollectionMemberExpression</a> )</p><p class="description">Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkComparisonExpression()">walkComparisonExpression</a>(mixed compExpr, <a href="../../../doctrine/orm/query/ast/comparisonexpression.html">ComparisonExpression</a> )</p><p class="description">Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkConditionalFactor()">walkConditionalFactor</a>(mixed factor, <a href="../../../doctrine/orm/query/ast/conditionalfactor.html">ConditionalFactor</a> )</p><p class="description">Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkConditionalTerm()">walkConditionalTerm</a>(mixed condTerm, <a href="../../../doctrine/orm/query/ast/conditionalterm.html">ConditionalTerm</a> )</p><p class="description">Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkDeleteClause()">walkDeleteClause</a>(mixed deleteClause, <a href="../../../doctrine/orm/query/ast/deleteclause.html">DeleteClause</a> )</p><p class="description">Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkDeleteStatement()">walkDeleteStatement</a>(mixed AST, <a href="../../../doctrine/orm/query/ast/deletestatement.html">DeleteStatement</a> )</p><p class="description">Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression</a>(mixed emptyCollCompExpr, <a href="../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">EmptyCollectionComparisonExpression</a> )</p><p class="description">Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkExistsExpression()">walkExistsExpression</a>(mixed existsExpr, <a href="../../../doctrine/orm/query/ast/existsexpression.html">ExistsExpression</a> )</p><p class="description">Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkFromClause()">walkFromClause</a>(mixed fromClause)</p><p class="description">Walks down a FromClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkFunction()">walkFunction</a>(mixed function)</p><p class="description">Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkGroupByClause()">walkGroupByClause</a>(mixed groupByClause, <a href="../../../doctrine/orm/query/ast/groupbyclause.html">GroupByClause</a> )</p><p class="description">Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkGroupByItem()">walkGroupByItem</a>(mixed pathExpr, GroupByItem )</p><p class="description">Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkHavingClause()">walkHavingClause</a>(mixed havingClause, <a href="../../../doctrine/orm/query/ast/havingclause.html">HavingClause</a> )</p><p class="description">Walks down a HavingClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkInExpression()">walkInExpression</a>(mixed inExpr, <a href="../../../doctrine/orm/query/ast/inexpression.html">InExpression</a> )</p><p class="description">Walks down an InExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkInputParameter()">walkInputParameter</a>(mixed inputParam, <a href="../../../doctrine/orm/query/ast/inputparameter.html">InputParameter</a> )</p><p class="description">Walks down an InputParameter AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkJoinVariableDeclaration()">walkJoinVariableDeclaration</a>(<a href="../../../doctrine/orm/query/ast/joinvariabledeclaration.html">JoinVariableDeclaration</a> joinVarDecl)</p><p class="description">Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkLikeExpression()">walkLikeExpression</a>(mixed likeExpr, <a href="../../../doctrine/orm/query/ast/likeexpression.html">LikeExpression</a> )</p><p class="description">Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkLiteral()">walkLiteral</a>(mixed literal, mixed )</p><p class="description">Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkNullComparisonExpression()">walkNullComparisonExpression</a>(mixed nullCompExpr, <a href="../../../doctrine/orm/query/ast/nullcomparisonexpression.html">NullComparisonExpression</a> )</p><p class="description">Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkOrderByClause()">walkOrderByClause</a>(mixed orderByClause, <a href="../../../doctrine/orm/query/ast/orderbyclause.html">OrderByClause</a> )</p><p class="description">Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkOrderByItem()">walkOrderByItem</a>(mixed orderByItem, <a href="../../../doctrine/orm/query/ast/orderbyitem.html">OrderByItem</a> )</p><p class="description">Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkPathExpression()">walkPathExpression</a>(mixed pathExpr, mixed )</p><p class="description">Walks down an PathExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkQuantifiedExpression()">walkQuantifiedExpression</a>(mixed qExpr, <a href="../../../doctrine/orm/query/ast/quantifiedexpression.html">QuantifiedExpression</a> )</p><p class="description">Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectClause()">walkSelectClause</a>(mixed selectClause)</p><p class="description">Walks down a SelectClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectExpression()">walkSelectExpression</a>(<a href="../../../doctrine/orm/query/ast/selectexpression.html">SelectExpression</a> selectExpression)</p><p class="description">Walks down a SelectExpression AST node and generates the corresponding SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSelectStatement()">walkSelectStatement</a>(mixed AST)</p><p class="description">Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression</a>(mixed simpleArithmeticExpr, <a href="../../../doctrine/orm/query/ast/simplearithmeticexpression.html">SimpleArithmeticExpression</a> )</p><p class="description">Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleSelectClause()">walkSimpleSelectClause</a>(mixed simpleSelectClause, <a href="../../../doctrine/orm/query/ast/simpleselectclause.html">SimpleSelectClause</a> )</p><p class="description">Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSimpleSelectExpression()">walkSimpleSelectExpression</a>(mixed simpleSelectExpression, <a href="../../../doctrine/orm/query/ast/simpleselectexpression.html">SimpleSelectExpression</a> )</p><p class="description">Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkStateFieldPathExpression()">walkStateFieldPathExpression</a>(mixed stateFieldPathExpression, StateFieldPathExpression )</p><p class="description">Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkStringPrimary()">walkStringPrimary</a>(mixed stringPrimary, mixed )</p><p class="description">Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSubselect()">walkSubselect</a>(mixed subselect, <a href="../../../doctrine/orm/query/ast/subselect.html">Subselect</a> )</p><p class="description">Walks down a Subselect AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkSubselectFromClause()">walkSubselectFromClause</a>(mixed subselectFromClause, <a href="../../../doctrine/orm/query/ast/subselectfromclause.html">SubselectFromClause</a> )</p><p class="description">Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateClause()">walkUpdateClause</a>(mixed updateClause, <a href="../../../doctrine/orm/query/ast/updateclause.html">UpdateClause</a> )</p><p class="description">Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateItem()">walkUpdateItem</a>(mixed updateItem, <a href="../../../doctrine/orm/query/ast/updateitem.html">UpdateItem</a> )</p><p class="description">Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkUpdateStatement()">walkUpdateStatement</a>(mixed AST, <a href="../../../doctrine/orm/query/ast/updatestatement.html">UpdateStatement</a> )</p><p class="description">Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#walkWhereClause()">walkWhereClause</a>(mixed whereClause, <a href="../../../doctrine/orm/query/ast/whereclause.html">WhereClause</a> )</p><p class="description">Walks down a WhereClause AST node, thereby generating the appropriate SQL.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 46</div>
+<h3 id="TreeWalkerChain()">TreeWalkerChain</h3>
+<code class="signature">public <strong>TreeWalkerChain</strong>(mixed query, mixed parserResult, mixed queryComponents)</code>
+<div class="details">
+<p></p><dl>
+<dt>Inheritdoc.</dt>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 58</div>
+<h3 id="addTreeWalker()">addTreeWalker</h3>
+<code class="signature">public  void <strong>addTreeWalker</strong>(string walkerClass)</code>
+<div class="details">
+<p>Adds a tree walker to the chain.</p><dl>
+<dt>Parameters:</dt>
+<dd>walkerClass - The class of the walker to instantiate.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 610</div>
+<h3 id="getExecutor()">getExecutor</h3>
+<code class="signature">public  AbstractExecutor <strong>getExecutor</strong>(mixed AST)</code>
+<div class="details">
+<p>Gets an executor that can be used to execute the result of this walker.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 247</div>
+<h3 id="walkAggregateExpression()">walkAggregateExpression</h3>
+<code class="signature">public  string <strong>walkAggregateExpression</strong>(mixed aggExpression, <a href="../../../doctrine/orm/query/ast/aggregateexpression.html">AggregateExpression</a> )</code>
+<div class="details">
+<p>Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 533</div>
+<h3 id="walkArithmeticExpression()">walkArithmeticExpression</h3>
+<code class="signature">public  string <strong>walkArithmeticExpression</strong>(mixed arithmeticExpr, <a href="../../../doctrine/orm/query/ast/arithmeticexpression.html">ArithmeticExpression</a> )</code>
+<div class="details">
+<p>Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 572</div>
+<h3 id="walkArithmeticFactor()">walkArithmeticFactor</h3>
+<code class="signature">public  string <strong>walkArithmeticFactor</strong>(mixed factor, mixed )</code>
+<div class="details">
+<p>Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 546</div>
+<h3 id="walkArithmeticTerm()">walkArithmeticTerm</h3>
+<code class="signature">public  string <strong>walkArithmeticTerm</strong>(mixed term, mixed )</code>
+<div class="details">
+<p>Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 468</div>
+<h3 id="walkBetweenExpression()">walkBetweenExpression</h3>
+<code class="signature">public  string <strong>walkBetweenExpression</strong>(mixed betweenExpr, <a href="../../../doctrine/orm/query/ast/betweenexpression.html">BetweenExpression</a> )</code>
+<div class="details">
+<p>Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 403</div>
+<h3 id="walkCollectionMemberExpression()">walkCollectionMemberExpression</h3>
+<code class="signature">public  string <strong>walkCollectionMemberExpression</strong>(mixed collMemberExpr, <a href="../../../doctrine/orm/query/ast/collectionmemberexpression.html">CollectionMemberExpression</a> )</code>
+<div class="details">
+<p>Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 507</div>
+<h3 id="walkComparisonExpression()">walkComparisonExpression</h3>
+<code class="signature">public  string <strong>walkComparisonExpression</strong>(mixed compExpr, <a href="../../../doctrine/orm/query/ast/comparisonexpression.html">ComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 377</div>
+<h3 id="walkConditionalFactor()">walkConditionalFactor</h3>
+<code class="signature">public  string <strong>walkConditionalFactor</strong>(mixed factor, <a href="../../../doctrine/orm/query/ast/conditionalfactor.html">ConditionalFactor</a> )</code>
+<div class="details">
+<p>Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 364</div>
+<h3 id="walkConditionalTerm()">walkConditionalTerm</h3>
+<code class="signature">public  string <strong>walkConditionalTerm</strong>(mixed condTerm, <a href="../../../doctrine/orm/query/ast/conditionalterm.html">ConditionalTerm</a> )</code>
+<div class="details">
+<p>Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 312</div>
+<h3 id="walkDeleteClause()">walkDeleteClause</h3>
+<code class="signature">public  string <strong>walkDeleteClause</strong>(mixed deleteClause, <a href="../../../doctrine/orm/query/ast/deleteclause.html">DeleteClause</a> )</code>
+<div class="details">
+<p>Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 299</div>
+<h3 id="walkDeleteStatement()">walkDeleteStatement</h3>
+<code class="signature">public  string <strong>walkDeleteStatement</strong>(mixed AST, <a href="../../../doctrine/orm/query/ast/deletestatement.html">DeleteStatement</a> )</code>
+<div class="details">
+<p>Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 416</div>
+<h3 id="walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression</h3>
+<code class="signature">public  string <strong>walkEmptyCollectionComparisonExpression</strong>(mixed emptyCollCompExpr, <a href="../../../doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">EmptyCollectionComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 390</div>
+<h3 id="walkExistsExpression()">walkExistsExpression</h3>
+<code class="signature">public  string <strong>walkExistsExpression</strong>(mixed existsExpr, <a href="../../../doctrine/orm/query/ast/existsexpression.html">ExistsExpression</a> )</code>
+<div class="details">
+<p>Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 92</div>
+<h3 id="walkFromClause()">walkFromClause</h3>
+<code class="signature">public  string <strong>walkFromClause</strong>(mixed fromClause)</code>
+<div class="details">
+<p>Walks down a FromClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 104</div>
+<h3 id="walkFunction()">walkFunction</h3>
+<code class="signature">public  string <strong>walkFunction</strong>(mixed function)</code>
+<div class="details">
+<p>Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 260</div>
+<h3 id="walkGroupByClause()">walkGroupByClause</h3>
+<code class="signature">public  string <strong>walkGroupByClause</strong>(mixed groupByClause, <a href="../../../doctrine/orm/query/ast/groupbyclause.html">GroupByClause</a> )</code>
+<div class="details">
+<p>Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 273</div>
+<h3 id="walkGroupByItem()">walkGroupByItem</h3>
+<code class="signature">public  string <strong>walkGroupByItem</strong>(mixed pathExpr, GroupByItem )</code>
+<div class="details">
+<p>Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 143</div>
+<h3 id="walkHavingClause()">walkHavingClause</h3>
+<code class="signature">public  string <strong>walkHavingClause</strong>(mixed havingClause, <a href="../../../doctrine/orm/query/ast/havingclause.html">HavingClause</a> )</code>
+<div class="details">
+<p>Walks down a HavingClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 442</div>
+<h3 id="walkInExpression()">walkInExpression</h3>
+<code class="signature">public  string <strong>walkInExpression</strong>(mixed inExpr, <a href="../../../doctrine/orm/query/ast/inexpression.html">InExpression</a> )</code>
+<div class="details">
+<p>Walks down an InExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 520</div>
+<h3 id="walkInputParameter()">walkInputParameter</h3>
+<code class="signature">public  string <strong>walkInputParameter</strong>(mixed inputParam, <a href="../../../doctrine/orm/query/ast/inputparameter.html">InputParameter</a> )</code>
+<div class="details">
+<p>Walks down an InputParameter AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 156</div>
+<h3 id="walkJoinVariableDeclaration()">walkJoinVariableDeclaration</h3>
+<code class="signature">public  string <strong>walkJoinVariableDeclaration</strong>(<a href="../../../doctrine/orm/query/ast/joinvariabledeclaration.html">JoinVariableDeclaration</a> joinVarDecl)</code>
+<div class="details">
+<p>Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 481</div>
+<h3 id="walkLikeExpression()">walkLikeExpression</h3>
+<code class="signature">public  string <strong>walkLikeExpression</strong>(mixed likeExpr, <a href="../../../doctrine/orm/query/ast/likeexpression.html">LikeExpression</a> )</code>
+<div class="details">
+<p>Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 455</div>
+<h3 id="walkLiteral()">walkLiteral</h3>
+<code class="signature">public  string <strong>walkLiteral</strong>(mixed literal, mixed )</code>
+<div class="details">
+<p>Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 429</div>
+<h3 id="walkNullComparisonExpression()">walkNullComparisonExpression</h3>
+<code class="signature">public  string <strong>walkNullComparisonExpression</strong>(mixed nullCompExpr, <a href="../../../doctrine/orm/query/ast/nullcomparisonexpression.html">NullComparisonExpression</a> )</code>
+<div class="details">
+<p>Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 117</div>
+<h3 id="walkOrderByClause()">walkOrderByClause</h3>
+<code class="signature">public  string <strong>walkOrderByClause</strong>(mixed orderByClause, <a href="../../../doctrine/orm/query/ast/orderbyclause.html">OrderByClause</a> )</code>
+<div class="details">
+<p>Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 130</div>
+<h3 id="walkOrderByItem()">walkOrderByItem</h3>
+<code class="signature">public  string <strong>walkOrderByItem</strong>(mixed orderByItem, <a href="../../../doctrine/orm/query/ast/orderbyitem.html">OrderByItem</a> )</code>
+<div class="details">
+<p>Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 598</div>
+<h3 id="walkPathExpression()">walkPathExpression</h3>
+<code class="signature">public  string <strong>walkPathExpression</strong>(mixed pathExpr, mixed )</code>
+<div class="details">
+<p>Walks down an PathExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 182</div>
+<h3 id="walkQuantifiedExpression()">walkQuantifiedExpression</h3>
+<code class="signature">public  string <strong>walkQuantifiedExpression</strong>(mixed qExpr, <a href="../../../doctrine/orm/query/ast/quantifiedexpression.html">QuantifiedExpression</a> )</code>
+<div class="details">
+<p>Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 80</div>
+<h3 id="walkSelectClause()">walkSelectClause</h3>
+<code class="signature">public  string <strong>walkSelectClause</strong>(mixed selectClause)</code>
+<div class="details">
+<p>Walks down a SelectClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 169</div>
+<h3 id="walkSelectExpression()">walkSelectExpression</h3>
+<code class="signature">public  string <strong>walkSelectExpression</strong>(<a href="../../../doctrine/orm/query/ast/selectexpression.html">SelectExpression</a> selectExpression)</code>
+<div class="details">
+<p>Walks down a SelectExpression AST node and generates the corresponding SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 68</div>
+<h3 id="walkSelectStatement()">walkSelectStatement</h3>
+<code class="signature">public  string <strong>walkSelectStatement</strong>(mixed AST)</code>
+<div class="details">
+<p>Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 585</div>
+<h3 id="walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression</h3>
+<code class="signature">public  string <strong>walkSimpleArithmeticExpression</strong>(mixed simpleArithmeticExpr, <a href="../../../doctrine/orm/query/ast/simplearithmeticexpression.html">SimpleArithmeticExpression</a> )</code>
+<div class="details">
+<p>Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 221</div>
+<h3 id="walkSimpleSelectClause()">walkSimpleSelectClause</h3>
+<code class="signature">public  string <strong>walkSimpleSelectClause</strong>(mixed simpleSelectClause, <a href="../../../doctrine/orm/query/ast/simpleselectclause.html">SimpleSelectClause</a> )</code>
+<div class="details">
+<p>Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 234</div>
+<h3 id="walkSimpleSelectExpression()">walkSimpleSelectExpression</h3>
+<code class="signature">public  string <strong>walkSimpleSelectExpression</strong>(mixed simpleSelectExpression, <a href="../../../doctrine/orm/query/ast/simpleselectexpression.html">SimpleSelectExpression</a> )</code>
+<div class="details">
+<p>Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 494</div>
+<h3 id="walkStateFieldPathExpression()">walkStateFieldPathExpression</h3>
+<code class="signature">public  string <strong>walkStateFieldPathExpression</strong>(mixed stateFieldPathExpression, StateFieldPathExpression )</code>
+<div class="details">
+<p>Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 559</div>
+<h3 id="walkStringPrimary()">walkStringPrimary</h3>
+<code class="signature">public  string <strong>walkStringPrimary</strong>(mixed stringPrimary, mixed )</code>
+<div class="details">
+<p>Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 195</div>
+<h3 id="walkSubselect()">walkSubselect</h3>
+<code class="signature">public  string <strong>walkSubselect</strong>(mixed subselect, <a href="../../../doctrine/orm/query/ast/subselect.html">Subselect</a> )</code>
+<div class="details">
+<p>Walks down a Subselect AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 208</div>
+<h3 id="walkSubselectFromClause()">walkSubselectFromClause</h3>
+<code class="signature">public  string <strong>walkSubselectFromClause</strong>(mixed subselectFromClause, <a href="../../../doctrine/orm/query/ast/subselectfromclause.html">SubselectFromClause</a> )</code>
+<div class="details">
+<p>Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 325</div>
+<h3 id="walkUpdateClause()">walkUpdateClause</h3>
+<code class="signature">public  string <strong>walkUpdateClause</strong>(mixed updateClause, <a href="../../../doctrine/orm/query/ast/updateclause.html">UpdateClause</a> )</code>
+<div class="details">
+<p>Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 338</div>
+<h3 id="walkUpdateItem()">walkUpdateItem</h3>
+<code class="signature">public  string <strong>walkUpdateItem</strong>(mixed updateItem, <a href="../../../doctrine/orm/query/ast/updateitem.html">UpdateItem</a> )</code>
+<div class="details">
+<p>Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 286</div>
+<h3 id="walkUpdateStatement()">walkUpdateStatement</h3>
+<code class="signature">public  string <strong>walkUpdateStatement</strong>(mixed AST, <a href="../../../doctrine/orm/query/ast/updatestatement.html">UpdateStatement</a> )</code>
+<div class="details">
+<p>Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Query/TreeWalkerChain.php at line 351</div>
+<h3 id="walkWhereClause()">walkWhereClause</h3>
+<code class="signature">public  string <strong>walkWhereClause</strong>(mixed whereClause, <a href="../../../doctrine/orm/query/ast/whereclause.html">WhereClause</a> )</code>
+<div class="details">
+<p>Walks down a WhereClause AST node, thereby generating the appropriate SQL.</p><dl>
+<dt>Returns:</dt>
+<dd>The SQL.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/query/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/query/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/query/treewalkerchain.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/querybuilder.html b/lib/api/doctrine/orm/querybuilder.html
new file mode 100644
index 000000000..8aa04c93c
--- /dev/null
+++ b/lib/api/doctrine/orm/querybuilder.html
@@ -0,0 +1,988 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>QueryBuilder (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/querybuilder.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\QueryBuilder</div>
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 38</div>
+
+<h1>Class QueryBuilder</h1>
+
+<pre class="tree"><strong>QueryBuilder</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>QueryBuilder</strong></p>
+
+<div class="comment" id="overview_description"><p>This class is responsible for building DQL query strings via an object oriented
+PHP interface.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#DELETE">DELETE</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#SELECT">$SELECT</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#STATE_CLEAN">STATE_CLEAN</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#STATE_DIRTY">$STATE_DIRTY</a></p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#UPDATE">UPDATE</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#QueryBuilder()">QueryBuilder</a>(<a href="../../doctrine/orm/entitymanager.html">EntityManager</a> em)</p><p class="description">Initializes a new QueryBuilder that uses the given EntityManager.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#add()">add</a>(string dqlPartName, string dqlPart, string append)</p><p class="description">Add a single DQL query part to the array of parts</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#addGroupBy()">addGroupBy</a>(string groupBy)</p><p class="description">Add to the existing GROUP BY clause[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->groupBy('u.last_login');
+->addGroupBy('u.created_at')</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#addOrderBy()">addOrderBy</a>(string sort, string order)</p><p class="description">Add to the existing ORDER BY clause</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#addSelect()">addSelect</a>(mixed select)</p><p class="description">Add to the SELECT statement[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->addSelect('p')
+->from('User', 'u')
+->leftJoin('u.Phonenumbers', 'p');</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#andHaving()">andHaving</a>(mixed having)</p><p class="description">Add to the existing HAVING clause with an AND</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#andWhere()">andWhere</a>(mixed where)</p><p class="description">Add a new WHERE statement with an AND[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.username LIKE ?')
+->andWhere('u.is_active = 1');</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#delete()">delete</a>(string delete, string alias)</p><p class="description">Construct a DQL DELETE query[php]
+$qb = $em->createQueryBuilder()
+->delete('User', 'u')
+->where('u.id = :user_id');
+->setParameter(':user_id', 1);</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/query/expr.html">Expr</a></td>
+<td class="description"><p class="name"><a href="#expr()">expr</a>()</p><p class="description">Gets an ExpressionBuilder used for object-oriented construction of query expressions.
+</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#from()">from</a>(string from, string alias)</p><p class="description">Specify the FROM part when constructing a SELECT DQL query[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getDQL()">getDQL</a>()</p><p class="description">Get the complete DQL string for this query builder instance[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+echo $qb->getDql(); // SELECT u FROM User u</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getDQLPart()">getDQLPart</a>(string queryPartName)</p><p class="description">Get a DQL part or parts by the part name</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getDQLParts()">getDQLParts</a>()</p><p class="description">Get the full DQL parts array</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#getEntityManager()">getEntityManager</a>()</p><p class="description">Get the associated EntityManager for this query builder.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getFirstResult()">getFirstResult</a>()</p><p class="description">Gets the position of the first result the query object was set to retrieve (the "offset").
+</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getMaxResults()">getMaxResults</a>()</p><p class="description">Gets the maximum number of results the query object was set to retrieve (the "limit").
+</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#getParameter()">getParameter</a>(mixed key)</p><p class="description">Gets a query parameter.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getParameters()">getParameters</a>(mixed params)</p><p class="description">Get all defined parameters</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/query.html">Query</a></td>
+<td class="description"><p class="name"><a href="#getQuery()">getQuery</a>()</p><p class="description">Constructs a Query instance from the current configuration of the builder.
+</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getRootAlias()">getRootAlias</a>()</p><p class="description">Get the root alias for the query. </p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getState()">getState</a>()</p><p class="description">Get the state of this query builder instance[php]
+if ($qb->getState() == QueryBuilder::STATE_DIRTY) {
+echo 'Query builder is dirty';
+} else {
+echo 'Query builder is clean';
+}</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#getType()">getType</a>()</p><p class="description">Get the type of the currently built query.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#groupBy()">groupBy</a>(string groupBy)</p><p class="description">Set the GROUP BY clause[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->groupBy('u.id');</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#having()">having</a>(mixed having)</p><p class="description">Set the HAVING clause</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#innerJoin()">innerJoin</a>(string join, string alias, string conditionType, string condition)</p><p class="description">Add an INNER JOIN to an associated class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#join()">join</a>(string join, string alias, string conditionType, string condition)</p><p class="description">Add a INNER JOIN to an associated class.
+</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#leftJoin()">leftJoin</a>(string join, string alias, string conditionType, string condition)</p><p class="description">Add a LEFT JOIN[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->leftJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#orHaving()">orHaving</a>(mixed having)</p><p class="description">Add to the existing HAVING clause with an OR</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#orWhere()">orWhere</a>(mixed where)</p><p class="description">Add a new WHERE statement with an OR[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.id = 1')
+->orWhere('u.id = 2');</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#orderBy()">orderBy</a>(string sort, string order)</p><p class="description">Set the ORDER BY clause</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#select()">select</a>(mixed select)</p><p class="description">Set the SELECT statement[php]
+$qb = $em->createQueryBuilder()
+->select('u', 'p')
+->from('User', 'u')
+->leftJoin('u.Phonenumbers', 'p');</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#set()">set</a>(string key, string value)</p><p class="description">Add a SET statement for a DQL UPDATE query[php]
+$qb = $em->createQueryBuilder()
+->update('User', 'u')
+->set('u.password', md5('password'))
+->where('u.id = ?');</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#setFirstResult()">setFirstResult</a>(integer firstResult)</p><p class="description">Sets the position of the first result to retrieve (the "offset").</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#setMaxResults()">setMaxResults</a>(integer maxResults)</p><p class="description">Sets the maximum number of results to retrieve (the "limit").</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#setParameter()">setParameter</a>(string|integer key, mixed value)</p><p class="description">Sets a query parameter.
+</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#setParameters()">setParameters</a>(array params)</p><p class="description">Sets a collection of query parameters.
+</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#update()">update</a>(string update, string alias)</p><p class="description">Construct a DQL UPDATE query[php]
+$qb = $em->createQueryBuilder()
+->update('User', 'u')
+->set('u.password', md5('password'))
+->where('u.id = ?');</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a></td>
+<td class="description"><p class="name"><a href="#where()">where</a>(mixed predicates)</p><p class="description">Set and override any existing WHERE statements[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.id = ?');You can optionally programatically build and/or expressions
+$qb = $em->createQueryBuilder();$or = $qb->expr()->orx();
+$or->add($qb->expr()->eq('u.id', 1));
+$or->add($qb->expr()->eq('u.id', 2));$qb->update('User', 'u')
+->set('u.password', md5('password'))
+->where($or);</p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 41</div>
+<h3 id="DELETE">DELETE</h3>
+<code class="signature">public final  int <strong>DELETE</strong> = 1</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 40</div>
+<h3 id="SELECT">SELECT</h3>
+<code class="signature">public final  int <strong>$SELECT</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 45</div>
+<h3 id="STATE_CLEAN">STATE_CLEAN</h3>
+<code class="signature">public final  int <strong>STATE_CLEAN</strong> = 1</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 44</div>
+<h3 id="STATE_DIRTY">STATE_DIRTY</h3>
+<code class="signature">public final  int <strong>$STATE_DIRTY</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 42</div>
+<h3 id="UPDATE">UPDATE</h3>
+<code class="signature">public final  int <strong>UPDATE</strong> = 2</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 101</div>
+<h3 id="QueryBuilder()">QueryBuilder</h3>
+<code class="signature">public <strong>QueryBuilder</strong>(<a href="../../doctrine/orm/entitymanager.html">EntityManager</a> em)</code>
+<div class="details">
+<p>Initializes a new <tt>QueryBuilder</tt> that uses the given <tt>EntityManager</tt>.</p><dl>
+<dt>Parameters:</dt>
+<dd>em - The EntityManager to use.</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 355</div>
+<h3 id="add()">add</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>add</strong>(string dqlPartName, string dqlPart, string append)</code>
+<div class="details">
+<p>Add a single DQL query part to the array of parts</p><dl>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 689</div>
+<h3 id="addGroupBy()">addGroupBy</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>addGroupBy</strong>(string groupBy)</code>
+<div class="details">
+<p>Add to the existing GROUP BY clause</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->groupBy('u.last_login');
+->addGroupBy('u.created_at')</p><dl>
+<dt>Parameters:</dt>
+<dd>groupBy - The GROUP BY clause</dd>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 771</div>
+<h3 id="addOrderBy()">addOrderBy</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>addOrderBy</strong>(string sort, string order)</code>
+<div class="details">
+<p>Add to the existing ORDER BY clause</p><dl>
+<dt>Parameters:</dt>
+<dd>sort - What to sort on</dd>
+<dd>order - Optional: The order to sort the results.</dd>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 408</div>
+<h3 id="addSelect()">addSelect</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>addSelect</strong>(mixed select)</code>
+<div class="details">
+<p>Add to the SELECT statement</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->addSelect('p')
+->from('User', 'u')
+->leftJoin('u.Phonenumbers', 'p');</p><dl>
+<dt>Parameters:</dt>
+<dd>select - String SELECT statement or SELECT Expr instance</dd>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 715</div>
+<h3 id="andHaving()">andHaving</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>andHaving</strong>(mixed having)</code>
+<div class="details">
+<p>Add to the existing HAVING clause with an AND</p><dl>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 614</div>
+<h3 id="andWhere()">andWhere</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>andWhere</strong>(mixed where)</code>
+<div class="details">
+<p>Add a new WHERE statement with an AND</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.username LIKE ?')
+->andWhere('u.is_active = 1');</p><dl>
+<dt>Parameters:</dt>
+<dd>where - The WHERE statement</dd>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+<dt>See Also:</dt>
+<dd>where()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 434</div>
+<h3 id="delete()">delete</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>delete</strong>(string delete, string alias)</code>
+<div class="details">
+<p>Construct a DQL DELETE query</p><p>[php]
+$qb = $em->createQueryBuilder()
+->delete('User', 'u')
+->where('u.id = :user_id');
+->setParameter(':user_id', 1);</p><dl>
+<dt>Parameters:</dt>
+<dd>delete - The model to delete</dd>
+<dd>alias - The alias of the model</dd>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 118</div>
+<h3 id="expr()">expr</h3>
+<code class="signature">public  <a href="../../doctrine/orm/query/expr.html">Expr</a> <strong>expr</strong>()</code>
+<div class="details">
+<p>Gets an ExpressionBuilder used for object-oriented construction of query expressions.
+Intended for convenient inline usage. Example:</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where($qb->expr()->eq('u.id', 1));</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 481</div>
+<h3 id="from()">from</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>from</strong>(string from, string alias)</code>
+<div class="details">
+<p>Specify the FROM part when constructing a SELECT DQL query</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')</p><dl>
+<dt>Parameters:</dt>
+<dd>from - The class name.</dd>
+<dd>alias - The alias of the class.</dd>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 171</div>
+<h3 id="getDQL()">getDQL</h3>
+<code class="signature">public  string <strong>getDQL</strong>()</code>
+<div class="details">
+<p>Get the complete DQL string for this query builder instance</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+echo $qb->getDql(); // SELECT u FROM User u</p><dl>
+<dt>Returns:</dt>
+<dd>The DQL string</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 782</div>
+<h3 id="getDQLPart()">getDQLPart</h3>
+<code class="signature">public  mixed <strong>getDQLPart</strong>(string queryPartName)</code>
+<div class="details">
+<p>Get a DQL part or parts by the part name</p><dl>
+<dt>Returns:</dt>
+<dd>$queryPart</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 792</div>
+<h3 id="getDQLParts()">getDQLParts</h3>
+<code class="signature">public  array <strong>getDQLParts</strong>()</code>
+<div class="details">
+<p>Get the full DQL parts array</p><dl>
+<dt>Returns:</dt>
+<dd>$dqlParts</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 138</div>
+<h3 id="getEntityManager()">getEntityManager</h3>
+<code class="signature">public  <a href="../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>getEntityManager</strong>()</code>
+<div class="details">
+<p>Get the associated EntityManager for this query builder.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 319</div>
+<h3 id="getFirstResult()">getFirstResult</h3>
+<code class="signature">public  integer <strong>getFirstResult</strong>()</code>
+<div class="details">
+<p>Gets the position of the first result the query object was set to retrieve (the "offset").
+Returns NULL if <code><a href="../../doctrine/orm/query.html#setFirstResult()">setFirstResult</a></code> was not applied to this query builder.</p><dl>
+<dt>Returns:</dt>
+<dd>The position of the first result.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 342</div>
+<h3 id="getMaxResults()">getMaxResults</h3>
+<code class="signature">public  integer <strong>getMaxResults</strong>()</code>
+<div class="details">
+<p>Gets the maximum number of results the query object was set to retrieve (the "limit").
+Returns NULL if <code><a href="../../doctrine/orm/query.html#setMaxResults()">setMaxResults</a></code> was not applied to this query builder.</p><dl>
+<dt>Returns:</dt>
+<dd>Maximum number of results.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 296</div>
+<h3 id="getParameter()">getParameter</h3>
+<code class="signature">public  mixed <strong>getParameter</strong>(mixed key)</code>
+<div class="details">
+<p>Gets a query parameter.</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The key (index or name) of the bound parameter.</dd>
+<dt>Returns:</dt>
+<dd>The value of the bound parameter.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 285</div>
+<h3 id="getParameters()">getParameters</h3>
+<code class="signature">public  array <strong>getParameters</strong>(mixed params)</code>
+<div class="details">
+<p>Get all defined parameters</p><dl>
+<dt>Returns:</dt>
+<dd>Defined parameters</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 212</div>
+<h3 id="getQuery()">getQuery</h3>
+<code class="signature">public  <a href="../../doctrine/orm/query.html">Query</a> <strong>getQuery</strong>()</code>
+<div class="details">
+<p>Constructs a Query instance from the current configuration of the builder.</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u');
+$q = $qb->getQuery();
+$results = $q->execute();</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 233</div>
+<h3 id="getRootAlias()">getRootAlias</h3>
+<code class="signature">public  string <strong>getRootAlias</strong>()</code>
+<div class="details">
+<p>Get the root alias for the query. This is the first entity alias involved
+in the construction of the query</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u');</p><p>echo $qb->getRootAlias(); // u</p><dl>
+<dt>Returns:</dt>
+<dd>$rootAlias</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 155</div>
+<h3 id="getState()">getState</h3>
+<code class="signature">public  integer <strong>getState</strong>()</code>
+<div class="details">
+<p>Get the state of this query builder instance</p><p>[php]
+if ($qb->getState() == QueryBuilder::STATE_DIRTY) {
+echo 'Query builder is dirty';
+} else {
+echo 'Query builder is clean';
+}</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 128</div>
+<h3 id="getType()">getType</h3>
+<code class="signature">public  integer <strong>getType</strong>()</code>
+<div class="details">
+<p>Get the type of the currently built query.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 670</div>
+<h3 id="groupBy()">groupBy</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>groupBy</strong>(string groupBy)</code>
+<div class="details">
+<p>Set the GROUP BY clause</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->groupBy('u.id');</p><dl>
+<dt>Parameters:</dt>
+<dd>groupBy - The GROUP BY clause</dd>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 700</div>
+<h3 id="having()">having</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>having</strong>(mixed having)</code>
+<div class="details">
+<p>Set the HAVING clause</p><dl>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 521</div>
+<h3 id="innerJoin()">innerJoin</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>innerJoin</strong>(string join, string alias, string conditionType, string condition)</code>
+<div class="details">
+<p>Add an INNER JOIN to an associated class.</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->innerJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');</p><dl>
+<dt>Parameters:</dt>
+<dd>join - The relationship to join</dd>
+<dd>alias - The alias of the join</dd>
+<dd>conditionType - The condition type constant. Either ON or WITH.</dd>
+<dd>condition - The condition for the join</dd>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 501</div>
+<h3 id="join()">join</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>join</strong>(string join, string alias, string conditionType, string condition)</code>
+<div class="details">
+<p>Add a INNER JOIN to an associated class.</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->innerJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');</p><dl>
+<dt>Parameters:</dt>
+<dd>join - The relationship to join</dd>
+<dd>alias - The alias of the join</dd>
+<dd>conditionType - The condition type constant. Either ON or WITH.</dd>
+<dd>condition - The condition for the join</dd>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 543</div>
+<h3 id="leftJoin()">leftJoin</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>leftJoin</strong>(string join, string alias, string conditionType, string condition)</code>
+<div class="details">
+<p>Add a LEFT JOIN</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->leftJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');</p><dl>
+<dt>Parameters:</dt>
+<dd>join - The relationship to join</dd>
+<dd>alias - The alias of the join</dd>
+<dd>conditionType - The condition type constant. Either ON or WITH.</dd>
+<dd>condition - The condition for the join</dd>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 736</div>
+<h3 id="orHaving()">orHaving</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>orHaving</strong>(mixed having)</code>
+<div class="details">
+<p>Add to the existing HAVING clause with an OR</p><dl>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 643</div>
+<h3 id="orWhere()">orWhere</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>orWhere</strong>(mixed where)</code>
+<div class="details">
+<p>Add a new WHERE statement with an OR</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.id = 1')
+->orWhere('u.id = 2');</p><dl>
+<dt>Parameters:</dt>
+<dd>where - The WHERE statement</dd>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+<dt>See Also:</dt>
+<dd>where()</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 758</div>
+<h3 id="orderBy()">orderBy</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>orderBy</strong>(string sort, string order)</code>
+<div class="details">
+<p>Set the ORDER BY clause</p><dl>
+<dt>Parameters:</dt>
+<dd>sort - What to sort on</dd>
+<dd>order - Optional: The order to sort the results.</dd>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 382</div>
+<h3 id="select()">select</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>select</strong>(mixed select)</code>
+<div class="details">
+<p>Set the SELECT statement</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u', 'p')
+->from('User', 'u')
+->leftJoin('u.Phonenumbers', 'p');</p><dl>
+<dt>Parameters:</dt>
+<dd>select - String SELECT statement or SELECT Expr instance</dd>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 563</div>
+<h3 id="set()">set</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>set</strong>(string key, string value)</code>
+<div class="details">
+<p>Add a SET statement for a DQL UPDATE query</p><p>[php]
+$qb = $em->createQueryBuilder()
+->update('User', 'u')
+->set('u.password', md5('password'))
+->where('u.id = ?');</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The key/field to set</dd>
+<dd>value - The value, expression, placeholder, etc. to use in the SET</dd>
+<dt>Returns:</dt>
+<dd>$qb</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 307</div>
+<h3 id="setFirstResult()">setFirstResult</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>setFirstResult</strong>(integer firstResult)</code>
+<div class="details">
+<p>Sets the position of the first result to retrieve (the "offset").</p><dl>
+<dt>Parameters:</dt>
+<dd>firstResult - The first result to return.</dd>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 330</div>
+<h3 id="setMaxResults()">setMaxResults</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>setMaxResults</strong>(integer maxResults)</code>
+<div class="details">
+<p>Sets the maximum number of results to retrieve (the "limit").</p><dl>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 252</div>
+<h3 id="setParameter()">setParameter</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>setParameter</strong>(string|integer key, mixed value)</code>
+<div class="details">
+<p>Sets a query parameter.</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.id = :user_id')
+->setParameter(':user_id', 1);</p><dl>
+<dt>Parameters:</dt>
+<dd>key - The parameter position or name.</dd>
+<dd>value - The parameter value.</dd>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 274</div>
+<h3 id="setParameters()">setParameters</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>setParameters</strong>(array params)</code>
+<div class="details">
+<p>Sets a collection of query parameters.</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.id = :user_id1 OR u.id = :user_id2')
+->setParameters(array(
+':user_id1' => 1,
+':user_id2' => 2
+));</p><dl>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 458</div>
+<h3 id="update()">update</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>update</strong>(string update, string alias)</code>
+<div class="details">
+<p>Construct a DQL UPDATE query</p><p>[php]
+$qb = $em->createQueryBuilder()
+->update('User', 'u')
+->set('u.password', md5('password'))
+->where('u.id = ?');</p><dl>
+<dt>Parameters:</dt>
+<dd>update - The model to update</dd>
+<dd>alias - The alias of the model</dd>
+<dt>Returns:</dt>
+<dd>This QueryBuilder instance.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/QueryBuilder.php at line 591</div>
+<h3 id="where()">where</h3>
+<code class="signature">public  <a href="../../doctrine/orm/querybuilder.html">QueryBuilder</a> <strong>where</strong>(mixed predicates)</code>
+<div class="details">
+<p>Set and override any existing WHERE statements</p><p>[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.id = ?');</p><p>You can optionally programatically build and/or expressions
+$qb = $em->createQueryBuilder();</p><p>$or = $qb->expr()->orx();
+$or->add($qb->expr()->eq('u.id', 1));
+$or->add($qb->expr()->eq('u.id', 2));</p><p>$qb->update('User', 'u')
+->set('u.password', md5('password'))
+->where($or);</p><dl>
+<dt>Parameters:</dt>
+<dd>predicates - The predicates.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/querybuilder.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/classmetadatareader.html b/lib/api/doctrine/orm/tools/classmetadatareader.html
new file mode 100644
index 000000000..91e1109aa
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/classmetadatareader.html
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ClassMetadataReader (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/classmetadatareader.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\ClassMetadataReader</div>
+<div class="location">/Doctrine/ORM/Tools/ClassMetadataReader.php at line 54</div>
+
+<h1>Class ClassMetadataReader</h1>
+
+<pre class="tree"><strong>ClassMetadataReader</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ClassMetadataReader</strong></p>
+
+<div class="comment" id="overview_description"><p>Class to read metadata mapping information from multiple sources into an array
+of ClassMetadataInfo instances.</p><p>The difference between this class and the ClassMetadataFactory is that this
+is just a tool for reading in the mapping information from files without 
+having it bound to the actual ORM and the mapping information referenced by 
+the EntityManager. This allows us to read any source of mapping information
+and return a single array of aggregated ClassMetadataInfo instances.</p><p>These arrays are used for exporting the mapping information to the supported
+mapping drivers, generating entities, generating repositories, etc.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addMappingSource()">addMappingSource</a>(string source, string type)</p><p class="description">Add a new mapping directory to the array of directories to convert and export
+to another format</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getMetadatas()">getMetadatas</a>(bool autoload)</p><p class="description">Get an array of ClassMetadataInfo instances for all the configured mapping
+directories. </p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#registerMappingDriver()">registerMappingDriver</a>(string name, string class)</p><p class="description">Register a new mapping driver class under a specified name</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setEntityManager()">setEntityManager</a>(<a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em)</p><p class="description">Optionally set the EntityManager instance to get the AnnotationDriver
+from instead of creating a new instance of the AnnotationDriver</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/ClassMetadataReader.php at line 139</div>
+<h3 id="addMappingSource()">addMappingSource</h3>
+<code class="signature">public  void <strong>addMappingSource</strong>(string source, string type)</code>
+<div class="details">
+<p>Add a new mapping directory to the array of directories to convert and export
+to another format</p><dl>
+<dt>Parameters:</dt>
+<dd>source - The source for the mapping</dd>
+<dd>type - The type of mapping files (yml, xml, etc.)</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/ClassMetadataReader.php at line 104</div>
+<h3 id="getMetadatas()">getMetadatas</h3>
+<code class="signature">public  array <strong>getMetadatas</strong>(bool autoload)</code>
+<div class="details">
+<p>Get an array of ClassMetadataInfo instances for all the configured mapping
+directories. Reads the mapping directories and populates ClassMetadataInfo
+instances.</p><p>If you specify $autoload = true then this method will return ClassMetadata
+instances instead of ClassMetadataInfo instances. Keep in mind that if you
+specify it to autoload and it doesn't find the class your autoloader may 
+throw an error.</p><dl>
+<dt>Parameters:</dt>
+<dd>autoload - Whether or to try and autoload the classes</dd>
+<dt>Returns:</dt>
+<dd>$classes</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/ClassMetadataReader.php at line 74</div>
+<h3 id="registerMappingDriver()">registerMappingDriver</h3>
+<code class="signature">public static  void <strong>registerMappingDriver</strong>(string name, string class)</code>
+<div class="details">
+<p>Register a new mapping driver class under a specified name</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/ClassMetadataReader.php at line 86</div>
+<h3 id="setEntityManager()">setEntityManager</h3>
+<code class="signature">public  void <strong>setEntityManager</strong>(<a href="../../../doctrine/orm/entitymanager.html">EntityManager</a> em)</code>
+<div class="details">
+<p>Optionally set the EntityManager instance to get the AnnotationDriver
+from instead of creating a new instance of the AnnotationDriver</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/classmetadatareader.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/clearcache/metadatacommand.html b/lib/api/doctrine/orm/tools/console/command/clearcache/metadatacommand.html
new file mode 100644
index 000000000..8243395bd
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/clearcache/metadatacommand.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>MetadataCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/metadatacommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\ClearCache\MetadataCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ClearCache/MetadataCommand.php at line 40</div>
+
+<h1>Class MetadataCommand</h1>
+
+<pre class="tree">Class:MetadataCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>MetadataCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>MetadataCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to clear the metadata cache of the various cache drivers.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ClearCache/MetadataCommand.php at line 45</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ClearCache/MetadataCommand.php at line 60</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/metadatacommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/clearcache/package-frame.html b/lib/api/doctrine/orm/tools/console/command/clearcache/package-frame.html
new file mode 100644
index 000000000..5de004747
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/clearcache/package-frame.html
@@ -0,0 +1,28 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Command\ClearCache (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Tools\Console\Command\ClearCache</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/metadatacommand.html" target="main">MetadataCommand</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/querycommand.html" target="main">QueryCommand</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/resultcommand.html" target="main">ResultCommand</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/clearcache/package-functions.html b/lib/api/doctrine/orm/tools/console/command/clearcache/package-functions.html
new file mode 100644
index 000000000..a0cc5ae81
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/clearcache/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/clearcache/package-globals.html b/lib/api/doctrine/orm/tools/console/command/clearcache/package-globals.html
new file mode 100644
index 000000000..a9a6b0f89
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/clearcache/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/clearcache/package-summary.html b/lib/api/doctrine/orm/tools/console/command/clearcache/package-summary.html
new file mode 100644
index 000000000..f14cce2c9
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/clearcache/package-summary.html
@@ -0,0 +1,66 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Command\ClearCache (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Tools\Console\Command\ClearCache</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/metadatacommand.html">MetadataCommand</a></td><td class="description">Command to clear the metadata cache of the various cache drivers.</td></tr>
+<tr><td class="name"><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/querycommand.html">QueryCommand</a></td><td class="description">Command to clear the query cache of the various cache drivers.</td></tr>
+<tr><td class="name"><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/resultcommand.html">ResultCommand</a></td><td class="description">Command to clear the result cache of the various cache drivers.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/clearcache/package-tree.html b/lib/api/doctrine/orm/tools/console/command/clearcache/package-tree.html
new file mode 100644
index 000000000..ec149d345
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/clearcache/package-tree.html
@@ -0,0 +1,53 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Command\ClearCache (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Tools\Console\Command\ClearCache</h1><div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/clearcache/querycommand.html b/lib/api/doctrine/orm/tools/console/command/clearcache/querycommand.html
new file mode 100644
index 000000000..3b3d9b3ec
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/clearcache/querycommand.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>QueryCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/querycommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\ClearCache\QueryCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryCommand.php at line 40</div>
+
+<h1>Class QueryCommand</h1>
+
+<pre class="tree">Class:QueryCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>QueryCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>QueryCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to clear the query cache of the various cache drivers.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryCommand.php at line 45</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ClearCache/QueryCommand.php at line 60</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/querycommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/clearcache/resultcommand.html b/lib/api/doctrine/orm/tools/console/command/clearcache/resultcommand.html
new file mode 100644
index 000000000..e75373f9c
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/clearcache/resultcommand.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>ResultCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/resultcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\ClearCache\ResultCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ClearCache/ResultCommand.php at line 40</div>
+
+<h1>Class ResultCommand</h1>
+
+<pre class="tree">Class:ResultCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>ResultCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ResultCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to clear the result cache of the various cache drivers.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ClearCache/ResultCommand.php at line 45</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ClearCache/ResultCommand.php at line 78</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/clearcache/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/clearcache/resultcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html b/lib/api/doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html
new file mode 100644
index 000000000..faf8f535b
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>ConvertDoctrine1SchemaCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\ConvertDoctrine1SchemaCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ConvertDoctrine1SchemaCommand.php at line 42</div>
+
+<h1>Class ConvertDoctrine1SchemaCommand</h1>
+
+<pre class="tree">Class:ConvertDoctrine1SchemaCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>ConvertDoctrine1SchemaCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConvertDoctrine1SchemaCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to convert a Doctrine 1 schema to a Doctrine 2 mapping file.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ConvertDoctrine1SchemaCommand.php at line 47</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ConvertDoctrine1SchemaCommand.php at line 86</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/convertmappingcommand.html b/lib/api/doctrine/orm/tools/console/command/convertmappingcommand.html
new file mode 100644
index 000000000..955a61fe3
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/convertmappingcommand.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>ConvertMappingCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/convertmappingcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\ConvertMappingCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php at line 42</div>
+
+<h1>Class ConvertMappingCommand</h1>
+
+<pre class="tree">Class:ConvertMappingCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>ConvertMappingCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConvertMappingCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to convert your mapping information between the various formats.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php at line 47</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/ConvertMappingCommand.php at line 85</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/convertmappingcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/ensureproductionsettingscommand.html b/lib/api/doctrine/orm/tools/console/command/ensureproductionsettingscommand.html
new file mode 100644
index 000000000..1dd324b2e
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/ensureproductionsettingscommand.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>EnsureProductionSettingsCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/ensureproductionsettingscommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\EnsureProductionSettingsCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/EnsureProductionSettingsCommand.php at line 40</div>
+
+<h1>Class EnsureProductionSettingsCommand</h1>
+
+<pre class="tree">Class:EnsureProductionSettingsCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>EnsureProductionSettingsCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>EnsureProductionSettingsCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to ensure that Doctrine is properly configured for a production environment.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/EnsureProductionSettingsCommand.php at line 45</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/EnsureProductionSettingsCommand.php at line 65</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/ensureproductionsettingscommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/generateentitiescommand.html b/lib/api/doctrine/orm/tools/console/command/generateentitiescommand.html
new file mode 100644
index 000000000..c78ffacac
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/generateentitiescommand.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>GenerateEntitiesCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/generateentitiescommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\GenerateEntitiesCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/GenerateEntitiesCommand.php at line 42</div>
+
+<h1>Class GenerateEntitiesCommand</h1>
+
+<pre class="tree">Class:GenerateEntitiesCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>GenerateEntitiesCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>GenerateEntitiesCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to generate entity classes and method stubs from your mapping information.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/GenerateEntitiesCommand.php at line 47</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/GenerateEntitiesCommand.php at line 94</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/generateentitiescommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/generateproxiescommand.html b/lib/api/doctrine/orm/tools/console/command/generateproxiescommand.html
new file mode 100644
index 000000000..24ede87c1
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/generateproxiescommand.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>GenerateProxiesCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/generateproxiescommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php at line 41</div>
+
+<h1>Class GenerateProxiesCommand</h1>
+
+<pre class="tree">Class:GenerateProxiesCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>GenerateProxiesCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>GenerateProxiesCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to (re)generate the proxy classes used by doctrine.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php at line 46</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/GenerateProxiesCommand.php at line 70</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/generateproxiescommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/generaterepositoriescommand.html b/lib/api/doctrine/orm/tools/console/command/generaterepositoriescommand.html
new file mode 100644
index 000000000..3ad79123f
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/generaterepositoriescommand.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>GenerateRepositoriesCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/generaterepositoriescommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\GenerateRepositoriesCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php at line 41</div>
+
+<h1>Class GenerateRepositoriesCommand</h1>
+
+<pre class="tree">Class:GenerateRepositoriesCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>GenerateRepositoriesCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>GenerateRepositoriesCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to generate repository classes for mapping information.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php at line 63</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php at line 86</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/generaterepositoriescommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/package-frame.html b/lib/api/doctrine/orm/tools/console/command/package-frame.html
new file mode 100644
index 000000000..9afb44962
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/package-frame.html
@@ -0,0 +1,32 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Command (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Tools\Console\Command</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../../doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html" target="main">ConvertDoctrine1SchemaCommand</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/convertmappingcommand.html" target="main">ConvertMappingCommand</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/ensureproductionsettingscommand.html" target="main">EnsureProductionSettingsCommand</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/generateentitiescommand.html" target="main">GenerateEntitiesCommand</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/generateproxiescommand.html" target="main">GenerateProxiesCommand</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/generaterepositoriescommand.html" target="main">GenerateRepositoriesCommand</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/rundqlcommand.html" target="main">RunDqlCommand</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/package-functions.html b/lib/api/doctrine/orm/tools/console/command/package-functions.html
new file mode 100644
index 000000000..a44031213
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/package-globals.html b/lib/api/doctrine/orm/tools/console/command/package-globals.html
new file mode 100644
index 000000000..8639c6cfc
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/package-summary.html b/lib/api/doctrine/orm/tools/console/command/package-summary.html
new file mode 100644
index 000000000..e95708f8b
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/package-summary.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Command (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Tools\Console\Command</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html">ConvertDoctrine1SchemaCommand</a></td><td class="description">Command to convert a Doctrine 1 schema to a Doctrine 2 mapping file.</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/console/command/convertmappingcommand.html">ConvertMappingCommand</a></td><td class="description">Command to convert your mapping information between the various formats.</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/console/command/ensureproductionsettingscommand.html">EnsureProductionSettingsCommand</a></td><td class="description">Command to ensure that Doctrine is properly configured for a production environment.</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/console/command/generateentitiescommand.html">GenerateEntitiesCommand</a></td><td class="description">Command to generate entity classes and method stubs from your mapping information.</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/console/command/generateproxiescommand.html">GenerateProxiesCommand</a></td><td class="description">Command to (re)generate the proxy classes used by doctrine.</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/console/command/generaterepositoriescommand.html">GenerateRepositoriesCommand</a></td><td class="description">Command to generate repository classes for mapping information.</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/console/command/rundqlcommand.html">RunDqlCommand</a></td><td class="description">Command to execute DQL queries in a given EntityManager.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/package-tree.html b/lib/api/doctrine/orm/tools/console/command/package-tree.html
new file mode 100644
index 000000000..cb6985d8a
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/package-tree.html
@@ -0,0 +1,53 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Command (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Tools\Console\Command</h1><div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/rundqlcommand.html b/lib/api/doctrine/orm/tools/console/command/rundqlcommand.html
new file mode 100644
index 000000000..dda9d8cf9
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/rundqlcommand.html
@@ -0,0 +1,135 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>RunDqlCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/rundqlcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\RunDqlCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/RunDqlCommand.php at line 40</div>
+
+<h1>Class RunDqlCommand</h1>
+
+<pre class="tree">Class:RunDqlCommand - Superclass: Console
+Console<br>&lfloor;&nbsp;<strong>RunDqlCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>RunDqlCommand</strong><br>extends Console
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to execute DQL queries in a given EntityManager.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/RunDqlCommand.php at line 45</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/RunDqlCommand.php at line 79</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/command/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/command/rundqlcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/schematool/abstractcommand.html b/lib/api/doctrine/orm/tools/console/command/schematool/abstractcommand.html
new file mode 100644
index 000000000..a53cf72ac
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/schematool/abstractcommand.html
@@ -0,0 +1,114 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>AbstractCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\SchemaTool\AbstractCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/AbstractCommand.php at line 33</div>
+
+<h1>Class AbstractCommand</h1>
+
+<pre class="tree">Class:AbstractCommand - Superclass: Command
+Command<br>&lfloor;&nbsp;<strong>AbstractCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractCommand</strong><br>extends Command
+
+</p>
+
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#execute()">execute</a>(mixed input, mixed output)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected abstract  void</td>
+<td class="description"><p class="name"><a href="#executeSchemaCommand()">executeSchemaCommand</a>(InputInterface input, OutputInterface output, <a href="../../../../../../doctrine/orm/tools/schematool.html">SchemaTool</a> schemaTool, array metadatas)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/AbstractCommand.php at line 46</div>
+<h3 id="execute()">execute</h3>
+<code class="signature">protected  void <strong>execute</strong>(mixed input, mixed output)</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/AbstractCommand.php at line 41</div>
+<h3 id="executeSchemaCommand()">executeSchemaCommand</h3>
+<code class="signature">protected abstract  void <strong>executeSchemaCommand</strong>(InputInterface input, OutputInterface output, <a href="../../../../../../doctrine/orm/tools/schematool.html">SchemaTool</a> schemaTool, array metadatas)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/schematool/createcommand.html b/lib/api/doctrine/orm/tools/console/command/schematool/createcommand.html
new file mode 100644
index 000000000..ad295dc03
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/schematool/createcommand.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>CreateCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/createcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\SchemaTool\CreateCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/CreateCommand.php at line 42</div>
+
+<h1>Class CreateCommand</h1>
+
+<pre class="tree">Class:CreateCommand - Superclass: AbstractCommand
+Class:AbstractCommand - Superclass: Command
+Command<br>&lfloor;&nbsp;<a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html">AbstractCommand</a><br>      &lfloor;&nbsp;<strong>CreateCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>CreateCommand</strong><br>extends <a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html">AbstractCommand</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to create the database schema for a set of classes based on their mappings.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#executeSchemaCommand()">executeSchemaCommand</a>(mixed input, mixed output, mixed schemaTool, mixed metadatas)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Tools\Console\Command\SchemaTool\AbstractCommand</th></tr>
+<tr><td><a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html#execute()">execute</a>, <a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html#executeSchemaCommand()">executeSchemaCommand</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/CreateCommand.php at line 47</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/CreateCommand.php at line 66</div>
+<h3 id="executeSchemaCommand()">executeSchemaCommand</h3>
+<code class="signature">protected  void <strong>executeSchemaCommand</strong>(mixed input, mixed output, mixed schemaTool, mixed metadatas)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/createcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/schematool/dropcommand.html b/lib/api/doctrine/orm/tools/console/command/schematool/dropcommand.html
new file mode 100644
index 000000000..75af21e92
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/schematool/dropcommand.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>DropCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/dropcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\SchemaTool\DropCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/DropCommand.php at line 42</div>
+
+<h1>Class DropCommand</h1>
+
+<pre class="tree">Class:DropCommand - Superclass: AbstractCommand
+Class:AbstractCommand - Superclass: Command
+Command<br>&lfloor;&nbsp;<a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html">AbstractCommand</a><br>      &lfloor;&nbsp;<strong>DropCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>DropCommand</strong><br>extends <a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html">AbstractCommand</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to drop the database schema for a set of classes based on their mappings.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#executeSchemaCommand()">executeSchemaCommand</a>(mixed input, mixed output, mixed schemaTool, mixed metadatas)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Tools\Console\Command\SchemaTool\AbstractCommand</th></tr>
+<tr><td><a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html#execute()">execute</a>, <a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html#executeSchemaCommand()">executeSchemaCommand</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/DropCommand.php at line 47</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/DropCommand.php at line 67</div>
+<h3 id="executeSchemaCommand()">executeSchemaCommand</h3>
+<code class="signature">protected  void <strong>executeSchemaCommand</strong>(mixed input, mixed output, mixed schemaTool, mixed metadatas)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/dropcommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/schematool/package-frame.html b/lib/api/doctrine/orm/tools/console/command/schematool/package-frame.html
new file mode 100644
index 000000000..759d917da
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/schematool/package-frame.html
@@ -0,0 +1,29 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Command\SchemaTool (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Tools\Console\Command\SchemaTool</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html" target="main">AbstractCommand</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/createcommand.html" target="main">CreateCommand</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/dropcommand.html" target="main">DropCommand</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/updatecommand.html" target="main">UpdateCommand</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/schematool/package-functions.html b/lib/api/doctrine/orm/tools/console/command/schematool/package-functions.html
new file mode 100644
index 000000000..60c7a97ed
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/schematool/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/schematool/package-globals.html b/lib/api/doctrine/orm/tools/console/command/schematool/package-globals.html
new file mode 100644
index 000000000..292bd3dfc
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/schematool/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/schematool/package-summary.html b/lib/api/doctrine/orm/tools/console/command/schematool/package-summary.html
new file mode 100644
index 000000000..65879393f
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/schematool/package-summary.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Command\SchemaTool (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Tools\Console\Command\SchemaTool</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html">AbstractCommand</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="../../../../../../doctrine/orm/tools/console/command/schematool/createcommand.html">CreateCommand</a></td><td class="description">Command to create the database schema for a set of classes based on their mappings.</td></tr>
+<tr><td class="name"><a href="../../../../../../doctrine/orm/tools/console/command/schematool/dropcommand.html">DropCommand</a></td><td class="description">Command to drop the database schema for a set of classes based on their mappings.</td></tr>
+<tr><td class="name"><a href="../../../../../../doctrine/orm/tools/console/command/schematool/updatecommand.html">UpdateCommand</a></td><td class="description">Command to update the database schema for a set of classes based on their mappings.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/schematool/package-tree.html b/lib/api/doctrine/orm/tools/console/command/schematool/package-tree.html
new file mode 100644
index 000000000..2012e4935
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/schematool/package-tree.html
@@ -0,0 +1,53 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Command\SchemaTool (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Tools\Console\Command\SchemaTool</h1><div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/command/schematool/updatecommand.html b/lib/api/doctrine/orm/tools/console/command/schematool/updatecommand.html
new file mode 100644
index 000000000..a96827726
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/command/schematool/updatecommand.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css">
+<link rel="start" href="../../../../../../overview-summary.html">
+
+<title>UpdateCommand (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/updatecommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Command\SchemaTool\UpdateCommand</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php at line 42</div>
+
+<h1>Class UpdateCommand</h1>
+
+<pre class="tree">Class:UpdateCommand - Superclass: AbstractCommand
+Class:AbstractCommand - Superclass: Command
+Command<br>&lfloor;&nbsp;<a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html">AbstractCommand</a><br>      &lfloor;&nbsp;<strong>UpdateCommand</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>UpdateCommand</strong><br>extends <a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html">AbstractCommand</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Command to update the database schema for a set of classes based on their mappings.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#configure()">configure</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type">protected  void</td>
+<td class="description"><p class="name"><a href="#executeSchemaCommand()">executeSchemaCommand</a>(mixed input, mixed output, mixed schemaTool, mixed metadatas)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Tools\Console\Command\SchemaTool\AbstractCommand</th></tr>
+<tr><td><a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html#execute()">execute</a>, <a href="../../../../../../doctrine/orm/tools/console/command/schematool/abstractcommand.html#executeSchemaCommand()">executeSchemaCommand</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php at line 47</div>
+<h3 id="configure()">configure</h3>
+<code class="signature">protected  void <strong>configure</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Console\Command\Command</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Command/SchemaTool/UpdateCommand.php at line 72</div>
+<h3 id="executeSchemaCommand()">executeSchemaCommand</h3>
+<code class="signature">protected  void <strong>executeSchemaCommand</strong>(mixed input, mixed output, mixed schemaTool, mixed metadatas)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../../doctrine/orm/tools/console/command/schematool/package-tree.html">Tree</a></li>
+<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../../doctrine/orm/tools/console/command/schematool/updatecommand.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/helper/entitymanagerhelper.html b/lib/api/doctrine/orm/tools/console/helper/entitymanagerhelper.html
new file mode 100644
index 000000000..ba80e531d
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/helper/entitymanagerhelper.html
@@ -0,0 +1,168 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>EntityManagerHelper (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/helper/entitymanagerhelper.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper</div>
+<div class="location">/Doctrine/ORM/Tools/Console/Helper/EntityManagerHelper.php at line 39</div>
+
+<h1>Class EntityManagerHelper</h1>
+
+<pre class="tree">Class:EntityManagerHelper - Superclass: Helper
+Helper<br>&lfloor;&nbsp;<strong>EntityManagerHelper</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>EntityManagerHelper</strong><br>extends Helper
+
+</p>
+
+<div class="comment" id="overview_description"><p>Doctrine CLI Connection Helper.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  <a href="../../../../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#_em">$_em</a></p><p class="description">Doctrine ORM EntityManager</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#EntityManagerHelper()">EntityManagerHelper</a>(mixed em, <a href="../../../../../doctrine/dbal/connection.html">Connection</a> connection)</p><p class="description">Constructor</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../../../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#getEntityManager()">getEntityManager</a>()</p><p class="description">Retrieves Doctrine ORM EntityManager</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#getName()">getName</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Helper/EntityManagerHelper.php at line 45</div>
+<h3 id="_em">_em</h3>
+<code class="signature">protected  <a href="../../../../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>$_em</strong></code>
+<div class="details">
+<p>Doctrine ORM EntityManager</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Helper/EntityManagerHelper.php at line 52</div>
+<h3 id="EntityManagerHelper()">EntityManagerHelper</h3>
+<code class="signature">public <strong>EntityManagerHelper</strong>(mixed em, <a href="../../../../../doctrine/dbal/connection.html">Connection</a> connection)</code>
+<div class="details">
+<p>Constructor</p><dl>
+<dt>Parameters:</dt>
+<dd>connection - Doctrine Database Connection</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/Helper/EntityManagerHelper.php at line 62</div>
+<h3 id="getEntityManager()">getEntityManager</h3>
+<code class="signature">public  <a href="../../../../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>getEntityManager</strong>()</code>
+<div class="details">
+<p>Retrieves Doctrine ORM EntityManager</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/Helper/EntityManagerHelper.php at line 70</div>
+<h3 id="getName()">getName</h3>
+<code class="signature">public  void <strong>getName</strong>()</code>
+<div class="details">
+<p></p><dl>
+<dt>See Also:</dt>
+<dd>Helper</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/helper/entitymanagerhelper.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/helper/package-frame.html b/lib/api/doctrine/orm/tools/console/helper/package-frame.html
new file mode 100644
index 000000000..7242bcfad
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/helper/package-frame.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Helper (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Tools\Console\Helper</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/entitymanagerhelper.html" target="main">EntityManagerHelper</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/helper/package-functions.html b/lib/api/doctrine/orm/tools/console/helper/package-functions.html
new file mode 100644
index 000000000..108aa13d2
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/helper/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/helper/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/helper/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/helper/package-globals.html b/lib/api/doctrine/orm/tools/console/helper/package-globals.html
new file mode 100644
index 000000000..7a9dd2a61
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/helper/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/helper/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/helper/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/helper/package-summary.html b/lib/api/doctrine/orm/tools/console/helper/package-summary.html
new file mode 100644
index 000000000..2ce0426bc
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/helper/package-summary.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Helper (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/orm/tools/console/helper/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/helper/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Tools\Console\Helper</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/console/helper/entitymanagerhelper.html">EntityManagerHelper</a></td><td class="description">Doctrine CLI Connection Helper.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/orm/tools/console/helper/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/helper/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/helper/package-tree.html b/lib/api/doctrine/orm/tools/console/helper/package-tree.html
new file mode 100644
index 000000000..a7adf455f
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/helper/package-tree.html
@@ -0,0 +1,53 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console\Helper (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/helper/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Tools\Console\Helper</h1><div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/console/helper/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/console/helper/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/metadatafilter.html b/lib/api/doctrine/orm/tools/console/metadatafilter.html
new file mode 100644
index 000000000..734448192
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/metadatafilter.html
@@ -0,0 +1,155 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>MetadataFilter (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/console/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/tools/console/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/console/metadatafilter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Console\MetadataFilter</div>
+<div class="location">/Doctrine/ORM/Tools/Console/MetadataFilter.php at line 36</div>
+
+<h1>Class MetadataFilter</h1>
+
+<pre class="tree">Class:MetadataFilter - Superclass: FilterIterator
+FilterIterator<br>&lfloor;&nbsp;<strong>MetadataFilter</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>MetadataFilter</strong><br>extends FilterIterator
+
+</p>
+
+<div class="comment" id="overview_description"><p>Used by CLI Tools to restrict entity-based commands to given patterns.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#MetadataFilter()">MetadataFilter</a>(mixed metadata, mixed filter)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#accept()">accept</a>()</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#count()">count</a>()</p></td>
+</tr>
+<tr>
+<td class="type">static  array</td>
+<td class="description"><p class="name"><a href="#filter()">filter</a>(array metadatas, array|string filter)</p><p class="description">Filter Metadatas by one or more filter options.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/MetadataFilter.php at line 53</div>
+<h3 id="MetadataFilter()">MetadataFilter</h3>
+<code class="signature">public <strong>MetadataFilter</strong>(mixed metadata, mixed filter)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Console/MetadataFilter.php at line 59</div>
+<h3 id="accept()">accept</h3>
+<code class="signature">public  void <strong>accept</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/MetadataFilter.php at line 76</div>
+<h3 id="count()">count</h3>
+<code class="signature">public  void <strong>count</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Console/MetadataFilter.php at line 45</div>
+<h3 id="filter()">filter</h3>
+<code class="signature">public static  array <strong>filter</strong>(array metadatas, array|string filter)</code>
+<div class="details">
+<p>Filter Metadatas by one or more filter options.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/console/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/tools/console/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/console/metadatafilter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/package-frame.html b/lib/api/doctrine/orm/tools/console/package-frame.html
new file mode 100644
index 000000000..03b914e07
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/package-frame.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Tools\Console</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/orm/tools/console/metadatafilter.html" target="main">MetadataFilter</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/package-functions.html b/lib/api/doctrine/orm/tools/console/package-functions.html
new file mode 100644
index 000000000..e6fd6538b
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/console/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/console/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/console/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/console/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/package-globals.html b/lib/api/doctrine/orm/tools/console/package-globals.html
new file mode 100644
index 000000000..aa4ca7d61
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/console/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/console/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/console/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/console/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/package-summary.html b/lib/api/doctrine/orm/tools/console/package-summary.html
new file mode 100644
index 000000000..ed295f30b
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/package-summary.html
@@ -0,0 +1,64 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/tools/console/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/console/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Tools\Console</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/tools/console/metadatafilter.html">MetadataFilter</a></td><td class="description">Used by CLI Tools to restrict entity-based commands to given patterns.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/tools/console/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/console/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/console/package-tree.html b/lib/api/doctrine/orm/tools/console/package-tree.html
new file mode 100644
index 000000000..c4d628559
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/console/package-tree.html
@@ -0,0 +1,53 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Console (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/console/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/console/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Tools\Console</h1><div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/console/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/console/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/convertdoctrine1schema.html b/lib/api/doctrine/orm/tools/convertdoctrine1schema.html
new file mode 100644
index 000000000..2dcacc7c1
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/convertdoctrine1schema.html
@@ -0,0 +1,139 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ConvertDoctrine1Schema (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/convertdoctrine1schema.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\ConvertDoctrine1Schema</div>
+<div class="location">/Doctrine/ORM/Tools/ConvertDoctrine1Schema.php at line 39</div>
+
+<h1>Class ConvertDoctrine1Schema</h1>
+
+<pre class="tree"><strong>ConvertDoctrine1Schema</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ConvertDoctrine1Schema</strong></p>
+
+<div class="comment" id="overview_description"><p>Class to help with converting Doctrine 1 schema files to Doctrine 2 mapping files</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ConvertDoctrine1Schema()">ConvertDoctrine1Schema</a>(array from)</p><p class="description">Constructor passes the directory or array of directories
+to convert the Doctrine 1 schema files from</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getMetadatas()">getMetadatas</a>()</p><p class="description">Get an array of ClassMetadataInfo instances from the passed
+Doctrine 1 schema</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/ConvertDoctrine1Schema.php at line 54</div>
+<h3 id="ConvertDoctrine1Schema()">ConvertDoctrine1Schema</h3>
+<code class="signature">public <strong>ConvertDoctrine1Schema</strong>(array from)</code>
+<div class="details">
+<p>Constructor passes the directory or array of directories
+to convert the Doctrine 1 schema files from</p><dl>
+<dt>Author:</dt>
+<dd>Jonathan Wage</dd>
+</dl>
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/ConvertDoctrine1Schema.php at line 65</div>
+<h3 id="getMetadatas()">getMetadatas</h3>
+<code class="signature">public  array <strong>getMetadatas</strong>()</code>
+<div class="details">
+<p>Get an array of ClassMetadataInfo instances from the passed
+Doctrine 1 schema</p><dl>
+<dt>Returns:</dt>
+<dd>$metadatas An array of ClassMetadataInfo instances</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/convertdoctrine1schema.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/entitygenerator.html b/lib/api/doctrine/orm/tools/entitygenerator.html
new file mode 100644
index 000000000..16c0fd118
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/entitygenerator.html
@@ -0,0 +1,246 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>EntityGenerator (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/entitygenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\EntityGenerator</div>
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 50</div>
+
+<h1>Class EntityGenerator</h1>
+
+<pre class="tree"><strong>EntityGenerator</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>EntityGenerator</strong></p>
+
+<div class="comment" id="overview_description"><p>Generic class used to generate PHP5 entity classes from ClassMetadataInfo instances</p><p>[php]
+$classes = $em->getClassMetadataFactory()->getAllMetadata();</p><p>$generator = new \Doctrine\ORM\Tools\EntityGenerator();
+$generator->setGenerateAnnotations(true);
+$generator->setGenerateStubMethods(true);
+$generator->setRegenerateEntityIfExists(false);
+$generator->setUpdateEntityIfExists(true);
+$generator->generate($classes, '/path/to/generate/entities');</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+</dl>
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#generate()">generate</a>(array metadatas, string outputDirectory)</p><p class="description">Generate and write entity classes for the given array of ClassMetadataInfo instances</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#generateEntityClass()">generateEntityClass</a>(<a href="../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</p><p class="description">Generate a PHP5 Doctrine 2 entity class from the given ClassMetadataInfo instance</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#generateUpdatedEntityClass()">generateUpdatedEntityClass</a>(<a href="../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata, string path)</p><p class="description">Generate the updated code for the given ClassMetadataInfo and entity at path</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setClassToExtend()">setClassToExtend</a>(mixed classToExtend)</p><p class="description">Set the name of the class the generated classes should extend from</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setExtension()">setExtension</a>(string extension)</p><p class="description">Set the extension to use when writing php files to disk</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setGenerateAnnotations()">setGenerateAnnotations</a>(bool bool)</p><p class="description">Set whether or not to generate annotations for the entity</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setGenerateStubMethods()">setGenerateStubMethods</a>(bool bool)</p><p class="description">Set whether or not to generate stub methods for the entity</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setNumSpaces()">setNumSpaces</a>(integer numSpaces)</p><p class="description">Set the number of spaces the exported class should have</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setRegenerateEntityIfExists()">setRegenerateEntityIfExists</a>(bool bool)</p><p class="description">Set whether or not to regenerate the entity if it exists</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setUpdateEntityIfExists()">setUpdateEntityIfExists</a>(bool bool)</p><p class="description">Set whether or not to try and update the entity if it already exists</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#writeEntityClass()">writeEntityClass</a>(<a href="../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata, string outputDirectory)</p><p class="description">Generated and write entity class to disk for the given ClassMetadataInfo instance</p></td>
+</tr>
+</table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 142</div>
+<h3 id="generate()">generate</h3>
+<code class="signature">public  void <strong>generate</strong>(array metadatas, string outputDirectory)</code>
+<div class="details">
+<p>Generate and write entity classes for the given array of ClassMetadataInfo instances</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 188</div>
+<h3 id="generateEntityClass()">generateEntityClass</h3>
+<code class="signature">public  string <strong>generateEntityClass</strong>(<a href="../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</code>
+<div class="details">
+<p>Generate a PHP5 Doctrine 2 entity class from the given ClassMetadataInfo instance</p><dl>
+<dt>Returns:</dt>
+<dd>$code</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 216</div>
+<h3 id="generateUpdatedEntityClass()">generateUpdatedEntityClass</h3>
+<code class="signature">public  string <strong>generateUpdatedEntityClass</strong>(<a href="../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata, string path)</code>
+<div class="details">
+<p>Generate the updated code for the given ClassMetadataInfo and entity at path</p><dl>
+<dt>Returns:</dt>
+<dd>$code;</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 254</div>
+<h3 id="setClassToExtend()">setClassToExtend</h3>
+<code class="signature">public  void <strong>setClassToExtend</strong>(mixed classToExtend)</code>
+<div class="details">
+<p>Set the name of the class the generated classes should extend from</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 244</div>
+<h3 id="setExtension()">setExtension</h3>
+<code class="signature">public  void <strong>setExtension</strong>(string extension)</code>
+<div class="details">
+<p>Set the extension to use when writing php files to disk</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 265</div>
+<h3 id="setGenerateAnnotations()">setGenerateAnnotations</h3>
+<code class="signature">public  void <strong>setGenerateAnnotations</strong>(bool bool)</code>
+<div class="details">
+<p>Set whether or not to generate annotations for the entity</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 298</div>
+<h3 id="setGenerateStubMethods()">setGenerateStubMethods</h3>
+<code class="signature">public  void <strong>setGenerateStubMethods</strong>(bool bool)</code>
+<div class="details">
+<p>Set whether or not to generate stub methods for the entity</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 232</div>
+<h3 id="setNumSpaces()">setNumSpaces</h3>
+<code class="signature">public  void <strong>setNumSpaces</strong>(integer numSpaces)</code>
+<div class="details">
+<p>Set the number of spaces the exported class should have</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 287</div>
+<h3 id="setRegenerateEntityIfExists()">setRegenerateEntityIfExists</h3>
+<code class="signature">public  void <strong>setRegenerateEntityIfExists</strong>(bool bool)</code>
+<div class="details">
+<p>Set whether or not to regenerate the entity if it exists</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 276</div>
+<h3 id="setUpdateEntityIfExists()">setUpdateEntityIfExists</h3>
+<code class="signature">public  void <strong>setUpdateEntityIfExists</strong>(bool bool)</code>
+<div class="details">
+<p>Set whether or not to try and update the entity if it already exists</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/EntityGenerator.php at line 156</div>
+<h3 id="writeEntityClass()">writeEntityClass</h3>
+<code class="signature">public  void <strong>writeEntityClass</strong>(<a href="../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata, string outputDirectory)</code>
+<div class="details">
+<p>Generated and write entity class to disk for the given ClassMetadataInfo instance</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/entitygenerator.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/event/generateschemaeventargs.html b/lib/api/doctrine/orm/tools/event/generateschemaeventargs.html
new file mode 100644
index 000000000..ac49c6b37
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/event/generateschemaeventargs.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>GenerateSchemaEventArgs (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/tools/event/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/generateschemaeventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Event\GenerateSchemaEventArgs</div>
+<div class="location">/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php at line 36</div>
+
+<h1>Class GenerateSchemaEventArgs</h1>
+
+<pre class="tree">Class:GenerateSchemaEventArgs - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>GenerateSchemaEventArgs</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>GenerateSchemaEventArgs</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>Event Args used for the Events::postGenerateSchema event.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#GenerateSchemaEventArgs()">GenerateSchemaEventArgs</a>(mixed em, <a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema, <a href="../../../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> classMetadata, <a href="../../../../doctrine/dbal/schema/table.html">Table</a> classTable)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../../../doctrine/orm/entitymanager.html">EntityManager</a></td>
+<td class="description"><p class="name"><a href="#getEntityManager()">getEntityManager</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../../doctrine/dbal/schema/schema.html">Schema</a></td>
+<td class="description"><p class="name"><a href="#getSchema()">getSchema</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php at line 46</div>
+<h3 id="GenerateSchemaEventArgs()">GenerateSchemaEventArgs</h3>
+<code class="signature">public <strong>GenerateSchemaEventArgs</strong>(mixed em, <a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema, <a href="../../../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> classMetadata, <a href="../../../../doctrine/dbal/schema/table.html">Table</a> classTable)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php at line 55</div>
+<h3 id="getEntityManager()">getEntityManager</h3>
+<code class="signature">public  <a href="../../../../doctrine/orm/entitymanager.html">EntityManager</a> <strong>getEntityManager</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Event/GenerateSchemaEventArgs.php at line 62</div>
+<h3 id="getSchema()">getSchema</h3>
+<code class="signature">public  <a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> <strong>getSchema</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/tools/event/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/generateschemaeventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/event/generateschematableeventargs.html b/lib/api/doctrine/orm/tools/event/generateschematableeventargs.html
new file mode 100644
index 000000000..0481fa212
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/event/generateschematableeventargs.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>GenerateSchemaTableEventArgs (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/tools/event/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/generateschematableeventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Event\GenerateSchemaTableEventArgs</div>
+<div class="location">/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php at line 37</div>
+
+<h1>Class GenerateSchemaTableEventArgs</h1>
+
+<pre class="tree">Class:GenerateSchemaTableEventArgs - Superclass: Doctrine
+Doctrine<br>&lfloor;&nbsp;<strong>GenerateSchemaTableEventArgs</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>GenerateSchemaTableEventArgs</strong><br>extends Doctrine
+
+</p>
+
+<div class="comment" id="overview_description"><p>Event Args used for the Events::postGenerateSchemaTable event.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.com</code></dd>
+<dt>Since:</dt>
+<dd>1.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#GenerateSchemaTableEventArgs()">GenerateSchemaTableEventArgs</a>(<a href="../../../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> classMetadata, <a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema, <a href="../../../../doctrine/dbal/schema/table.html">Table</a> classTable)</p><p class="description"></p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> <a href="../../../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a></td>
+<td class="description"><p class="name"><a href="#getClassMetadata()">getClassMetadata</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../../doctrine/dbal/schema/table.html">Table</a></td>
+<td class="description"><p class="name"><a href="#getClassTable()">getClassTable</a>()</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../../doctrine/dbal/schema/schema.html">Schema</a></td>
+<td class="description"><p class="name"><a href="#getSchema()">getSchema</a>()</p><p class="description"></p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php at line 48</div>
+<h3 id="GenerateSchemaTableEventArgs()">GenerateSchemaTableEventArgs</h3>
+<code class="signature">public <strong>GenerateSchemaTableEventArgs</strong>(<a href="../../../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> classMetadata, <a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> schema, <a href="../../../../doctrine/dbal/schema/table.html">Table</a> classTable)</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php at line 58</div>
+<h3 id="getClassMetadata()">getClassMetadata</h3>
+<code class="signature">public  <a href="../../../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> <strong>getClassMetadata</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php at line 72</div>
+<h3 id="getClassTable()">getClassTable</h3>
+<code class="signature">public  <a href="../../../../doctrine/dbal/schema/table.html">Table</a> <strong>getClassTable</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Event/GenerateSchemaTableEventArgs.php at line 65</div>
+<h3 id="getSchema()">getSchema</h3>
+<code class="signature">public  <a href="../../../../doctrine/dbal/schema/schema.html">Schema</a> <strong>getSchema</strong>()</code>
+<div class="details">
+<p></p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/tools/event/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/generateschematableeventargs.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/event/package-frame.html b/lib/api/doctrine/orm/tools/event/package-frame.html
new file mode 100644
index 000000000..3307308f9
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/event/package-frame.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Event (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Tools\Event</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/orm/tools/event/generateschemaeventargs.html" target="main">GenerateSchemaEventArgs</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/generateschematableeventargs.html" target="main">GenerateSchemaTableEventArgs</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/event/package-functions.html b/lib/api/doctrine/orm/tools/event/package-functions.html
new file mode 100644
index 000000000..6d449ca99
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/event/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/event/package-globals.html b/lib/api/doctrine/orm/tools/event/package-globals.html
new file mode 100644
index 000000000..9d9c8eec9
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/event/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/event/package-summary.html b/lib/api/doctrine/orm/tools/event/package-summary.html
new file mode 100644
index 000000000..715b9a2de
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/event/package-summary.html
@@ -0,0 +1,65 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Event (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/tools/event/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Tools\Event</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/tools/event/generateschemaeventargs.html">GenerateSchemaEventArgs</a></td><td class="description">Event Args used for the Events::postGenerateSchema event.</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/tools/event/generateschematableeventargs.html">GenerateSchemaTableEventArgs</a></td><td class="description">Event Args used for the Events::postGenerateSchemaTable event.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/tools/event/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/event/package-tree.html b/lib/api/doctrine/orm/tools/event/package-tree.html
new file mode 100644
index 000000000..a00f0eb9b
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/event/package-tree.html
@@ -0,0 +1,53 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Event (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Tools\Event</h1><div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/event/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/event/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/classmetadataexporter.html b/lib/api/doctrine/orm/tools/export/classmetadataexporter.html
new file mode 100644
index 000000000..54f26f2f6
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/classmetadataexporter.html
@@ -0,0 +1,209 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ClassMetadataExporter (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/tools/export/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/classmetadataexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Export\ClassMetadataExporter</div>
+<div class="location">/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php at line 54</div>
+
+<h1>Class ClassMetadataExporter</h1>
+
+<pre class="tree"><strong>ClassMetadataExporter</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ClassMetadataExporter</strong></p>
+
+<div class="comment" id="overview_description"><p>Class used for converting your mapping information between the
+supported formats: yaml, xml, and php/annotation.</p><p>[php]
+Unify all your mapping information which is written in php, xml, yml
+and convert it to a single set of yaml files.</p><p>$cme = new Doctrine\ORM\Tools\Export\ClassMetadataExporter();
+$cme->addMappingSource(__DIR__ . '/Entities');
+$cme->addMappingSource(__DIR__ . '/xml');
+$cme->addMappingSource(__DIR__ . '/yaml');</p><p>$exporter = $cme->getExporter('yaml');
+$exporter->setOutputDir(__DIR__ . '/new_yaml');</p><p>$exporter->setMetadatas($cme->getMetadatas());
+$exporter->export();</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#ClassMetadataExporter()">ClassMetadataExporter</a>()</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#addMappingSource()">addMappingSource</a>(string source, string type)</p><p class="description">Add a new mapping directory to the array of directories to convert and export
+to another format[php]
+$cme = new Doctrine\ORM\Tools\Export\ClassMetadataExporter();
+$cme->addMappingSource(__DIR__ . </p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a></td>
+<td class="description"><p class="name"><a href="#getExporter()">getExporter</a>(string type, string source)</p><p class="description">Get a exporter driver instance</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getMetadatas()">getMetadatas</a>()</p><p class="description">Get an array of ClassMetadataInfo instances for all the configured mapping
+directories. </p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#registerExportDriver()">registerExportDriver</a>(string name, string class)</p><p class="description">Register a new exporter driver class under a specified name</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setEntityManager()">setEntityManager</a>(<a href="../../../../doctrine/orm/entitymanager.html">EntityManager</a> em)</p><p class="description">Optionally set the EntityManager instance to get the AnnotationDriver
+from instead of creating a new instance of the AnnotationDriver</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php at line 64</div>
+<h3 id="ClassMetadataExporter()">ClassMetadataExporter</h3>
+<code class="signature">public <strong>ClassMetadataExporter</strong>()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php at line 123</div>
+<h3 id="addMappingSource()">addMappingSource</h3>
+<code class="signature">public  void <strong>addMappingSource</strong>(string source, string type)</code>
+<div class="details">
+<p>Add a new mapping directory to the array of directories to convert and export
+to another format</p><p>[php]
+$cme = new Doctrine\ORM\Tools\Export\ClassMetadataExporter();
+$cme->addMappingSource(__DIR__ . '/yaml');
+$cme->addMappingSource($schemaManager);</p><dl>
+<dt>Parameters:</dt>
+<dd>source - The source for the mapping files</dd>
+<dd>type - The type of mapping files (yml, xml, etc.)</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php at line 99</div>
+<h3 id="getExporter()">getExporter</h3>
+<code class="signature">public  <a href="../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a> <strong>getExporter</strong>(string type, string source)</code>
+<div class="details">
+<p>Get a exporter driver instance</p><dl>
+<dt>Parameters:</dt>
+<dd>type - The type to get (yml, xml, etc.)</dd>
+<dd>source - The directory where the exporter will export to</dd>
+<dt>Returns:</dt>
+<dd>$exporter</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php at line 135</div>
+<h3 id="getMetadatas()">getMetadatas</h3>
+<code class="signature">public  array <strong>getMetadatas</strong>()</code>
+<div class="details">
+<p>Get an array of ClassMetadataInfo instances for all the configured mapping
+directories. Reads the mapping directories and populates ClassMetadataInfo
+instances.</p><dl>
+<dt>Returns:</dt>
+<dd>$classes</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php at line 75</div>
+<h3 id="registerExportDriver()">registerExportDriver</h3>
+<code class="signature">public static  void <strong>registerExportDriver</strong>(string name, string class)</code>
+<div class="details">
+<p>Register a new exporter driver class under a specified name</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php at line 87</div>
+<h3 id="setEntityManager()">setEntityManager</h3>
+<code class="signature">public  void <strong>setEntityManager</strong>(<a href="../../../../doctrine/orm/entitymanager.html">EntityManager</a> em)</code>
+<div class="details">
+<p>Optionally set the EntityManager instance to get the AnnotationDriver
+from instead of creating a new instance of the AnnotationDriver</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/tools/export/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/classmetadataexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/driver/abstractexporter.html b/lib/api/doctrine/orm/tools/export/driver/abstractexporter.html
new file mode 100644
index 000000000..076d46d65
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/driver/abstractexporter.html
@@ -0,0 +1,248 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>AbstractExporter (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Export\Driver\AbstractExporter</div>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 37</div>
+
+<h1>Class AbstractExporter</h1>
+
+<pre class="tree"><strong>AbstractExporter</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public abstract  class <strong>AbstractExporter</strong></p>
+
+<div class="comment" id="overview_description"><p>Abstract base class which is to be used for the Exporter drivers
+which can be found in Doctrine\ORM\Tools\Export\Driver</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_extension">$_extension</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_metadatas">$_metadatas</a></p></td>
+</tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_outputDir">$_outputDir</a></p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#AbstractExporter()">AbstractExporter</a>(mixed dir)</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#export()">export</a>()</p><p class="description">Export each ClassMetadata instance to a single Doctrine Mapping file
+named after the entity</p></td>
+</tr>
+<tr>
+<td class="type">abstract  mixed</td>
+<td class="description"><p class="name"><a href="#exportClassMetadata()">exportClassMetadata</a>(<a href="../../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</p><p class="description">Converts a single ClassMetadata instance to the exported format
+and returns it</p></td>
+</tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#getExtension()">getExtension</a>()</p><p class="description">Get the extension used to generated the path to a class</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setExtension()">setExtension</a>(string extension)</p><p class="description">Set the directory to output the mapping files to[php]
+$exporter = new YamlExporter($metadatas, __DIR__ . </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setMetadatas()">setMetadatas</a>(array metadatas)</p><p class="description">Set the array of ClassMetadataInfo instances to export</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setOutputDir()">setOutputDir</a>(string dir)</p><p class="description">Set the directory to output the mapping files to[php]
+$exporter = new YamlExporter($metadatas);
+$exporter->setOutputDir(__DIR__ . </p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 41</div>
+<h3 id="_extension">_extension</h3>
+<code class="signature">protected  mixed <strong>$_extension</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 39</div>
+<h3 id="_metadatas">_metadatas</h3>
+<code class="signature">protected  mixed <strong>$_metadatas</strong> = array()</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 40</div>
+<h3 id="_outputDir">_outputDir</h3>
+<code class="signature">protected  mixed <strong>$_outputDir</strong></code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 43</div>
+<h3 id="AbstractExporter()">AbstractExporter</h3>
+<code class="signature">public <strong>AbstractExporter</strong>(mixed dir)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 100</div>
+<h3 id="export()">export</h3>
+<code class="signature">public  void <strong>export</strong>()</code>
+<div class="details">
+<p>Export each ClassMetadata instance to a single Doctrine Mapping file
+named after the entity</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 55</div>
+<h3 id="exportClassMetadata()">exportClassMetadata</h3>
+<code class="signature">public abstract  mixed <strong>exportClassMetadata</strong>(<a href="../../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</code>
+<div class="details">
+<p>Converts a single ClassMetadata instance to the exported format
+and returns it</p><dl>
+<dt>Returns:</dt>
+<dd>$exported</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 73</div>
+<h3 id="getExtension()">getExtension</h3>
+<code class="signature">public  string <strong>getExtension</strong>()</code>
+<div class="details">
+<p>Get the extension used to generated the path to a class</p><dl>
+<dt>Returns:</dt>
+<dd>$extension</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 139</div>
+<h3 id="setExtension()">setExtension</h3>
+<code class="signature">public  void <strong>setExtension</strong>(string extension)</code>
+<div class="details">
+<p>Set the directory to output the mapping files to</p><p>[php]
+$exporter = new YamlExporter($metadatas, __DIR__ . '/yaml');
+$exporter->setExtension('.yml');
+$exporter->export();</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 63</div>
+<h3 id="setMetadatas()">setMetadatas</h3>
+<code class="signature">public  void <strong>setMetadatas</strong>(array metadatas)</code>
+<div class="details">
+<p>Set the array of ClassMetadataInfo instances to export</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AbstractExporter.php at line 89</div>
+<h3 id="setOutputDir()">setOutputDir</h3>
+<code class="signature">public  void <strong>setOutputDir</strong>(string dir)</code>
+<div class="details">
+<p>Set the directory to output the mapping files to</p><p>[php]
+$exporter = new YamlExporter($metadatas);
+$exporter->setOutputDir(__DIR__ . '/yaml');
+$exporter->export();</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/driver/annotationexporter.html b/lib/api/doctrine/orm/tools/export/driver/annotationexporter.html
new file mode 100644
index 000000000..88a42057e
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/driver/annotationexporter.html
@@ -0,0 +1,155 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>AnnotationExporter (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/annotationexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Export\Driver\AnnotationExporter</div>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AnnotationExporter.php at line 38</div>
+
+<h1>Class AnnotationExporter</h1>
+
+<pre class="tree">Class:AnnotationExporter - Superclass: AbstractExporter
+<a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a><br>   &lfloor;&nbsp;<strong>AnnotationExporter</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>AnnotationExporter</strong><br>extends <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ClassMetadata exporter for PHP classes with annotations</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_extension">$_extension</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Tools\Export\Driver\AbstractExporter</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_extension">_extension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_metadatas">_metadatas</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_outputDir">_outputDir</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> string</td>
+<td class="description"><p class="name"><a href="#exportClassMetadata()">exportClassMetadata</a>(<a href="../../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</p><p class="description">Converts a single ClassMetadata instance to the exported format
+and returns it</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setEntityGenerator()">setEntityGenerator</a>(mixed entityGenerator)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Tools\Export\Driver\AbstractExporter</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#export()">export</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#exportClassMetadata()">exportClassMetadata</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#getExtension()">getExtension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setExtension()">setExtension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setMetadatas()">setMetadatas</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setOutputDir()">setOutputDir</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AnnotationExporter.php at line 40</div>
+<h3 id="_extension">_extension</h3>
+<code class="signature">protected  mixed <strong>$_extension</strong> = '.php'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AnnotationExporter.php at line 50</div>
+<h3 id="exportClassMetadata()">exportClassMetadata</h3>
+<code class="signature">public  string <strong>exportClassMetadata</strong>(<a href="../../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</code>
+<div class="details">
+<p>Converts a single ClassMetadata instance to the exported format
+and returns it</p><dl>
+<dt>Returns:</dt>
+<dd>$exported</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/AnnotationExporter.php at line 65</div>
+<h3 id="setEntityGenerator()">setEntityGenerator</h3>
+<code class="signature">public  void <strong>setEntityGenerator</strong>(mixed entityGenerator)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/annotationexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/driver/package-frame.html b/lib/api/doctrine/orm/tools/export/driver/package-frame.html
new file mode 100644
index 000000000..443e2b2df
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/driver/package-frame.html
@@ -0,0 +1,30 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Export\Driver (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Tools\Export\Driver</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html" target="main">AbstractExporter</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/annotationexporter.html" target="main">AnnotationExporter</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/phpexporter.html" target="main">PhpExporter</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/xmlexporter.html" target="main">XmlExporter</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/yamlexporter.html" target="main">YamlExporter</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/driver/package-functions.html b/lib/api/doctrine/orm/tools/export/driver/package-functions.html
new file mode 100644
index 000000000..9f90900b6
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/driver/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/driver/package-globals.html b/lib/api/doctrine/orm/tools/export/driver/package-globals.html
new file mode 100644
index 000000000..845332ca7
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/driver/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/driver/package-summary.html b/lib/api/doctrine/orm/tools/export/driver/package-summary.html
new file mode 100644
index 000000000..fe71cb1c3
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/driver/package-summary.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Export\Driver (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Tools\Export\Driver</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a></td><td class="description">Abstract base class which is to be used for the Exporter drivers
+which can be found in Doctrine\ORM\Tools\Export\Driver</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/export/driver/annotationexporter.html">AnnotationExporter</a></td><td class="description">ClassMetadata exporter for PHP classes with annotations</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/export/driver/phpexporter.html">PhpExporter</a></td><td class="description">ClassMetadata exporter for PHP code</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/export/driver/xmlexporter.html">XmlExporter</a></td><td class="description">ClassMetadata exporter for Doctrine XML mapping files</td></tr>
+<tr><td class="name"><a href="../../../../../doctrine/orm/tools/export/driver/yamlexporter.html">YamlExporter</a></td><td class="description">ClassMetadata exporter for Doctrine YAML mapping files</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/driver/package-tree.html b/lib/api/doctrine/orm/tools/export/driver/package-tree.html
new file mode 100644
index 000000000..28d6fed70
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/driver/package-tree.html
@@ -0,0 +1,62 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Export\Driver (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Tools\Export\Driver</h1><ul>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html">Doctrine\ORM\Tools\Export\Driver\AbstractExporter</a><ul>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/annotationexporter.html">Doctrine\ORM\Tools\Export\Driver\AnnotationExporter</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/phpexporter.html">Doctrine\ORM\Tools\Export\Driver\PhpExporter</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/xmlexporter.html">Doctrine\ORM\Tools\Export\Driver\XmlExporter</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/yamlexporter.html">Doctrine\ORM\Tools\Export\Driver\YamlExporter</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/driver/phpexporter.html b/lib/api/doctrine/orm/tools/export/driver/phpexporter.html
new file mode 100644
index 000000000..22aa8411a
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/driver/phpexporter.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>PhpExporter (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/phpexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Export\Driver\PhpExporter</div>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/PhpExporter.php at line 36</div>
+
+<h1>Class PhpExporter</h1>
+
+<pre class="tree">Class:PhpExporter - Superclass: AbstractExporter
+<a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a><br>   &lfloor;&nbsp;<strong>PhpExporter</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>PhpExporter</strong><br>extends <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ClassMetadata exporter for PHP code</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_extension">$_extension</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Tools\Export\Driver\AbstractExporter</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_extension">_extension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_metadatas">_metadatas</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_outputDir">_outputDir</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#exportClassMetadata()">exportClassMetadata</a>(<a href="../../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</p><p class="description">Converts a single ClassMetadata instance to the exported format
+and returns it</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Tools\Export\Driver\AbstractExporter</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#export()">export</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#exportClassMetadata()">exportClassMetadata</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#getExtension()">getExtension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setExtension()">setExtension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setMetadatas()">setMetadatas</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setOutputDir()">setOutputDir</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/PhpExporter.php at line 38</div>
+<h3 id="_extension">_extension</h3>
+<code class="signature">protected  mixed <strong>$_extension</strong> = '.php'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/PhpExporter.php at line 47</div>
+<h3 id="exportClassMetadata()">exportClassMetadata</h3>
+<code class="signature">public  mixed <strong>exportClassMetadata</strong>(<a href="../../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</code>
+<div class="details">
+<p>Converts a single ClassMetadata instance to the exported format
+and returns it</p><dl>
+<dt>Returns:</dt>
+<dd>$exported</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/phpexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/driver/xmlexporter.html b/lib/api/doctrine/orm/tools/export/driver/xmlexporter.html
new file mode 100644
index 000000000..905c4223b
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/driver/xmlexporter.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>XmlExporter (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/xmlexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Export\Driver\XmlExporter</div>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/XmlExporter.php at line 39</div>
+
+<h1>Class XmlExporter</h1>
+
+<pre class="tree">Class:XmlExporter - Superclass: AbstractExporter
+<a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a><br>   &lfloor;&nbsp;<strong>XmlExporter</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>XmlExporter</strong><br>extends <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ClassMetadata exporter for Doctrine XML mapping files</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_extension">$_extension</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Tools\Export\Driver\AbstractExporter</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_extension">_extension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_metadatas">_metadatas</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_outputDir">_outputDir</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#exportClassMetadata()">exportClassMetadata</a>(<a href="../../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</p><p class="description">Converts a single ClassMetadata instance to the exported format
+and returns it</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Tools\Export\Driver\AbstractExporter</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#export()">export</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#exportClassMetadata()">exportClassMetadata</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#getExtension()">getExtension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setExtension()">setExtension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setMetadatas()">setMetadatas</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setOutputDir()">setOutputDir</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/XmlExporter.php at line 41</div>
+<h3 id="_extension">_extension</h3>
+<code class="signature">protected  mixed <strong>$_extension</strong> = '.dcm.xml'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/XmlExporter.php at line 50</div>
+<h3 id="exportClassMetadata()">exportClassMetadata</h3>
+<code class="signature">public  mixed <strong>exportClassMetadata</strong>(<a href="../../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</code>
+<div class="details">
+<p>Converts a single ClassMetadata instance to the exported format
+and returns it</p><dl>
+<dt>Returns:</dt>
+<dd>$exported</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/xmlexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/driver/yamlexporter.html b/lib/api/doctrine/orm/tools/export/driver/yamlexporter.html
new file mode 100644
index 000000000..d20d34f07
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/driver/yamlexporter.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css">
+<link rel="start" href="../../../../../overview-summary.html">
+
+<title>YamlExporter (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/yamlexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Export\Driver\YamlExporter</div>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/YamlExporter.php at line 39</div>
+
+<h1>Class YamlExporter</h1>
+
+<pre class="tree">Class:YamlExporter - Superclass: AbstractExporter
+<a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a><br>   &lfloor;&nbsp;<strong>YamlExporter</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>YamlExporter</strong><br>extends <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>ClassMetadata exporter for Doctrine YAML mapping files</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">protected  mixed</td>
+<td class="description"><p class="name"><a href="#_extension">$_extension</a></p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Fields inherited from Doctrine\ORM\Tools\Export\Driver\AbstractExporter</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_extension">_extension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_metadatas">_metadatas</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#_outputDir">_outputDir</a></td></tr></table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#exportClassMetadata()">exportClassMetadata</a>(<a href="../../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</p><p class="description">Converts a single ClassMetadata instance to the exported format
+and returns itTODO: Should this code be pulled out in to a toArray() method in ClassMetadata</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\Tools\Export\Driver\AbstractExporter</th></tr>
+<tr><td><a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#export()">export</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#exportClassMetadata()">exportClassMetadata</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#getExtension()">getExtension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setExtension()">setExtension</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setMetadatas()">setMetadatas</a>, <a href="../../../../../doctrine/orm/tools/export/driver/abstractexporter.html#setOutputDir()">setOutputDir</a></td></tr></table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/YamlExporter.php at line 41</div>
+<h3 id="_extension">_extension</h3>
+<code class="signature">protected  mixed <strong>$_extension</strong> = '.dcm.yml'</code>
+<div class="details">
+</div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/Driver/YamlExporter.php at line 52</div>
+<h3 id="exportClassMetadata()">exportClassMetadata</h3>
+<code class="signature">public  mixed <strong>exportClassMetadata</strong>(<a href="../../../../../doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo</a> metadata)</code>
+<div class="details">
+<p>Converts a single ClassMetadata instance to the exported format
+and returns it</p><p>TODO: Should this code be pulled out in to a toArray() method in ClassMetadata</p><dl>
+<dt>Returns:</dt>
+<dd>$exported</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../../doctrine/orm/tools/export/driver/package-tree.html">Tree</a></li>
+<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../../index.html" target="_top">Frames</a>
+<a href="../../../../../doctrine/orm/tools/export/driver/yamlexporter.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/exportexception.html b/lib/api/doctrine/orm/tools/export/exportexception.html
new file mode 100644
index 000000000..18123e814
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/exportexception.html
@@ -0,0 +1,117 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>ExportException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/tools/export/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/exportexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\Export\ExportException</div>
+<div class="location">/Doctrine/ORM/Tools/Export/ExportException.php at line 7</div>
+
+<h1>Class ExportException</h1>
+
+<pre class="tree">Class:ExportException - Superclass: ORMException
+Class:ORMException - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<a href="../../../../doctrine/orm/ormexception.html">ORMException</a><br>      &lfloor;&nbsp;<strong>ExportException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ExportException</strong><br>extends <a href="../../../../doctrine/orm/ormexception.html">ORMException</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Base exception class for all ORM exceptions.</p></div>
+
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidExporterDriverType()">invalidExporterDriverType</a>(mixed type)</p></td>
+</tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#invalidMappingDriverType()">invalidMappingDriverType</a>(mixed type)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\ORMException</th></tr>
+<tr><td><a href="../../../../doctrine/orm/ormexception.html#detachedEntityCannotBeRemoved()">detachedEntityCannotBeRemoved</a>, <a href="../../../../doctrine/orm/ormexception.html#entityManagerClosed()">entityManagerClosed</a>, <a href="../../../../doctrine/orm/ormexception.html#entityMissingAssignedId()">entityMissingAssignedId</a>, <a href="../../../../doctrine/orm/ormexception.html#findByRequiresParameter()">findByRequiresParameter</a>, <a href="../../../../doctrine/orm/ormexception.html#invalidEntityState()">invalidEntityState</a>, <a href="../../../../doctrine/orm/ormexception.html#invalidFindByCall()">invalidFindByCall</a>, <a href="../../../../doctrine/orm/ormexception.html#invalidFlushMode()">invalidFlushMode</a>, <a href="../../../../doctrine/orm/ormexception.html#invalidHydrationMode()">invalidHydrationMode</a>, <a href="../../../../doctrine/orm/ormexception.html#invalidResultCacheDriver()">invalidResultCacheDriver</a>, <a href="../../../../doctrine/orm/ormexception.html#metadataCacheNotConfigured()">metadataCacheNotConfigured</a>, <a href="../../../../doctrine/orm/ormexception.html#mismatchedEventManager()">mismatchedEventManager</a>, <a href="../../../../doctrine/orm/ormexception.html#missingMappingDriverImpl()">missingMappingDriverImpl</a>, <a href="../../../../doctrine/orm/ormexception.html#notSupported()">notSupported</a>, <a href="../../../../doctrine/orm/ormexception.html#proxyClassesAlwaysRegenerating()">proxyClassesAlwaysRegenerating</a>, <a href="../../../../doctrine/orm/ormexception.html#queryCacheNotConfigured()">queryCacheNotConfigured</a>, <a href="../../../../doctrine/orm/ormexception.html#removedEntityInCollectionDetected()">removedEntityInCollectionDetected</a>, <a href="../../../../doctrine/orm/ormexception.html#unknownEntityNamespace()">unknownEntityNamespace</a>, <a href="../../../../doctrine/orm/ormexception.html#unrecognizedField()">unrecognizedField</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/Export/ExportException.php at line 9</div>
+<h3 id="invalidExporterDriverType()">invalidExporterDriverType</h3>
+<code class="signature">public static  void <strong>invalidExporterDriverType</strong>(mixed type)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/Export/ExportException.php at line 14</div>
+<h3 id="invalidMappingDriverType()">invalidMappingDriverType</h3>
+<code class="signature">public static  void <strong>invalidMappingDriverType</strong>(mixed type)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../../doctrine/orm/tools/export/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/exportexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/package-frame.html b/lib/api/doctrine/orm/tools/export/package-frame.html
new file mode 100644
index 000000000..8ee098e5b
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/package-frame.html
@@ -0,0 +1,27 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Export (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Tools\Export</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../../doctrine/orm/tools/export/classmetadataexporter.html" target="main">ClassMetadataExporter</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/exportexception.html" target="main">ExportException</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/package-functions.html b/lib/api/doctrine/orm/tools/export/package-functions.html
new file mode 100644
index 000000000..164a54626
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/package-globals.html b/lib/api/doctrine/orm/tools/export/package-globals.html
new file mode 100644
index 000000000..27523de4e
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/package-summary.html b/lib/api/doctrine/orm/tools/export/package-summary.html
new file mode 100644
index 000000000..b10bba711
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/package-summary.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Export (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/tools/export/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Tools\Export</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/tools/export/classmetadataexporter.html">ClassMetadataExporter</a></td><td class="description">Class used for converting your mapping information between the
+supported formats: yaml, xml, and php/annotation.
+</td></tr>
+<tr><td class="name"><a href="../../../../doctrine/orm/tools/export/exportexception.html">ExportException</a></td><td class="description">Base exception class for all ORM exceptions.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../../doctrine/orm/tools/export/package-tree.html">Tree</a></li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/export/package-tree.html b/lib/api/doctrine/orm/tools/export/package-tree.html
new file mode 100644
index 000000000..e3fb4fa1f
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/export/package-tree.html
@@ -0,0 +1,56 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css">
+<link rel="start" href="../../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools\Export (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Tools\Export</h1><ul>
+<li><a href="../../../../doctrine/orm/tools/export/classmetadataexporter.html">Doctrine\ORM\Tools\Export\ClassMetadataExporter</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../../doctrine/orm/tools/export/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../../index.html" target="_top">Frames</a>
+<a href="../../../../doctrine/orm/tools/export/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/package-frame.html b/lib/api/doctrine/orm/tools/package-frame.html
new file mode 100644
index 000000000..81f9ad7fc
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/package-frame.html
@@ -0,0 +1,31 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1><a href="package-summary.html" target="main">Doctrine\ORM\Tools</a></h1>
+
+<h2>Classes</h2>
+<ul>
+<li><a href="../../../doctrine/orm/tools/classmetadatareader.html" target="main">ClassMetadataReader</a></li>
+<li><a href="../../../doctrine/orm/tools/convertdoctrine1schema.html" target="main">ConvertDoctrine1Schema</a></li>
+<li><a href="../../../doctrine/orm/tools/entitygenerator.html" target="main">EntityGenerator</a></li>
+<li><a href="../../../doctrine/orm/tools/schematool.html" target="main">SchemaTool</a></li>
+<li><a href="../../../doctrine/orm/tools/toolevents.html" target="main">ToolEvents</a></li>
+<li><a href="../../../doctrine/orm/tools/toolsexception.html" target="main">ToolsException</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/package-functions.html b/lib/api/doctrine/orm/tools/package-functions.html
new file mode 100644
index 000000000..18170416d
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/package-functions.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Functions (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<h1>Functions</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Package</a></li>
+<li class="active">Function</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/package-functions.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_function">Function</a>
+Detail: <a href="#detail_function">Function</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/package-globals.html b/lib/api/doctrine/orm/tools/package-globals.html
new file mode 100644
index 000000000..ae7d3e28d
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/package-globals.html
@@ -0,0 +1,69 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Globals (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<h1>Globals</h1>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Package</a></li>
+<li class="active">Global</li>
+<li><a href="../../../overview-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/package-globals.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_global">Global</a>
+Detail: <a href="#detail_global">Global</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/package-summary.html b/lib/api/doctrine/orm/tools/package-summary.html
new file mode 100644
index 000000000..3edd710bf
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/package-summary.html
@@ -0,0 +1,78 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Namespace Doctrine\ORM\Tools</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Class Summary</th></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/tools/classmetadatareader.html">ClassMetadataReader</a></td><td class="description">Class to read metadata mapping information from multiple sources into an array
+of ClassMetadataInfo instances.
+</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/tools/convertdoctrine1schema.html">ConvertDoctrine1Schema</a></td><td class="description">Class to help with converting Doctrine 1 schema files to Doctrine 2 mapping files</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/tools/entitygenerator.html">EntityGenerator</a></td><td class="description">Generic class used to generate PHP5 entity classes from ClassMetadataInfo instances[php]
+$classes = $em->getClassMetadataFactory()->getAllMetadata();$generator = new \Doctrine\ORM\Tools\EntityGenerator();
+$generator->setGenerateAnnotations(true);
+$generator->setGenerateStubMethods(true);
+$generator->setRegenerateEntityIfExists(false);
+$generator->setUpdateEntityIfExists(true);
+$generator->generate($classes, '/path/to/generate/entities');</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/tools/schematool.html">SchemaTool</a></td><td class="description">The SchemaTool is a tool to create/drop/update database schemas based on
+ClassMetadata class descriptors.</td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/tools/toolevents.html">ToolEvents</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="../../../doctrine/orm/tools/toolsexception.html">ToolsException</a></td><td class="description">Base exception class for all ORM exceptions.</td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li class="active">Namespace</li>
+<li>Class</li><li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/package-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/package-tree.html b/lib/api/doctrine/orm/tools/package-tree.html
new file mode 100644
index 000000000..a7283f82d
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/package-tree.html
@@ -0,0 +1,60 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>Doctrine\ORM\Tools (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/package-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy for Package Doctrine\ORM\Tools</h1><ul>
+<li><a href="../../../doctrine/orm/tools/classmetadatareader.html">Doctrine\ORM\Tools\ClassMetadataReader</a></li>
+<li><a href="../../../doctrine/orm/tools/convertdoctrine1schema.html">Doctrine\ORM\Tools\ConvertDoctrine1Schema</a></li>
+<li><a href="../../../doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></li>
+<li><a href="../../../doctrine/orm/tools/schematool.html">Doctrine\ORM\Tools\SchemaTool</a></li>
+<li><a href="../../../doctrine/orm/tools/toolevents.html">Doctrine\ORM\Tools\ToolEvents</a></li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li>Class</li><li class="active">Tree</li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/package-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/schematool.html b/lib/api/doctrine/orm/tools/schematool.html
new file mode 100644
index 000000000..51e5e9888
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/schematool.html
@@ -0,0 +1,221 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>SchemaTool (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/schematool.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\SchemaTool</div>
+<div class="location">/Doctrine/ORM/Tools/SchemaTool.php at line 44</div>
+
+<h1>Class SchemaTool</h1>
+
+<pre class="tree"><strong>SchemaTool</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>SchemaTool</strong></p>
+
+<div class="comment" id="overview_description"><p>The SchemaTool is a tool to create/drop/update database schemas based on
+<tt>ClassMetadata</tt> class descriptors.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+</dl>
+<hr>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#SchemaTool()">SchemaTool</a>(Doctrine\ORM\EntityManager em)</p><p class="description">Initializes a new SchemaTool instance that uses the connection of the
+provided EntityManager.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#createSchema()">createSchema</a>(array classes)</p><p class="description">Creates the database schema for the given array of ClassMetadata instances.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#dropSchema()">dropSchema</a>(array classes)</p><p class="description">Drops the database schema for the given classes.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getCreateSchemaSql()">getCreateSchemaSql</a>(array classes)</p><p class="description">Gets the list of DDL statements that are required to create the database schema for
+the given list of ClassMetadata instances.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getDropSchemaSql()">getDropSchemaSql</a>(array classes)</p><p class="description">Gets the SQL needed to drop the database schema for the given classes.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../../doctrine/dbal/schema/schema.html">Schema</a></td>
+<td class="description"><p class="name"><a href="#getSchemaFromMetadata()">getSchemaFromMetadata</a>(array classes)</p><p class="description">From a given set of metadata classes this method creates a Schema instance.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getUpdateSchemaSql()">getUpdateSchemaSql</a>(array classes, mixed saveMode)</p><p class="description">Gets the sequence of SQL statements that need to be performed in order
+to bring the given class mappings in-synch with the relational schema.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#updateSchema()">updateSchema</a>(array classes, mixed saveMode)</p><p class="description">Updates the database schema of the given classes by comparing the ClassMetadata
+instances to the current database schema that is inspected.</p></td>
+</tr>
+</table>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/SchemaTool.php at line 62</div>
+<h3 id="SchemaTool()">SchemaTool</h3>
+<code class="signature">public <strong>SchemaTool</strong>(Doctrine\ORM\EntityManager em)</code>
+<div class="details">
+<p>Initializes a new SchemaTool instance that uses the connection of the
+provided EntityManager.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/SchemaTool.php at line 73</div>
+<h3 id="createSchema()">createSchema</h3>
+<code class="signature">public  void <strong>createSchema</strong>(array classes)</code>
+<div class="details">
+<p>Creates the database schema for the given array of ClassMetadata instances.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/SchemaTool.php at line 469</div>
+<h3 id="dropSchema()">dropSchema</h3>
+<code class="signature">public  void <strong>dropSchema</strong>(array classes)</code>
+<div class="details">
+<p>Drops the database schema for the given classes.</p><p>In any way when an exception is thrown it is supressed since drop was
+issued for all classes of the schema and some probably just don't exist.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/SchemaTool.php at line 90</div>
+<h3 id="getCreateSchemaSql()">getCreateSchemaSql</h3>
+<code class="signature">public  array <strong>getCreateSchemaSql</strong>(array classes)</code>
+<div class="details">
+<p>Gets the list of DDL statements that are required to create the database schema for
+the given list of ClassMetadata instances.</p><dl>
+<dt>Returns:</dt>
+<dd>$sql The SQL statements needed to create the schema for the classes.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/SchemaTool.php at line 485</div>
+<h3 id="getDropSchemaSql()">getDropSchemaSql</h3>
+<code class="signature">public  array <strong>getDropSchemaSql</strong>(array classes)</code>
+<div class="details">
+<p>Gets the SQL needed to drop the database schema for the given classes.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/SchemaTool.php at line 102</div>
+<h3 id="getSchemaFromMetadata()">getSchemaFromMetadata</h3>
+<code class="signature">public  <a href="../../../doctrine/dbal/schema/schema.html">Schema</a> <strong>getSchemaFromMetadata</strong>(array classes)</code>
+<div class="details">
+<p>From a given set of metadata classes this method creates a Schema instance.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/SchemaTool.php at line 573</div>
+<h3 id="getUpdateSchemaSql()">getUpdateSchemaSql</h3>
+<code class="signature">public  array <strong>getUpdateSchemaSql</strong>(array classes, mixed saveMode)</code>
+<div class="details">
+<p>Gets the sequence of SQL statements that need to be performed in order
+to bring the given class mappings in-synch with the relational schema.</p><dl>
+<dt>Parameters:</dt>
+<dd>classes - The classes to consider.</dd>
+<dt>Returns:</dt>
+<dd>The sequence of SQL statements.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/SchemaTool.php at line 556</div>
+<h3 id="updateSchema()">updateSchema</h3>
+<code class="signature">public  void <strong>updateSchema</strong>(array classes, mixed saveMode)</code>
+<div class="details">
+<p>Updates the database schema of the given classes by comparing the ClassMetadata
+instances to the current database schema that is inspected.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/schematool.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/toolevents.html b/lib/api/doctrine/orm/tools/toolevents.html
new file mode 100644
index 000000000..0222b9888
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/toolevents.html
@@ -0,0 +1,115 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ToolEvents (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/toolevents.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\ToolEvents</div>
+<div class="location">/Doctrine/ORM/Tools/ToolEvents.php at line 24</div>
+
+<h1>Class ToolEvents</h1>
+
+<pre class="tree"><strong>ToolEvents</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ToolEvents</strong></p>
+
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#postGenerateSchema">postGenerateSchema</a></p><p class="description">The postGenerateSchema event is triggered in SchemaTool#getSchemaFromMetadata()
+after all entity classes have been transformed into the related Schema structure.
+</p></td>
+</tr>
+<tr>
+<td class="type">final  string</td>
+<td class="description"><p class="name"><a href="#postGenerateSchemaTable">postGenerateSchemaTable</a></p><p class="description">The postGenerateSchemaTable event occurs in SchemaTool#getSchemaFromMetadata()
+whenever an entity class is transformed into its table representation. </p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/ToolEvents.php at line 43</div>
+<h3 id="postGenerateSchema">postGenerateSchema</h3>
+<code class="signature">public final  string <strong>postGenerateSchema</strong> = 'postGenerateSchema'</code>
+<div class="details">
+<p>The postGenerateSchema event is triggered in SchemaTool#getSchemaFromMetadata()
+after all entity classes have been transformed into the related Schema structure.
+The EventArgs contain the EntityManager and the created Schema instance.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/Tools/ToolEvents.php at line 34</div>
+<h3 id="postGenerateSchemaTable">postGenerateSchemaTable</h3>
+<code class="signature">public final  string <strong>postGenerateSchemaTable</strong> = 'postGenerateSchemaTable'</code>
+<div class="details">
+<p>The postGenerateSchemaTable event occurs in SchemaTool#getSchemaFromMetadata()
+whenever an entity class is transformed into its table representation. It recieves
+the current non-complete Schema instance, the Entity Metadata Class instance and
+the Schema Table instance of this entity.</p></div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/toolevents.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/tools/toolsexception.html b/lib/api/doctrine/orm/tools/toolsexception.html
new file mode 100644
index 000000000..97c48e651
--- /dev/null
+++ b/lib/api/doctrine/orm/tools/toolsexception.html
@@ -0,0 +1,105 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../../stylesheet.css">
+<link rel="start" href="../../../overview-summary.html">
+
+<title>ToolsException (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/toolsexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\Tools\ToolsException</div>
+<div class="location">/Doctrine/ORM/Tools/ToolsException.php at line 5</div>
+
+<h1>Class ToolsException</h1>
+
+<pre class="tree">Class:ToolsException - Superclass: ORMException
+Class:ORMException - Superclass: Exception
+Exception<br>&lfloor;&nbsp;<a href="../../../doctrine/orm/ormexception.html">ORMException</a><br>      &lfloor;&nbsp;<strong>ToolsException</strong><br /></pre>
+
+<hr>
+
+<p class="signature">public  class <strong>ToolsException</strong><br>extends <a href="../../../doctrine/orm/ormexception.html">ORMException</a>
+
+</p>
+
+<div class="comment" id="overview_description"><p>Base exception class for all ORM exceptions.</p></div>
+
+<hr>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type">static  void</td>
+<td class="description"><p class="name"><a href="#couldNotMapDoctrine1Type()">couldNotMapDoctrine1Type</a>(mixed type)</p></td>
+</tr>
+</table>
+
+<table class="inherit">
+<tr><th colspan="2">Methods inherited from Doctrine\ORM\ORMException</th></tr>
+<tr><td><a href="../../../doctrine/orm/ormexception.html#detachedEntityCannotBeRemoved()">detachedEntityCannotBeRemoved</a>, <a href="../../../doctrine/orm/ormexception.html#entityManagerClosed()">entityManagerClosed</a>, <a href="../../../doctrine/orm/ormexception.html#entityMissingAssignedId()">entityMissingAssignedId</a>, <a href="../../../doctrine/orm/ormexception.html#findByRequiresParameter()">findByRequiresParameter</a>, <a href="../../../doctrine/orm/ormexception.html#invalidEntityState()">invalidEntityState</a>, <a href="../../../doctrine/orm/ormexception.html#invalidFindByCall()">invalidFindByCall</a>, <a href="../../../doctrine/orm/ormexception.html#invalidFlushMode()">invalidFlushMode</a>, <a href="../../../doctrine/orm/ormexception.html#invalidHydrationMode()">invalidHydrationMode</a>, <a href="../../../doctrine/orm/ormexception.html#invalidResultCacheDriver()">invalidResultCacheDriver</a>, <a href="../../../doctrine/orm/ormexception.html#metadataCacheNotConfigured()">metadataCacheNotConfigured</a>, <a href="../../../doctrine/orm/ormexception.html#mismatchedEventManager()">mismatchedEventManager</a>, <a href="../../../doctrine/orm/ormexception.html#missingMappingDriverImpl()">missingMappingDriverImpl</a>, <a href="../../../doctrine/orm/ormexception.html#notSupported()">notSupported</a>, <a href="../../../doctrine/orm/ormexception.html#proxyClassesAlwaysRegenerating()">proxyClassesAlwaysRegenerating</a>, <a href="../../../doctrine/orm/ormexception.html#queryCacheNotConfigured()">queryCacheNotConfigured</a>, <a href="../../../doctrine/orm/ormexception.html#removedEntityInCollectionDetected()">removedEntityInCollectionDetected</a>, <a href="../../../doctrine/orm/ormexception.html#unknownEntityNamespace()">unknownEntityNamespace</a>, <a href="../../../doctrine/orm/ormexception.html#unrecognizedField()">unrecognizedField</a></td></tr></table>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/Tools/ToolsException.php at line 6</div>
+<h3 id="couldNotMapDoctrine1Type()">couldNotMapDoctrine1Type</h3>
+<code class="signature">public static  void <strong>couldNotMapDoctrine1Type</strong>(mixed type)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../../overview-summary.html">Overview</a></li>
+<li><a href="../../../doctrine/orm/tools/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../../doctrine/orm/tools/package-tree.html">Tree</a></li>
+<li><a href="../../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../../index.html" target="_top">Frames</a>
+<a href="../../../doctrine/orm/tools/toolsexception.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/doctrine/orm/unitofwork.html b/lib/api/doctrine/orm/unitofwork.html
new file mode 100644
index 000000000..153a1fec0
--- /dev/null
+++ b/lib/api/doctrine/orm/unitofwork.html
@@ -0,0 +1,1012 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:04 +0000">
+
+<link rel="stylesheet" type="text/css" href="../../stylesheet.css">
+<link rel="start" href="../../overview-summary.html">
+
+<title>UnitOfWork (Doctrine)</title>
+
+</head>
+<body id="definition" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/unitofwork.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<div class="qualifiedName">Doctrine\ORM\UnitOfWork</div>
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 46</div>
+
+<h1>Class UnitOfWork</h1>
+
+<pre class="tree"><strong>UnitOfWork</strong><br /></pre>
+
+<dl>
+<dt>All Implemented Interfaces:</dt>
+<dd>PropertyChangedListener </dt>
+</dl>
+
+<hr>
+
+<p class="signature">public  class <strong>UnitOfWork</strong></p>
+
+<div class="comment" id="overview_description"><p>The UnitOfWork is responsible for tracking changes to objects during an
+"object-level" transaction and for writing out changes to the database
+in the correct order.</p></div>
+
+<dl>
+<dt>License:</dt>
+<dd>http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt>See Also:</dt>
+<dd><code>www.doctrine-project.org</code></dd>
+<dt>Since:</dt>
+<dd>2.0</dd>
+<dt>Version:</dt>
+<dd>$Revision$</dd>
+<dt>Author:</dt>
+<dd>Benjamin Eberlei <kontakt@beberlei.de></dd>
+<dd>Guilherme Blanco <guilhermeblanco@hotmail.com></dd>
+<dd>Jonathan Wage <jonwage@gmail.com></dd>
+<dd>Roman Borschel <roman@code-factory.org></dd>
+<dt>Internal:</dt>
+<dd>This class contains performance-critical code.</dd>
+</dl>
+<hr>
+
+<table id="summary_field">
+<tr><th colspan="2">Field Summary</th></tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#STATE_DETACHED">STATE_DETACHED</a></p><p class="description">A detached entity is an instance with a persistent identity that is not
+(or no longer) associated with an EntityManager (and a UnitOfWork).</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#STATE_MANAGED">STATE_MANAGED</a></p><p class="description">An entity is in MANAGED state when its persistence is managed by an EntityManager.</p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#STATE_NEW">STATE_NEW</a></p><p class="description">An entity is new if it has just been instantiated (i.e. </p></td>
+</tr>
+<tr>
+<td class="type">final  int</td>
+<td class="description"><p class="name"><a href="#STATE_REMOVED">STATE_REMOVED</a></p><p class="description">A removed entity instance is an instance with a persistent identity,
+associated with an EntityManager, whose persistent state has been
+deleted (or is scheduled for deletion).</p></td>
+</tr>
+</table>
+
+<table id="summary_constr">
+<tr><th colspan="2">Constructor Summary</th></tr>
+<tr>
+<td class="description"><p class="name"><a href="#UnitOfWork()">UnitOfWork</a>(Doctrine\ORM\EntityManager em)</p><p class="description">Initializes a new UnitOfWork instance, bound to the given EntityManager.</p></td>
+</tr>
+</table>
+
+<table id="summary_method">
+<tr><th colspan="2">Method Summary</th></tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#addToIdentityMap()">addToIdentityMap</a>(object entity)</p><p class="description">INTERNAL:
+Registers an entity in the identity map.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#clear()">clear</a>()</p><p class="description">Clears the UnitOfWork.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#clearEntityChangeSet()">clearEntityChangeSet</a>(string oid)</p><p class="description">INTERNAL:
+Clears the property changeset of the entity with the given OID.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#commit()">commit</a>()</p><p class="description">Commits the UnitOfWork, executing all operations that have been postponed
+up to this point. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#computeChangeSet()">computeChangeSet</a>(<a href="../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> class, object entity)</p><p class="description">Computes the changes that happened to a single entity.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#computeChangeSets()">computeChangeSets</a>()</p><p class="description">Computes all the changes that have been done to entities and collections
+since the last commit and stores these changes in the _entityChangeSet map
+temporarily for access by the persisters, until the UoW commit is finished.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#containsIdHash()">containsIdHash</a>(string idHash, string rootClassName)</p><p class="description">INTERNAL:
+Checks whether an identifier hash exists in the identity map.</p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#createEntity()">createEntity</a>(string className, array data, array hints)</p><p class="description">INTERNAL:
+Creates an entity. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#detach()">detach</a>(object entity)</p><p class="description">Detaches an entity from the persistence management. </p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#getByIdHash()">getByIdHash</a>(string idHash, string rootClassName)</p><p class="description">INTERNAL:
+Gets an entity in the identity map by its identifier hash.</p></td>
+</tr>
+<tr>
+<td class="type"> <a href="../../doctrine/orm/persisters/abstractcollectionpersister.html">AbstractCollectionPersister</a></td>
+<td class="description"><p class="name"><a href="#getCollectionPersister()">getCollectionPersister</a>(<a href="../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a> association)</p><p class="description">Gets a collection persister for a collection-valued association.</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Internal\CommitOrderCalculator</td>
+<td class="description"><p class="name"><a href="#getCommitOrderCalculator()">getCommitOrderCalculator</a>()</p><p class="description">Gets the CommitOrderCalculator used by the UnitOfWork to order commits.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getEntityChangeSet()">getEntityChangeSet</a>(mixed entity)</p><p class="description">Gets the changeset for an entity.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getEntityIdentifier()">getEntityIdentifier</a>(object entity)</p><p class="description">Gets the identifier of an entity.
+</p></td>
+</tr>
+<tr>
+<td class="type"> Doctrine\ORM\Persister\AbstractEntityPersister</td>
+<td class="description"><p class="name"><a href="#getEntityPersister()">getEntityPersister</a>(string entityName)</p><p class="description">Gets the EntityPersister for an Entity.</p></td>
+</tr>
+<tr>
+<td class="type"> int</td>
+<td class="description"><p class="name"><a href="#getEntityState()">getEntityState</a>(object entity, integer assume)</p><p class="description">Gets the state of an entity within the current unit of work.
+</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getIdentityMap()">getIdentityMap</a>()</p><p class="description">Gets the identity map of the UnitOfWork.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getOriginalEntityData()">getOriginalEntityData</a>(object entity)</p><p class="description">Gets the original data of an entity. </p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getScheduledCollectionDeletions()">getScheduledCollectionDeletions</a>()</p><p class="description">Get the currently scheduled complete collection deletions</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getScheduledCollectionUpdates()">getScheduledCollectionUpdates</a>()</p><p class="description">Gets the currently scheduled collection inserts, updates and deletes.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getScheduledEntityDeletions()">getScheduledEntityDeletions</a>()</p><p class="description">Gets the currently scheduled entity deletions in this UnitOfWork.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getScheduledEntityInsertions()">getScheduledEntityInsertions</a>()</p><p class="description">Gets the currently scheduled entity insertions in this UnitOfWork.</p></td>
+</tr>
+<tr>
+<td class="type"> array</td>
+<td class="description"><p class="name"><a href="#getScheduledEntityUpdates()">getScheduledEntityUpdates</a>()</p><p class="description">Gets the currently scheduled entity updates in this UnitOfWork.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#hasPendingInsertions()">hasPendingInsertions</a>()</p><p class="description">Checks whether the UnitOfWork has any pending insertions.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#isCollectionScheduledForDeletion()">isCollectionScheduledForDeletion</a>(mixed coll)</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isEntityScheduled()">isEntityScheduled</a>(mixed entity, $entity )</p><p class="description">Checks whether an entity is scheduled for insertion, update or deletion.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isInIdentityMap()">isInIdentityMap</a>(object entity)</p><p class="description">Checks whether an entity is registered in the identity map of this UnitOfWork.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isScheduledForDelete()">isScheduledForDelete</a>(object entity)</p><p class="description">Checks whether an entity is registered as removed/deleted with the unit
+of work.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isScheduledForInsert()">isScheduledForInsert</a>(object entity)</p><p class="description">Checks whether an entity is scheduled for insertion.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#isScheduledForUpdate()">isScheduledForUpdate</a>(object entity)</p><p class="description">Checks whether an entity is registered as dirty in the unit of work.
+</p></td>
+</tr>
+<tr>
+<td class="type"> object</td>
+<td class="description"><p class="name"><a href="#merge()">merge</a>(object entity)</p><p class="description">Merges the state of the given detached entity into this UnitOfWork.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#persist()">persist</a>(object entity)</p><p class="description">Persists an entity as part of the current unit of work.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#propertyChanged()">propertyChanged</a>(object entity, string propertyName, mixed oldValue, mixed newValue)</p><p class="description">Notifies this UnitOfWork of a property change in an entity.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#recomputeSingleEntityChangeSet()">recomputeSingleEntityChangeSet</a>(<a href="../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> class, object entity)</p><p class="description">INTERNAL:
+Computes the changeset of an individual entity, independently of the
+computeChangeSets() routine that is used at the beginning of a UnitOfWork#commit().
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#refresh()">refresh</a>(object entity)</p><p class="description">Refreshes the state of the given entity from the database, overwriting
+any local, unpersisted changes.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#registerManaged()">registerManaged</a>(object entity, array id, array data)</p><p class="description">INTERNAL:
+Registers an entity as managed.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#remove()">remove</a>(object entity)</p><p class="description">Deletes an entity as part of the current unit of work.</p></td>
+</tr>
+<tr>
+<td class="type"> boolean</td>
+<td class="description"><p class="name"><a href="#removeFromIdentityMap()">removeFromIdentityMap</a>(object entity)</p><p class="description">INTERNAL:
+Removes an entity from the identity map. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#scheduleCollectionDeletion()">scheduleCollectionDeletion</a>(<a href="../../doctrine/orm/persistentcollection.html">PersistentCollection</a> coll)</p><p class="description">INTERNAL:
+Schedules a complete collection for removal when this UnitOfWork commits.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#scheduleExtraUpdate()">scheduleExtraUpdate</a>(object entity, array changeset)</p><p class="description">INTERNAL:
+Schedules an extra update that will be executed immediately after the
+regular entity updates within the currently running commit cycle.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#scheduleForDelete()">scheduleForDelete</a>(object entity)</p><p class="description">INTERNAL:
+Schedules an entity for deletion.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#scheduleForDirtyCheck()">scheduleForDirtyCheck</a>(object entity)</p><p class="description">Schedules an entity for dirty-checking at commit-time.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#scheduleForInsert()">scheduleForInsert</a>(object entity)</p><p class="description">Schedules an entity for insertion into the database.
+</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#scheduleForUpdate()">scheduleForUpdate</a>(object entity)</p><p class="description">Schedules an entity for being updated.</p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#scheduleOrphanRemoval()">scheduleOrphanRemoval</a>(object entity)</p><p class="description">INTERNAL:
+Schedules an orphaned entity for removal. </p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setOriginalEntityData()">setOriginalEntityData</a>(mixed entity, mixed data)</p><p class="description"></p></td>
+</tr>
+<tr>
+<td class="type"> void</td>
+<td class="description"><p class="name"><a href="#setOriginalEntityProperty()">setOriginalEntityProperty</a>(string oid, string property, mixed value)</p><p class="description">INTERNAL:
+Sets a property value of the original data array of an entity.</p></td>
+</tr>
+<tr>
+<td class="type"> integer</td>
+<td class="description"><p class="name"><a href="#size()">size</a>()</p><p class="description">Calculates the size of the UnitOfWork. </p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#tryGetById()">tryGetById</a>(mixed id, string rootClassName)</p><p class="description">Tries to find an entity with the given identifier in the identity map of
+this UnitOfWork.</p></td>
+</tr>
+<tr>
+<td class="type"> mixed</td>
+<td class="description"><p class="name"><a href="#tryGetByIdHash()">tryGetByIdHash</a>(string idHash, string rootClassName)</p><p class="description">INTERNAL:
+Tries to get an entity by its identifier hash. </p></td>
+</tr>
+</table>
+
+<h2 id="detail_field">Field Detail</h2>
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 63</div>
+<h3 id="STATE_DETACHED">STATE_DETACHED</h3>
+<code class="signature">public final  int <strong>STATE_DETACHED</strong> = 3</code>
+<div class="details">
+<p>A detached entity is an instance with a persistent identity that is not
+(or no longer) associated with an EntityManager (and a UnitOfWork).</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 51</div>
+<h3 id="STATE_MANAGED">STATE_MANAGED</h3>
+<code class="signature">public final  int <strong>STATE_MANAGED</strong> = 1</code>
+<div class="details">
+<p>An entity is in MANAGED state when its persistence is managed by an EntityManager.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 57</div>
+<h3 id="STATE_NEW">STATE_NEW</h3>
+<code class="signature">public final  int <strong>STATE_NEW</strong> = 2</code>
+<div class="details">
+<p>An entity is new if it has just been instantiated (i.e. using the "new" operator)
+and is not (yet) managed by an EntityManager.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 70</div>
+<h3 id="STATE_REMOVED">STATE_REMOVED</h3>
+<code class="signature">public final  int <strong>STATE_REMOVED</strong> = 4</code>
+<div class="details">
+<p>A removed entity instance is an instance with a persistent identity,
+associated with an EntityManager, whose persistent state has been
+deleted (or is scheduled for deletion).</p></div>
+
+<hr>
+
+<h2 id="detail_constr">Constructor Detail</h2>
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 236</div>
+<h3 id="UnitOfWork()">UnitOfWork</h3>
+<code class="signature">public <strong>UnitOfWork</strong>(Doctrine\ORM\EntityManager em)</code>
+<div class="details">
+<p>Initializes a new UnitOfWork instance, bound to the given EntityManager.</p></div>
+
+<hr>
+
+<h2 id="detail_method">Method Detail</h2>
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1009</div>
+<h3 id="addToIdentityMap()">addToIdentityMap</h3>
+<code class="signature">public  boolean <strong>addToIdentityMap</strong>(object entity)</code>
+<div class="details">
+<p>INTERNAL:
+Registers an entity in the identity map.
+Note that entities in a hierarchy are registered with the class name of
+the root entity.</p><dl>
+<dt>Ignore.</dt>
+<dt>Parameters:</dt>
+<dd>entity - The entity to register.</dd>
+<dt>Returns:</dt>
+<dd>TRUE if the registration was successful, FALSE if the identity of the entity in question is already managed.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1650</div>
+<h3 id="clear()">clear</h3>
+<code class="signature">public  void <strong>clear</strong>()</code>
+<div class="details">
+<p>Clears the UnitOfWork.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 2030</div>
+<h3 id="clearEntityChangeSet()">clearEntityChangeSet</h3>
+<code class="signature">public  void <strong>clearEntityChangeSet</strong>(string oid)</code>
+<div class="details">
+<p>INTERNAL:
+Clears the property changeset of the entity with the given OID.</p><dl>
+<dt>Parameters:</dt>
+<dd>oid - The entity's OID.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 257</div>
+<h3 id="commit()">commit</h3>
+<code class="signature">public  void <strong>commit</strong>()</code>
+<div class="details">
+<p>Commits the UnitOfWork, executing all operations that have been postponed
+up to this point. The state of all managed entities will be synchronized with
+the database.</p><p>The operations are executed in the following order:</p><p>1) All entity insertions
+2) All entity updates
+3) All collection deletions
+4) All collection updates
+5) All entity deletions</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 404</div>
+<h3 id="computeChangeSet()">computeChangeSet</h3>
+<code class="signature">public  void <strong>computeChangeSet</strong>(<a href="../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> class, object entity)</code>
+<div class="details">
+<p>Computes the changes that happened to a single entity.</p><p>Modifies/populates the following properties:</p><p><code>_originalEntityData</code>
+If the entity is NEW or MANAGED but not yet fully persisted (only has an id)
+then it was not fetched from the database and therefore we have no original
+entity data yet. All of the current entity data is stored as the original entity data.</p><p><code>_entityChangeSets</code>
+The changes detected on all properties of the entity are stored there.
+A change is a tuple array where the first entry is the old value and the second
+entry is the new value of the property. Changesets are used by persisters
+to INSERT/UPDATE the persistent entity state.</p><p><code>_entityUpdates</code>
+If the entity is already fully MANAGED (has been fetched from the database before)
+and any changes to its properties are detected, then a reference to the entity is stored
+there to mark it for an update.</p><p><code>_collectionDeletions</code>
+If a PersistentCollection has been de-referenced in a fully MANAGED entity,
+then this collection is marked for deletion.</p><dl>
+<dt>Parameters:</dt>
+<dd>class - The class descriptor of the entity.</dd>
+<dd>entity - The entity for which to compute the changes.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 508</div>
+<h3 id="computeChangeSets()">computeChangeSets</h3>
+<code class="signature">public  void <strong>computeChangeSets</strong>()</code>
+<div class="details">
+<p>Computes all the changes that have been done to entities and collections
+since the last commit and stores these changes in the _entityChangeSet map
+temporarily for access by the persisters, until the UoW commit is finished.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1149</div>
+<h3 id="containsIdHash()">containsIdHash</h3>
+<code class="signature">public  boolean <strong>containsIdHash</strong>(string idHash, string rootClassName)</code>
+<div class="details">
+<p>INTERNAL:
+Checks whether an identifier hash exists in the identity map.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1715</div>
+<h3 id="createEntity()">createEntity</h3>
+<code class="signature">public  object <strong>createEntity</strong>(string className, array data, array hints)</code>
+<div class="details">
+<p>INTERNAL:
+Creates an entity. Used for reconstitution of entities during hydration.</p><dl>
+<dt>Ignore.</dt>
+<dt>Parameters:</dt>
+<dd>className - The name of the entity class.</dd>
+<dd>data - The data for the entity.</dd>
+<dd>hints - Any hints to account for during reconstitution/lookup of the entity.</dd>
+<dt>Returns:</dt>
+<dd>The entity instance.</dd>
+<dt>Internal:</dt>
+<dd>Highly performance-sensitive method.</dd>
+<dt>Todo:</dt>
+<dd>Rename: getOrCreateEntity</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1415</div>
+<h3 id="detach()">detach</h3>
+<code class="signature">public  void <strong>detach</strong>(object entity)</code>
+<div class="details">
+<p>Detaches an entity from the persistence management. It's persistence will
+no longer be managed by Doctrine.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to detach.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1098</div>
+<h3 id="getByIdHash()">getByIdHash</h3>
+<code class="signature">public  object <strong>getByIdHash</strong>(string idHash, string rootClassName)</code>
+<div class="details">
+<p>INTERNAL:
+Gets an entity in the identity map by its identifier hash.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1993</div>
+<h3 id="getCollectionPersister()">getCollectionPersister</h3>
+<code class="signature">public  <a href="../../doctrine/orm/persisters/abstractcollectionpersister.html">AbstractCollectionPersister</a> <strong>getCollectionPersister</strong>(<a href="../../doctrine/orm/mapping/associationmapping.html">AssociationMapping</a> association)</code>
+<div class="details">
+<p>Gets a collection persister for a collection-valued association.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1639</div>
+<h3 id="getCommitOrderCalculator()">getCommitOrderCalculator</h3>
+<code class="signature">public  Doctrine\ORM\Internal\CommitOrderCalculator <strong>getCommitOrderCalculator</strong>()</code>
+<div class="details">
+<p>Gets the CommitOrderCalculator used by the UnitOfWork to order commits.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 367</div>
+<h3 id="getEntityChangeSet()">getEntityChangeSet</h3>
+<code class="signature">public  array <strong>getEntityChangeSet</strong>(mixed entity)</code>
+<div class="details">
+<p>Gets the changeset for an entity.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1904</div>
+<h3 id="getEntityIdentifier()">getEntityIdentifier</h3>
+<code class="signature">public  array <strong>getEntityIdentifier</strong>(object entity)</code>
+<div class="details">
+<p>Gets the identifier of an entity.
+The returned value is always an array of identifier values. If the entity
+has a composite identifier then the identifier values are in the same
+order as the identifier field names as returned by ClassMetadata#getIdentifierFieldNames().</p><dl>
+<dt>Returns:</dt>
+<dd>The identifier values.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1969</div>
+<h3 id="getEntityPersister()">getEntityPersister</h3>
+<code class="signature">public  Doctrine\ORM\Persister\AbstractEntityPersister <strong>getEntityPersister</strong>(string entityName)</code>
+<div class="details">
+<p>Gets the EntityPersister for an Entity.</p><dl>
+<dt>Parameters:</dt>
+<dd>entityName - The name of the Entity.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1040</div>
+<h3 id="getEntityState()">getEntityState</h3>
+<code class="signature">public  int <strong>getEntityState</strong>(object entity, integer assume)</code>
+<div class="details">
+<p>Gets the state of an entity within the current unit of work.</p><p>NOTE: This method sees entities that are not MANAGED or REMOVED and have a
+populated identifier, whether it is generated or manually assigned, as
+DETACHED. This can be incorrect for manually assigned identifiers.</p><dl>
+<dt>Parameters:</dt>
+<dd></dd>
+<dd>assume - The state to assume if the state is not yet known. This is usually used to avoid costly state lookups, in the worst case with a database lookup.</dd>
+<dt>Returns:</dt>
+<dd>The entity state.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1852</div>
+<h3 id="getIdentityMap()">getIdentityMap</h3>
+<code class="signature">public  array <strong>getIdentityMap</strong>()</code>
+<div class="details">
+<p>Gets the identity map of the UnitOfWork.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1864</div>
+<h3 id="getOriginalEntityData()">getOriginalEntityData</h3>
+<code class="signature">public  array <strong>getOriginalEntityData</strong>(object entity)</code>
+<div class="details">
+<p>Gets the original data of an entity. The original data is the data that was
+present at the time the entity was reconstituted from the database.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 2102</div>
+<h3 id="getScheduledCollectionDeletions()">getScheduledCollectionDeletions</h3>
+<code class="signature">public  array <strong>getScheduledCollectionDeletions</strong>()</code>
+<div class="details">
+<p>Get the currently scheduled complete collection deletions</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 2112</div>
+<h3 id="getScheduledCollectionUpdates()">getScheduledCollectionUpdates</h3>
+<code class="signature">public  array <strong>getScheduledCollectionUpdates</strong>()</code>
+<div class="details">
+<p>Gets the currently scheduled collection inserts, updates and deletes.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 2092</div>
+<h3 id="getScheduledEntityDeletions()">getScheduledEntityDeletions</h3>
+<code class="signature">public  array <strong>getScheduledEntityDeletions</strong>()</code>
+<div class="details">
+<p>Gets the currently scheduled entity deletions in this UnitOfWork.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 2072</div>
+<h3 id="getScheduledEntityInsertions()">getScheduledEntityInsertions</h3>
+<code class="signature">public  array <strong>getScheduledEntityInsertions</strong>()</code>
+<div class="details">
+<p>Gets the currently scheduled entity insertions in this UnitOfWork.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 2082</div>
+<h3 id="getScheduledEntityUpdates()">getScheduledEntityUpdates</h3>
+<code class="signature">public  array <strong>getScheduledEntityUpdates</strong>()</code>
+<div class="details">
+<p>Gets the currently scheduled entity updates in this UnitOfWork.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1943</div>
+<h3 id="hasPendingInsertions()">hasPendingInsertions</h3>
+<code class="signature">public  boolean <strong>hasPendingInsertions</strong>()</code>
+<div class="details">
+<p>Checks whether the UnitOfWork has any pending insertions.</p><dl>
+<dt>Returns:</dt>
+<dd>TRUE if this UnitOfWork has pending insertions, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1697</div>
+<h3 id="isCollectionScheduledForDeletion()">isCollectionScheduledForDeletion</h3>
+<code class="signature">public  void <strong>isCollectionScheduledForDeletion</strong>(mixed coll)</code>
+<div class="details">
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 990</div>
+<h3 id="isEntityScheduled()">isEntityScheduled</h3>
+<code class="signature">public  boolean <strong>isEntityScheduled</strong>(mixed entity, $entity )</code>
+<div class="details">
+<p>Checks whether an entity is scheduled for insertion, update or deletion.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1125</div>
+<h3 id="isInIdentityMap()">isInIdentityMap</h3>
+<code class="signature">public  boolean <strong>isInIdentityMap</strong>(object entity)</code>
+<div class="details">
+<p>Checks whether an entity is registered in the identity map of this UnitOfWork.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 979</div>
+<h3 id="isScheduledForDelete()">isScheduledForDelete</h3>
+<code class="signature">public  boolean <strong>isScheduledForDelete</strong>(object entity)</code>
+<div class="details">
+<p>Checks whether an entity is registered as removed/deleted with the unit
+of work.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 880</div>
+<h3 id="isScheduledForInsert()">isScheduledForInsert</h3>
+<code class="signature">public  boolean <strong>isScheduledForInsert</strong>(object entity)</code>
+<div class="details">
+<p>Checks whether an entity is scheduled for insertion.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 935</div>
+<h3 id="isScheduledForUpdate()">isScheduledForUpdate</h3>
+<code class="signature">public  boolean <strong>isScheduledForUpdate</strong>(object entity)</code>
+<div class="details">
+<p>Checks whether an entity is registered as dirty in the unit of work.
+Note: Is not very useful currently as dirty entities are only registered
+at commit time.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1297</div>
+<h3 id="merge()">merge</h3>
+<code class="signature">public  object <strong>merge</strong>(object entity)</code>
+<div class="details">
+<p>Merges the state of the given detached entity into this UnitOfWork.</p><dl>
+<dt>Returns:</dt>
+<dd>The managed copy of the entity.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1159</div>
+<h3 id="persist()">persist</h3>
+<code class="signature">public  void <strong>persist</strong>(object entity)</code>
+<div class="details">
+<p>Persists an entity as part of the current unit of work.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to persist.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 2045</div>
+<h3 id="propertyChanged()">propertyChanged</h3>
+<code class="signature">public  void <strong>propertyChanged</strong>(object entity, string propertyName, mixed oldValue, mixed newValue)</code>
+<div class="details">
+<p>Notifies this UnitOfWork of a property change in an entity.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity that owns the property.</dd>
+<dd>propertyName - The name of the property that changed.</dd>
+<dd>oldValue - The old value of the property.</dd>
+<dd>newValue - The new value of the property.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 628</div>
+<h3 id="recomputeSingleEntityChangeSet()">recomputeSingleEntityChangeSet</h3>
+<code class="signature">public  void <strong>recomputeSingleEntityChangeSet</strong>(<a href="../../doctrine/orm/mapping/classmetadata.html">ClassMetadata</a> class, object entity)</code>
+<div class="details">
+<p>INTERNAL:
+Computes the changeset of an individual entity, independently of the
+computeChangeSets() routine that is used at the beginning of a UnitOfWork#commit().</p><p>The passed entity must be a managed entity. If the entity already has a change set
+because this method is invoked during a commit cycle then the change sets are added.
+whereby changes detected in this method prevail.</p><dl>
+<dt>Ignore.</dt>
+<dt>Parameters:</dt>
+<dd>class - The class descriptor of the entity.</dd>
+<dd>entity - The entity for which to (re)calculate the change set.</dd>
+<dt>Throws:</dt>
+<dd>If the passed entity is not MANAGED.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1459</div>
+<h3 id="refresh()">refresh</h3>
+<code class="signature">public  void <strong>refresh</strong>(object entity)</code>
+<div class="details">
+<p>Refreshes the state of the given entity from the database, overwriting
+any local, unpersisted changes.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to refresh.</dd>
+<dt>Throws:</dt>
+<dd>If the entity is not MANAGED.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 2015</div>
+<h3 id="registerManaged()">registerManaged</h3>
+<code class="signature">public  void <strong>registerManaged</strong>(object entity, array id, array data)</code>
+<div class="details">
+<p>INTERNAL:
+Registers an entity as managed.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity.</dd>
+<dd>id - The identifier values.</dd>
+<dd>data - The original entity data.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1241</div>
+<h3 id="remove()">remove</h3>
+<code class="signature">public  void <strong>remove</strong>(object entity)</code>
+<div class="details">
+<p>Deletes an entity as part of the current unit of work.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to remove.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1071</div>
+<h3 id="removeFromIdentityMap()">removeFromIdentityMap</h3>
+<code class="signature">public  boolean <strong>removeFromIdentityMap</strong>(object entity)</code>
+<div class="details">
+<p>INTERNAL:
+Removes an entity from the identity map. This effectively detaches the
+entity from the persistence management of Doctrine.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1690</div>
+<h3 id="scheduleCollectionDeletion()">scheduleCollectionDeletion</h3>
+<code class="signature">public  void <strong>scheduleCollectionDeletion</strong>(<a href="../../doctrine/orm/persistentcollection.html">PersistentCollection</a> coll)</code>
+<div class="details">
+<p>INTERNAL:
+Schedules a complete collection for removal when this UnitOfWork commits.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 916</div>
+<h3 id="scheduleExtraUpdate()">scheduleExtraUpdate</h3>
+<code class="signature">public  void <strong>scheduleExtraUpdate</strong>(object entity, array changeset)</code>
+<div class="details">
+<p>INTERNAL:
+Schedules an extra update that will be executed immediately after the
+regular entity updates within the currently running commit cycle.</p><p>Extra updates for entities are stored as (entity, changeset) tuples.</p><dl>
+<dt>Ignore.</dt>
+<dt>Parameters:</dt>
+<dd>entity - The entity for which to schedule an extra update.</dd>
+<dd>changeset - The changeset of the entity (what to update).</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 946</div>
+<h3 id="scheduleForDelete()">scheduleForDelete</h3>
+<code class="signature">public  void <strong>scheduleForDelete</strong>(object entity)</code>
+<div class="details">
+<p>INTERNAL:
+Schedules an entity for deletion.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1932</div>
+<h3 id="scheduleForDirtyCheck()">scheduleForDirtyCheck</h3>
+<code class="signature">public  void <strong>scheduleForDirtyCheck</strong>(object entity)</code>
+<div class="details">
+<p>Schedules an entity for dirty-checking at commit-time.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to schedule for dirty-checking.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 853</div>
+<h3 id="scheduleForInsert()">scheduleForInsert</h3>
+<code class="signature">public  void <strong>scheduleForInsert</strong>(object entity)</code>
+<div class="details">
+<p>Schedules an entity for insertion into the database.
+If the entity already has an identifier, it will be added to the identity map.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to schedule for insertion.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 890</div>
+<h3 id="scheduleForUpdate()">scheduleForUpdate</h3>
+<code class="signature">public  void <strong>scheduleForUpdate</strong>(object entity)</code>
+<div class="details">
+<p>Schedules an entity for being updated.</p><dl>
+<dt>Parameters:</dt>
+<dd>entity - The entity to schedule for being updated.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1679</div>
+<h3 id="scheduleOrphanRemoval()">scheduleOrphanRemoval</h3>
+<code class="signature">public  void <strong>scheduleOrphanRemoval</strong>(object entity)</code>
+<div class="details">
+<p>INTERNAL:
+Schedules an orphaned entity for removal. The remove() operation will be
+invoked on that entity at the beginning of the next commit of this
+UnitOfWork.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1876</div>
+<h3 id="setOriginalEntityData()">setOriginalEntityData</h3>
+<code class="signature">public  void <strong>setOriginalEntityData</strong>(mixed entity, mixed data)</code>
+<div class="details">
+<p></p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1890</div>
+<h3 id="setOriginalEntityProperty()">setOriginalEntityProperty</h3>
+<code class="signature">public  void <strong>setOriginalEntityProperty</strong>(string oid, string property, mixed value)</code>
+<div class="details">
+<p>INTERNAL:
+Sets a property value of the original data array of an entity.</p><dl>
+<dt>Ignore.</dt>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1954</div>
+<h3 id="size()">size</h3>
+<code class="signature">public  integer <strong>size</strong>()</code>
+<div class="details">
+<p>Calculates the size of the UnitOfWork. The size of the UnitOfWork is the
+number of entities in the identity map.</p></div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1918</div>
+<h3 id="tryGetById()">tryGetById</h3>
+<code class="signature">public  mixed <strong>tryGetById</strong>(mixed id, string rootClassName)</code>
+<div class="details">
+<p>Tries to find an entity with the given identifier in the identity map of
+this UnitOfWork.</p><dl>
+<dt>Parameters:</dt>
+<dd>id - The entity identifier to look for.</dd>
+<dd>rootClassName - The name of the root class of the mapped entity hierarchy.</dd>
+<dt>Returns:</dt>
+<dd>Returns the entity with the specified identifier if it exists in this UnitOfWork, FALSE otherwise.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="location">/Doctrine/ORM/UnitOfWork.php at line 1113</div>
+<h3 id="tryGetByIdHash()">tryGetByIdHash</h3>
+<code class="signature">public  mixed <strong>tryGetByIdHash</strong>(string idHash, string rootClassName)</code>
+<div class="details">
+<p>INTERNAL:
+Tries to get an entity by its identifier hash. If no entity is found for
+the given hash, FALSE is returned.</p><dl>
+<dt>Ignore.</dt>
+<dt>Returns:</dt>
+<dd>The found entity or FALSE.</dd>
+</dl>
+</div>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="../../overview-summary.html">Overview</a></li>
+<li><a href="../../doctrine/orm/package-summary.html">Namespace</a></li>
+<li class="active">Class</li>
+<li><a href="../../doctrine/orm/package-tree.html">Tree</a></li>
+<li><a href="../../deprecated-list.html">Deprecated</a></li>
+<li><a href="../../index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="../../index.html" target="_top">Frames</a>
+<a href="../../doctrine/orm/unitofwork.html" target="_top">No frames</a>
+</div>
+<div class="small_links">
+Summary: <a href="#summary_field">Field</a> | <a href="#summary_method">Method</a> | <a href="#summary_constr">Constr</a>
+Detail: <a href="#detail_field">Field</a> | <a href="#detail_method">Method</a> | <a href="#summary_constr">Constr</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/index-all.html b/lib/api/index-all.html
new file mode 100644
index 000000000..ae07dfadd
--- /dev/null
+++ b/lib/api/index-all.html
@@ -0,0 +1,4857 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:06 +0000">
+
+<link rel="stylesheet" type="text/css" href="stylesheet.css">
+<link rel="start" href="overview-summary.html">
+
+<title>Index (Doctrine)</title>
+
+</head>
+<body id="overview" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="overview-summary.html">Overview</a></li>
+<li>Namespace</li><li>Class</li><li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li class="active">Index</li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="index.html" target="_top">Frames</a>
+<a href="index-all.html" target="_top">No frames</a>
+</div>
+<a href="#letterA">A</a>
+<a href="#letterB">B</a>
+<a href="#letterC">C</a>
+<a href="#letterD">D</a>
+<a href="#letterE">E</a>
+<a href="#letterF">F</a>
+<a href="#letterG">G</a>
+<a href="#letterH">H</a>
+<a href="#letterI">I</a>
+<a href="#letterJ">J</a>
+<a href="#letterK">K</a>
+<a href="#letterL">L</a>
+<a href="#letterM">M</a>
+<a href="#letterN">N</a>
+<a href="#letterO">O</a>
+<a href="#letterP">P</a>
+<a href="#letterQ">Q</a>
+<a href="#letterR">R</a>
+<a href="#letterS">S</a>
+<a href="#letterT">T</a>
+<a href="#letterU">U</a>
+<a href="#letterV">V</a>
+<a href="#letterW">W</a>
+<a href="#letterX">X</a>
+<a href="#letterY">Y</a>
+<hr>
+
+<h1 id="letterA">A</h1>
+<dl>
+<dt><a href="doctrine/orm/query/expr.html#abs()">abs()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an ABS() function expression with the given argument.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/absfunction.html">AbsFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"ABS" "(" SimpleArithmeticExpression ")"</dd>
+<dt><a href="doctrine/dbal/schema/abstractasset.html">AbstractAsset()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>The abstract asset allows to reset the name of all assets without publishing this to the public userland.
+</dd>
+<dt><a href="doctrine/common/cache/abstractcache.html">AbstractCache()</a> - Class in package <a href="doctrine/common/cache/package-summary.html">Doctrine\Common\Cache</a></dt>
+<dd>Base class for cache driver implementations.</dd>
+<dt><a href="doctrine/orm/persisters/abstractcollectionpersister.html">AbstractCollectionPersister()</a> - Class in package <a href="doctrine/orm/persisters/package-summary.html">Doctrine\ORM\Persisters</a></dt>
+<dd>Base class for all collection persisters.</dd>
+<dt><a href="doctrine/orm/tools/console/command/schematool/abstractcommand.html">AbstractCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/schematool/package-summary.html">Doctrine\ORM\Tools\Console\Command\SchemaTool</a></dt>
+<dt><a href="doctrine/orm/persisters/abstractentityinheritancepersister.html">AbstractEntityInheritancePersister()</a> - Class in package <a href="doctrine/orm/persisters/package-summary.html">Doctrine\ORM\Persisters</a></dt>
+<dd>Base class for entity persisters that implement a certain inheritance mapping strategy.
+</dd>
+<dt><a href="doctrine/orm/tools/export/driver/abstractexporter.html">AbstractExporter()</a> - Class in package <a href="doctrine/orm/tools/export/driver/package-summary.html">Doctrine\ORM\Tools\Export\Driver</a></dt>
+<dd>Abstract base class which is to be used for the Exporter drivers
+which can be found in Doctrine\ORM\Tools\Export\Driver</dd>
+<dt><a href="doctrine/orm/mapping/driver/abstractfiledriver.html">AbstractFileDriver()</a> - Class in package <a href="doctrine/orm/mapping/driver/package-summary.html">Doctrine\ORM\Mapping\Driver</a></dt>
+<dd>Base driver for file-based metadata drivers.
+</dd>
+<dt><a href="doctrine/orm/internal/hydration/abstracthydrator.html">AbstractHydrator()</a> - Class in package <a href="doctrine/orm/internal/hydration/package-summary.html">Doctrine\ORM\Internal\Hydration</a></dt>
+<dd>Base class for all hydrators. </dd>
+<dt><a href="doctrine/orm/id/abstractidgenerator.html">AbstractIdGenerator()</a> - Class in package <a href="doctrine/orm/id/package-summary.html">Doctrine\ORM\Id</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html">AbstractPlatform()</a> - Class in package <a href="doctrine/dbal/platforms/package-summary.html">Doctrine\DBAL\Platforms</a></dt>
+<dd>Base class for all DatabasePlatforms. </dd>
+<dt><a href="doctrine/orm/abstractquery.html">AbstractQuery()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>Base contract for ORM queries. </dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html">AbstractSchemaManager()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Base class for schema managers. </dd>
+<dt><a href="doctrine/orm/query/parser.html#AbstractSchemaName()">AbstractSchemaName()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>AbstractSchemaName ::= identifier</dd>
+<dt><a href="doctrine/orm/query/exec/abstractsqlexecutor.html">AbstractSqlExecutor()</a> - Class in package <a href="doctrine/orm/query/exec/package-summary.html">Doctrine\ORM\Query\Exec</a></dt>
+<dd>Base class for SQL statement executors.</dd>
+<dt><a href="doctrine/orm/tools/console/metadatafilter.html#accept()">accept()</a> - Method in class <a href="doctrine/orm/tools/console/metadatafilter.html">Doctrine\ORM\Tools\Console\MetadataFilter</a></dt>
+<dt><a href="doctrine/dbal/schema/visitor/visitor.html#acceptColumn()">acceptColumn()</a> - Method in class <a href="doctrine/dbal/schema/visitor/visitor.html">Doctrine\DBAL\Schema\Visitor\Visitor</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/fixschema.html#acceptColumn()">acceptColumn()</a> - Method in class <a href="doctrine/dbal/schema/visitor/fixschema.html">Doctrine\DBAL\Schema\Visitor\FixSchema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html#acceptColumn()">acceptColumn()</a> - Method in class <a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html#acceptColumn()">acceptColumn()</a> - Method in class <a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</a></dt>
+<dt><a href="doctrine/dbal/schema/visitor/visitor.html#acceptForeignKey()">acceptForeignKey()</a> - Method in class <a href="doctrine/dbal/schema/visitor/visitor.html">Doctrine\DBAL\Schema\Visitor\Visitor</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/fixschema.html#acceptForeignKey()">acceptForeignKey()</a> - Method in class <a href="doctrine/dbal/schema/visitor/fixschema.html">Doctrine\DBAL\Schema\Visitor\FixSchema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html#acceptForeignKey()">acceptForeignKey()</a> - Method in class <a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html#acceptForeignKey()">acceptForeignKey()</a> - Method in class <a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html#acceptIndex()">acceptIndex()</a> - Method in class <a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html#acceptIndex()">acceptIndex()</a> - Method in class <a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/fixschema.html#acceptIndex()">acceptIndex()</a> - Method in class <a href="doctrine/dbal/schema/visitor/fixschema.html">Doctrine\DBAL\Schema\Visitor\FixSchema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/visitor.html#acceptIndex()">acceptIndex()</a> - Method in class <a href="doctrine/dbal/schema/visitor/visitor.html">Doctrine\DBAL\Schema\Visitor\Visitor</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/fixschema.html#acceptSchema()">acceptSchema()</a> - Method in class <a href="doctrine/dbal/schema/visitor/fixschema.html">Doctrine\DBAL\Schema\Visitor\FixSchema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html#acceptSchema()">acceptSchema()</a> - Method in class <a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html#acceptSchema()">acceptSchema()</a> - Method in class <a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/visitor.html#acceptSchema()">acceptSchema()</a> - Method in class <a href="doctrine/dbal/schema/visitor/visitor.html">Doctrine\DBAL\Schema\Visitor\Visitor</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/visitor.html#acceptSequence()">acceptSequence()</a> - Method in class <a href="doctrine/dbal/schema/visitor/visitor.html">Doctrine\DBAL\Schema\Visitor\Visitor</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html#acceptSequence()">acceptSequence()</a> - Method in class <a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html#acceptSequence()">acceptSequence()</a> - Method in class <a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/fixschema.html#acceptSequence()">acceptSequence()</a> - Method in class <a href="doctrine/dbal/schema/visitor/fixschema.html">Doctrine\DBAL\Schema\Visitor\FixSchema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/visitor.html#acceptTable()">acceptTable()</a> - Method in class <a href="doctrine/dbal/schema/visitor/visitor.html">Doctrine\DBAL\Schema\Visitor\Visitor</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/fixschema.html#acceptTable()">acceptTable()</a> - Method in class <a href="doctrine/dbal/schema/visitor/fixschema.html">Doctrine\DBAL\Schema\Visitor\FixSchema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html#acceptTable()">acceptTable()</a> - Method in class <a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html#acceptTable()">acceptTable()</a> - Method in class <a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</a></dt>
+<dd>Generate DDL Statements to create the accepted table with all its dependencies.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#add()">add()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add a single DQL query part to the array of parts</dd>
+<dt><a href="doctrine/orm/query/expr/orderby.html#add()">add()</a> - Method in class <a href="doctrine/orm/query/expr/orderby.html">Doctrine\ORM\Query\Expr\OrderBy</a></dt>
+<dt><a href="doctrine/common/collections/collection.html#add()">add()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Adds an element at the end of the collection.</dd>
+<dt><a href="doctrine/orm/query/expr/base.html#add()">add()</a> - Method in class <a href="doctrine/orm/query/expr/base.html">Doctrine\ORM\Query\Expr\Base</a></dt>
+<dt><a href="doctrine/orm/persistentcollection.html#add()">add()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#add()">add()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Adds an element to the collection.</dd>
+<dt><a href="doctrine/orm/internal/commitordercalculator.html#addClass()">addClass()</a> - Method in class <a href="doctrine/orm/internal/commitordercalculator.html">Doctrine\ORM\Internal\CommitOrderCalculator</a></dt>
+<dt><a href="doctrine/dbal/schema/table.html#addColumn()">addColumn()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/comparator.html#addColumnPlatformOptionCheck()">addColumnPlatformOptionCheck()</a> - Method in class <a href="doctrine/dbal/schema/comparator.html">Doctrine\DBAL\Schema\Comparator</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/configuration.html#addCustomDatetimeFunction()">addCustomDatetimeFunction()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Registers a custom DQL function that produces a date/time value.
+</dd>
+<dt><a href="doctrine/orm/configuration.html#addCustomNumericFunction()">addCustomNumericFunction()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Registers a custom DQL function that produces a numeric value.
+</dd>
+<dt><a href="doctrine/orm/configuration.html#addCustomStringFunction()">addCustomStringFunction()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Registers a custom DQL function that produces a string value.
+</dd>
+<dt><a href="doctrine/orm/query/parser.html#addCustomTreeWalker()">addCustomTreeWalker()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Adds a custom tree walker for modifying the AST.</dd>
+<dt><a href="doctrine/orm/internal/commitordercalculator.html#addDependency()">addDependency()</a> - Method in class <a href="doctrine/orm/internal/commitordercalculator.html">Doctrine\ORM\Internal\CommitOrderCalculator</a></dt>
+<dt><a href="doctrine/orm/mapping/driver/driverchain.html#addDriver()">addDriver()</a> - Method in class <a href="doctrine/orm/mapping/driver/driverchain.html">Doctrine\ORM\Mapping\Driver\DriverChain</a></dt>
+<dd>Add a nested driver.</dd>
+<dt><a href="doctrine/orm/configuration.html#addEntityNamespace()">addEntityNamespace()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Adds a namespace under a certain alias.</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#addEntityResult()">addEntityResult()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Adds an entity result to this ResultSetMapping.</dd>
+<dt><a href="doctrine/common/eventmanager.html#addEventListener()">addEventListener()</a> - Method in class <a href="doctrine/common/eventmanager.html">Doctrine\Common\EventManager</a></dt>
+<dd>Adds an event listener that listens on the specified events.</dd>
+<dt><a href="doctrine/common/eventmanager.html#addEventSubscriber()">addEventSubscriber()</a> - Method in class <a href="doctrine/common/eventmanager.html">Doctrine\Common\EventManager</a></dt>
+<dd>Adds an EventSubscriber. </dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#addFieldResult()">addFieldResult()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Adds a field to the result that belongs to an entity or joined entity.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#addForeignKeyConstraint()">addForeignKeyConstraint()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Add a foreign key constraint
+
+Name is inferred from the local columns</dd>
+<dt><a href="doctrine/orm/querybuilder.html#addGroupBy()">addGroupBy()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add to the existing GROUP BY clause
+
+[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->groupBy('u.last_login');
+->addGroupBy('u.created_at')</dd>
+<dt><a href="doctrine/dbal/schema/table.html#addIndex()">addIndex()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#addIndexBy()">addIndexBy()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Sets a field to use for indexing an entity result or joined entity result.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#addInheritedAssociationMapping()">addInheritedAssociationMapping()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>INTERNAL:
+Adds an association mapping without completing/validating it.
+</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#addInheritedFieldMapping()">addInheritedFieldMapping()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>INTERNAL:
+Adds a field mapping without completing/validating it.
+</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#addInsert()">addInsert()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Adds an entity to the queued insertions.
+</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#addJoinedEntityResult()">addJoinedEntityResult()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Adds a joined entity result.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#addLifecycleCallback()">addLifecycleCallback()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Adds a lifecycle callback for entities of this class.
+</dd>
+<dt><a href="doctrine/orm/tools/export/classmetadataexporter.html#addMappingSource()">addMappingSource()</a> - Method in class <a href="doctrine/orm/tools/export/classmetadataexporter.html">Doctrine\ORM\Tools\Export\ClassMetadataExporter</a></dt>
+<dd>Add a new mapping directory to the array of directories to convert and export
+to another format
+
+[php]
+$cme = new Doctrine\ORM\Tools\Export\ClassMetadataExporter();
+$cme->addMappingSource(__DIR__ . </dd>
+<dt><a href="doctrine/orm/tools/classmetadatareader.html#addMappingSource()">addMappingSource()</a> - Method in class <a href="doctrine/orm/tools/classmetadatareader.html">Doctrine\ORM\Tools\ClassMetadataReader</a></dt>
+<dd>Add a new mapping directory to the array of directories to convert and export
+to another format</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#addMetaResult()">addMetaResult()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Adds a meta column (foreign key or discriminator column) to the result set.</dd>
+<dt><a href="doctrine/orm/query/expr/base.html#addMultiple()">addMultiple()</a> - Method in class <a href="doctrine/orm/query/expr/base.html">Doctrine\ORM\Query\Expr\Base</a></dt>
+<dt><a href="doctrine/dbal/schema/table.html#addNamedForeignKeyConstraint()">addNamedForeignKeyConstraint()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Add a foreign key constraint with a given name</dd>
+<dt><a href="doctrine/orm/configuration.html#addNamedNativeQuery()">addNamedNativeQuery()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Adds a named native query to the configuration.</dd>
+<dt><a href="doctrine/orm/configuration.html#addNamedQuery()">addNamedQuery()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Adds a named DQL query to the configuration.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#addOption()">addOption()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/querybuilder.html#addOrderBy()">addOrderBy()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add to the existing ORDER BY clause</dd>
+<dt><a href="doctrine/orm/query/parserresult.html#addParameterMapping()">addParameterMapping()</a> - Method in class <a href="doctrine/orm/query/parserresult.html">Doctrine\ORM\Query\ParserResult</a></dt>
+<dd>Adds a DQL to SQL parameter mapping. </dd>
+<dt><a href="doctrine/orm/mapping/driver/annotationdriver.html#addPaths()">addPaths()</a> - Method in class <a href="doctrine/orm/mapping/driver/annotationdriver.html">Doctrine\ORM\Mapping\Driver\AnnotationDriver</a></dt>
+<dd>Append lookup paths to metadata driver.</dd>
+<dt><a href="doctrine/orm/mapping/driver/abstractfiledriver.html#addPaths()">addPaths()</a> - Method in class <a href="doctrine/orm/mapping/driver/abstractfiledriver.html">Doctrine\ORM\Mapping\Driver\AbstractFileDriver</a></dt>
+<dd>Append lookup paths to metadata driver.</dd>
+<dt><a href="doctrine/common/notifypropertychanged.html#addPropertyChangedListener()">addPropertyChangedListener()</a> - Method in class <a href="doctrine/common/notifypropertychanged.html">Doctrine\Common\NotifyPropertyChanged</a></dt>
+<dd>Adds a listener that wants to be notified about property changes.</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#addScalarResult()">addScalarResult()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Adds a scalar result mapping.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#addSelect()">addSelect()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add to the SELECT statement
+
+[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->addSelect('p')
+->from('User', 'u')
+->leftJoin('u.Phonenumbers', 'p');</dd>
+<dt><a href="doctrine/orm/unitofwork.html#addToIdentityMap()">addToIdentityMap()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Registers an entity in the identity map.
+</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#addTreeWalker()">addTreeWalker()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Adds a tree walker to the chain.</dd>
+<dt><a href="doctrine/dbal/types/type.html#addType()">addType()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Adds a custom type to the type map.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#addUniqueIndex()">addUniqueIndex()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/table.html#addUnnamedForeignKeyConstraint()">addUnnamedForeignKeyConstraint()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Add a foreign key constraint
+
+Name is to be generated by the database itsself.</dd>
+<dt><a href="doctrine/orm/query/ast/aggregateexpression.html">AggregateExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Description of AggregateExpression</dd>
+<dt><a href="doctrine/orm/query/parser.html#AggregateExpression()">AggregateExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>AggregateExpression ::=
+("AVG" | "MAX" | "MIN" | "SUM") "(" ["DISTINCT"] StateFieldPathExpression ")" |
+"COUNT" "(" ["DISTINCT"] (IdentificationVariable | SingleValuedPathExpression) ")"</dd>
+<dt><a href="doctrine/orm/query/parser.html#AliasIdentificationVariable()">AliasIdentificationVariable()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>AliasIdentificationVariable = identifier</dd>
+<dt><a href="doctrine/orm/query/parser.html#AliasResultVariable()">AliasResultVariable()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>AliasResultVariable ::= identifier</dd>
+<dt><a href="doctrine/orm/query/expr.html#all()">all()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of ALL() function, with the given DQL Subquery.</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#alterTable()">alterTable()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Alter an existing tables schema</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#alterTable()">alterTable()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>alter an existing table</dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#alterTableChangeNotSupported()">alterTableChangeNotSupported()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dt><a href="doctrine/orm/querybuilder.html#andHaving()">andHaving()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add to the existing HAVING clause with an AND</dd>
+<dt><a href="doctrine/orm/querybuilder.html#andWhere()">andWhere()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add a new WHERE statement with an AND
+
+[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.username LIKE ?')
+->andWhere('u.is_active = 1');</dd>
+<dt><a href="doctrine/orm/query/expr/andx.html">Andx()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Expression class for building DQL and parts</dd>
+<dt><a href="doctrine/orm/query/expr.html#andX()">andX()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a conjunction of the given boolean expressions.
+</dd>
+<dt><a href="doctrine/common/annotations/annotation.html">Annotation()</a> - Class in package <a href="doctrine/common/annotations/package-summary.html">Doctrine\Common\Annotations</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/common/annotations/parser.html#Annotation()">Annotation()</a> - Method in class <a href="doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></dt>
+<dd>Annotation     ::= "@" AnnotationName ["(" [Values] ")"]
+AnnotationName ::= QualifiedName | SimpleName | AliasedName
+QualifiedName  ::= NameSpacePart "\" {NameSpacePart "\"}* SimpleName
+AliasedName    ::= Alias ":" SimpleName
+NameSpacePart  ::= identifier
+SimpleName     ::= identifier
+Alias          ::= identifier</dd>
+<dt><a href="doctrine/orm/mapping/driver/annotationdriver.html">AnnotationDriver()</a> - Class in package <a href="doctrine/orm/mapping/driver/package-summary.html">Doctrine\ORM\Mapping\Driver</a></dt>
+<dd>The AnnotationDriver reads the mapping metadata from docblock annotations.</dd>
+<dt><a href="doctrine/common/annotations/annotationexception.html">AnnotationException()</a> - Class in package <a href="doctrine/common/annotations/package-summary.html">Doctrine\Common\Annotations</a></dt>
+<dd>Description of AnnotationException</dd>
+<dt><a href="doctrine/orm/tools/export/driver/annotationexporter.html">AnnotationExporter()</a> - Class in package <a href="doctrine/orm/tools/export/driver/package-summary.html">Doctrine\ORM\Tools\Export\Driver</a></dt>
+<dd>ClassMetadata exporter for PHP classes with annotations</dd>
+<dt><a href="doctrine/common/annotations/annotationreader.html">AnnotationReader()</a> - Class in package <a href="doctrine/common/annotations/package-summary.html">Doctrine\Common\Annotations</a></dt>
+<dd>A reader for docblock annotations.</dd>
+<dt><a href="doctrine/common/annotations/parser.html#Annotations()">Annotations()</a> - Method in class <a href="doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></dt>
+<dd>Annotations ::= Annotation {[ "*" ]* [Annotation]}</dd>
+<dt><a href="doctrine/orm/query/expr.html#any()">any()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an ANY() function expression with the given DQL subquery.</dd>
+<dt><a href="doctrine/common/cache/apccache.html">ApcCache()</a> - Class in package <a href="doctrine/common/cache/package-summary.html">Doctrine\Common\Cache</a></dt>
+<dd>APC cache driver.</dd>
+<dt><a href="doctrine/orm/query/ast/arithmeticexpression.html">ArithmeticExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>ArithmeticExpression ::= SimpleArithmeticExpression | "(" Subselect ")"</dd>
+<dt><a href="doctrine/orm/query/parser.html#ArithmeticExpression()">ArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ArithmeticExpression ::= SimpleArithmeticExpression | "(" Subselect ")"</dd>
+<dt><a href="doctrine/orm/query/parser.html#ArithmeticFactor()">ArithmeticFactor()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ArithmeticFactor ::= [("+" | "-")] ArithmeticPrimary</dd>
+<dt><a href="doctrine/orm/query/ast/arithmeticfactor.html">ArithmeticFactor()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>ArithmeticFactor ::= [("+" | "-")] ArithmeticPrimary</dd>
+<dt><a href="doctrine/orm/query/parser.html#ArithmeticPrimary()">ArithmeticPrimary()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ArithmeticPrimary ::= SingleValuedPathExpression | Literal | "(" SimpleArithmeticExpression ")"
+| FunctionsReturningNumerics | AggregateExpression | FunctionsReturningStrings
+| FunctionsReturningDatetime | IdentificationVariable</dd>
+<dt><a href="doctrine/orm/query/ast/arithmeticterm.html">ArithmeticTerm()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>ArithmeticTerm ::= ArithmeticFactor {("*" | "/") ArithmeticFactor}</dd>
+<dt><a href="doctrine/orm/query/parser.html#ArithmeticTerm()">ArithmeticTerm()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ArithmeticTerm ::= ArithmeticFactor {("*" | "/") ArithmeticFactor}</dd>
+<dt><a href="doctrine/common/cache/arraycache.html">ArrayCache()</a> - Class in package <a href="doctrine/common/cache/package-summary.html">Doctrine\Common\Cache</a></dt>
+<dd>Array cache driver.</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html">ArrayCollection()</a> - Class in package <a href="doctrine/common/collections/package-summary.html">Doctrine\Common\Collections</a></dt>
+<dd>An ArrayCollection is a Collection implementation that uses a regular PHP array
+internally.</dd>
+<dt><a href="doctrine/common/annotations/parser.html#ArrayEntry()">ArrayEntry()</a> - Method in class <a href="doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></dt>
+<dd>ArrayEntry ::= Value | KeyValuePair
+KeyValuePair ::= Key "=" PlainValue
+Key ::= string | integer</dd>
+<dt><a href="doctrine/orm/internal/hydration/arrayhydrator.html">ArrayHydrator()</a> - Class in package <a href="doctrine/orm/internal/hydration/package-summary.html">Doctrine\ORM\Internal\Hydration</a></dt>
+<dd>The ArrayHydrator produces a nested array "graph" that is often (not always)
+interchangeable with the corresponding object graph for read-only access.</dd>
+<dt><a href="doctrine/dbal/types/arraytype.html">ArrayType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps a PHP array to a clob SQL type.</dd>
+<dt><a href="doctrine/common/annotations/parser.html#Arrayx()">Arrayx()</a> - Method in class <a href="doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></dt>
+<dd>Array ::= "{" ArrayEntry {"," ArrayEntry}* "}"</dd>
+<dt><a href="doctrine/orm/query/expr.html#asc()">asc()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an ASCending order expression.</dd>
+<dt><a href="doctrine/orm/id/assignedgenerator.html">AssignedGenerator()</a> - Class in package <a href="doctrine/orm/id/package-summary.html">Doctrine\ORM\Id</a></dt>
+<dd>Special generator for application-assigned identifiers (doesnt really generate anything).</dd>
+<dt><a href="doctrine/orm/mapping/associationmapping.html">AssociationMapping()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Base class for association mappings.
+</dd>
+<dt><a href="doctrine/orm/query/queryexception.html#associationPathCompositeKeyNotSupported()">associationPathCompositeKeyNotSupported()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/orm/query/parser.html#AssociationPathExpression()">AssociationPathExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>AssociationPathExpression ::= CollectionValuedPathExpression | SingleValuedAssociationPathExpression</dd>
+<dt><a href="doctrine/orm/query/queryexception.html#associationPathInverseSideNotSupported()">associationPathInverseSideNotSupported()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/orm/query/ast/astexception.html">ASTException()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Description of QueryException</dd>
+<dt><a href="doctrine/orm/query/expr.html#avg()">avg()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of AVG() function, with the given argument.</dd>
+</dl>
+<h1 id="letterB">B</h1>
+<dl>
+<dt><a href="doctrine/orm/query/expr/base.html">Base()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Abstract base Expr class for building DQL parts</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html#beginTransaction()">beginTransaction()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></dt>
+<dt><a href="doctrine/orm/entitymanager.html#beginTransaction()">beginTransaction()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Starts a transaction on the underlying database connection.</dd>
+<dt><a href="doctrine/dbal/driver/pdomssql/connection.html#beginTransaction()">beginTransaction()</a> - Method in class <a href="doctrine/dbal/driver/pdomssql/connection.html">Doctrine\DBAL\Driver\PDOMsSql\Connection</a></dt>
+<dd>Begins a database transaction.</dd>
+<dt><a href="doctrine/orm/query/expr.html#between()">between()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of BETWEEN() function, with the given argument.</dd>
+<dt><a href="doctrine/orm/query/parser.html#BetweenExpression()">BetweenExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>BetweenExpression ::= ArithmeticExpression ["NOT"] "BETWEEN" ArithmeticExpression "AND" ArithmeticExpression</dd>
+<dt><a href="doctrine/orm/query/ast/betweenexpression.html">BetweenExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Description of BetweenExpression
+
+@license http://www.opensource.org/licenses/lgpl-license.php LGPL</dd>
+<dt><a href="doctrine/dbal/types/biginttype.html">BigIntType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps a database BIGINT to a PHP string.</dd>
+<dt><a href="doctrine/dbal/driver/statement.html#bindParam()">bindParam()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>Binds a PHP variable to a corresponding named or question mark placeholder in the 
+SQL statement that was use to prepare the statement. </dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#bindParam()">bindParam()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/driver/statement.html#bindValue()">bindValue()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>Binds a value to a corresponding named or positional
+placeholder in the SQL statement that was used to prepare the statement.</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#bindValue()">bindValue()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/types/booleantype.html">BooleanType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps an SQL boolean to a PHP boolean.</dd>
+</dl>
+<h1 id="letterC">C</h1>
+<dl>
+<dt><a href="doctrine/common/cache/cache.html">Cache()</a> - Interface in package <a href="doctrine/common/cache/package-summary.html">Doctrine\Common\Cache</a></dt>
+<dd>Interface for cache drivers.</dd>
+<dt><a href="doctrine/common/util/inflector.html#camelize()">camelize()</a> - Method in class <a href="doctrine/common/util/inflector.html">Doctrine\Common\Util\Inflector</a></dt>
+<dd>Camelize a word. </dd>
+<dt><a href="doctrine/orm/query/parser.html#CaseExpression()">CaseExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dt><a href="doctrine/dbal/schema/table.html#changeColumn()">changeColumn()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Change Column Details</dd>
+<dt><a href="doctrine/orm/mapping/changetrackingpolicy.html">ChangeTrackingPolicy()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/common/util/inflector.html#classify()">classify()</a> - Method in class <a href="doctrine/common/util/inflector.html">Doctrine\Common\Util\Inflector</a></dt>
+<dd>Convert a word in to the format for a Doctrine class name. </dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#classIsNotAValidEntityOrMappedSuperClass()">classIsNotAValidEntityOrMappedSuperClass()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/common/classloader.html">ClassLoader()</a> - Class in package <a href="doctrine/common/package-summary.html">Doctrine\Common</a></dt>
+<dd>A <tt>ClassLoader</tt> is an autoloader for class files that can be
+installed on the SPL autoload stack. </dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html">ClassMetadata()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>A <tt>ClassMetadata</tt> instance holds all the object-relational mapping metadata
+of an entity and it's associations.
+</dd>
+<dt><a href="doctrine/orm/tools/export/classmetadataexporter.html">ClassMetadataExporter()</a> - Class in package <a href="doctrine/orm/tools/export/package-summary.html">Doctrine\ORM\Tools\Export</a></dt>
+<dd>Class used for converting your mapping information between the
+supported formats: yaml, xml, and php/annotation.
+</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatafactory.html">ClassMetadataFactory()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>The ClassMetadataFactory is used to create ClassMetadata objects that contain all the
+metadata mapping informations of a class which describes how a class should be mapped
+to a relational database.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html">ClassMetadataInfo()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>A <tt>ClassMetadata</tt> instance holds all the object-relational mapping metadata
+of an entity and it's associations.
+</dd>
+<dt><a href="doctrine/orm/tools/classmetadatareader.html">ClassMetadataReader()</a> - Class in package <a href="doctrine/orm/tools/package-summary.html">Doctrine\ORM\Tools</a></dt>
+<dd>Class to read metadata mapping information from multiple sources into an array
+of ClassMetadataInfo instances.
+</dd>
+<dt><a href="doctrine/orm/internal/commitordercalculator.html#clear()">clear()</a> - Method in class <a href="doctrine/orm/internal/commitordercalculator.html">Doctrine\ORM\Internal\CommitOrderCalculator</a></dt>
+<dd>Clears the current graph.</dd>
+<dt><a href="doctrine/common/collections/collection.html#clear()">clear()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Clears the collection, removing all elements.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#clear()">clear()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Clears the EntityManager. </dd>
+<dt><a href="doctrine/orm/entityrepository.html#clear()">clear()</a> - Method in class <a href="doctrine/orm/entityrepository.html">Doctrine\ORM\EntityRepository</a></dt>
+<dd>Clears the repository, causing all managed entities to become detached.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#clear()">clear()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/unitofwork.html#clear()">clear()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Clears the UnitOfWork.</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#clear()">clear()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Clears the collection.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#clearEntityChangeSet()">clearEntityChangeSet()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Clears the property changeset of the entity with the given OID.</dd>
+<dt><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html#clearQueries()">clearQueries()</a> - Method in class <a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/entitymanager.html#close()">close()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Closes the EntityManager. </dd>
+<dt><a href="doctrine/dbal/connection.html#close()">close()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Closes the connection.</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#closeCursor()">closeCursor()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>Closes the cursor, enabling the statement to be executed again.</dd>
+<dt><a href="doctrine/dbal/driver/statement.html#closeCursor()">closeCursor()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>Closes the cursor, enabling the statement to be executed again.</dd>
+<dt><a href="doctrine/common/collections/collection.html">Collection()</a> - Interface in package <a href="doctrine/common/collections/package-summary.html">Doctrine\Common\Collections</a></dt>
+<dd>The missing (SPL) Collection/Array/OrderedMap interface.
+</dd>
+<dt><a href="doctrine/orm/query/ast/collectionmemberexpression.html">CollectionMemberExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>CollectionMemberExpression ::= EntityExpression ["NOT"] "MEMBER" ["OF"] CollectionValuedPathExpression</dd>
+<dt><a href="doctrine/orm/query/parser.html#CollectionMemberExpression()">CollectionMemberExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>CollectionMemberExpression ::= EntityExpression ["NOT"] "MEMBER" ["OF"] CollectionValuedPathExpression
+
+EntityExpression ::= SingleValuedAssociationPathExpression | SimpleEntityExpression
+SimpleEntityExpression ::= IdentificationVariable | InputParameter</dd>
+<dt><a href="doctrine/orm/query/parser.html#CollectionValuedPathExpression()">CollectionValuedPathExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>CollectionValuedPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* CollectionValuedAssociationField</dd>
+<dt><a href="doctrine/dbal/schema/column.html">Column()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Object representation of a database column</dd>
+<dt><a href="doctrine/orm/mapping/column.html">Column()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#columnAlreadyExists()">columnAlreadyExists()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#columnCount()">columnCount()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/driver/statement.html#columnCount()">columnCount()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>columnCount
+Returns the number of columns in the result set</dd>
+<dt><a href="doctrine/dbal/schema/columndiff.html">ColumnDiff()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Represent the change of a column</dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#columnDoesNotExist()">columnDoesNotExist()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/table.html#columnsAreIndexed()">columnsAreIndexed()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Check if an index begins in the order of the given columns.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#commit()">commit()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Commits the UnitOfWork, executing all operations that have been postponed
+up to this point. </dd>
+<dt><a href="doctrine/dbal/driver/pdomssql/connection.html#commit()">commit()</a> - Method in class <a href="doctrine/dbal/driver/pdomssql/connection.html">Doctrine\DBAL\Driver\PDOMsSql\Connection</a></dt>
+<dd>Performs the commit.</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html#commit()">commit()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></dt>
+<dt><a href="doctrine/orm/entitymanager.html#commit()">commit()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Commits a transaction on the underlying database connection.</dd>
+<dt><a href="doctrine/dbal/connectionexception.html#commitFailedRollbackOnly()">commitFailedRollbackOnly()</a> - Method in class <a href="doctrine/dbal/connectionexception.html">Doctrine\DBAL\ConnectionException</a></dt>
+<dt><a href="doctrine/orm/internal/commitordercalculator.html">CommitOrderCalculator()</a> - Class in package <a href="doctrine/orm/internal/package-summary.html">Doctrine\ORM\Internal</a></dt>
+<dd>The CommitOrderCalculator is used by the UnitOfWork to sort out the
+correct order in which changes to entities need to be persisted.</dd>
+<dt><a href="doctrine/common/commonexception.html">CommonException()</a> - Exception in package <a href="doctrine/common/package-summary.html">Doctrine\Common</a></dt>
+<dd>Base exception class for package Doctrine\Common</dd>
+<dt><a href="doctrine/dbal/schema/comparator.html">Comparator()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Compare to Schemas and return an instance of SchemaDiff</dd>
+<dt><a href="doctrine/common/version.html#compare()">compare()</a> - Method in class <a href="doctrine/common/version.html">Doctrine\Common\Version</a></dt>
+<dd>Compares a Doctrine version with the current one.</dd>
+<dt><a href="doctrine/dbal/schema/comparator.html#compare()">compare()</a> - Method in class <a href="doctrine/dbal/schema/comparator.html">Doctrine\DBAL\Schema\Comparator</a></dt>
+<dd>Returns a SchemaDiff object containing the differences between the schemas $fromSchema and $toSchema.
+</dd>
+<dt><a href="doctrine/dbal/schema/comparator.html#compareSchemas()">compareSchemas()</a> - Method in class <a href="doctrine/dbal/schema/comparator.html">Doctrine\DBAL\Schema\Comparator</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/expr/comparison.html">Comparison()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Expression class for DQL comparison expressions</dd>
+<dt><a href="doctrine/orm/query/parser.html#ComparisonExpression()">ComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ComparisonExpression ::= ArithmeticExpression ComparisonOperator ( QuantifiedExpression | ArithmeticExpression )</dd>
+<dt><a href="doctrine/orm/query/ast/comparisonexpression.html">ComparisonExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>ComparisonExpression ::= ArithmeticExpression ComparisonOperator ( QuantifiedExpression | ArithmeticExpression ) |
+StringExpression ComparisonOperator (StringExpression | QuantifiedExpression) |
+BooleanExpression ("=" | "<>" | "!=") (BooleanExpression | QuantifiedExpression) |
+EnumExpression ("=" | "<>" | "!=") (EnumExpression | QuantifiedExpression) |
+DatetimeExpression ComparisonOperator (DatetimeExpression | QuantifiedExpression) |
+EntityExpression ("=" | "<>") (EntityExpression | QuantifiedExpression)</dd>
+<dt><a href="doctrine/orm/query/parser.html#ComparisonOperator()">ComparisonOperator()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ComparisonOperator ::= "=" | "<" | "<=" | "<>" | ">" | ">=" | "!="</dd>
+<dt><a href="doctrine/orm/unitofwork.html#computeChangeSet()">computeChangeSet()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Computes the changes that happened to a single entity.
+</dd>
+<dt><a href="doctrine/orm/unitofwork.html#computeChangeSets()">computeChangeSets()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Computes all the changes that have been done to entities and collections
+since the last commit and stores these changes in the _entityChangeSet map
+temporarily for access by the persisters, until the UoW commit is finished.</dd>
+<dt><a href="doctrine/orm/query/expr.html#concat()">concat()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a CONCAT() function expression with the given arguments.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/concatfunction.html">ConcatFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"CONCAT" "(" StringPrimary "," StringPrimary ")"</dd>
+<dt><a href="doctrine/orm/query/parser.html#ConditionalExpression()">ConditionalExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ConditionalExpression ::= ConditionalTerm {"OR" ConditionalTerm}</dd>
+<dt><a href="doctrine/orm/query/ast/conditionalexpression.html">ConditionalExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>ConditionalExpression ::= ConditionalTerm {"OR" ConditionalTerm}</dd>
+<dt><a href="doctrine/orm/query/parser.html#ConditionalFactor()">ConditionalFactor()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ConditionalFactor ::= ["NOT"] ConditionalPrimary</dd>
+<dt><a href="doctrine/orm/query/ast/conditionalfactor.html">ConditionalFactor()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>ConditionalFactor ::= ["NOT"] ConditionalPrimary</dd>
+<dt><a href="doctrine/orm/query/parser.html#ConditionalPrimary()">ConditionalPrimary()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ConditionalPrimary ::= SimpleConditionalExpression | "(" ConditionalExpression ")"</dd>
+<dt><a href="doctrine/orm/query/ast/conditionalprimary.html">ConditionalPrimary()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>ConditionalPrimary ::= SimpleConditionalExpression | "(" ConditionalExpression ")"</dd>
+<dt><a href="doctrine/orm/query/parser.html#ConditionalTerm()">ConditionalTerm()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ConditionalTerm ::= ConditionalFactor {"AND" ConditionalFactor}</dd>
+<dt><a href="doctrine/orm/query/ast/conditionalterm.html">ConditionalTerm()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>ConditionalTerm ::= ConditionalFactor {"AND" ConditionalFactor}</dd>
+<dt><a href="doctrine/dbal/configuration.html">Configuration()</a> - Class in package <a href="doctrine/dbal/package-summary.html">Doctrine\DBAL</a></dt>
+<dd>Configuration container for the Doctrine DBAL.</dd>
+<dt><a href="doctrine/orm/configuration.html">Configuration()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>Configuration container for all configuration options of Doctrine.
+</dd>
+<dt><a href="doctrine/orm/tools/console/command/generaterepositoriescommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/generaterepositoriescommand.html">Doctrine\ORM\Tools\Console\Command\GenerateRepositoriesCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/tools/console/command/importcommand.html#configure()">configure()</a> - Method in class <a href="doctrine/dbal/tools/console/command/importcommand.html">Doctrine\DBAL\Tools\Console\Command\ImportCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/rundqlcommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/rundqlcommand.html">Doctrine\ORM\Tools\Console\Command\RunDqlCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/clearcache/querycommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/clearcache/querycommand.html">Doctrine\ORM\Tools\Console\Command\ClearCache\QueryCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/schematool/updatecommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/schematool/updatecommand.html">Doctrine\ORM\Tools\Console\Command\SchemaTool\UpdateCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/convertmappingcommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/convertmappingcommand.html">Doctrine\ORM\Tools\Console\Command\ConvertMappingCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/ensureproductionsettingscommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/ensureproductionsettingscommand.html">Doctrine\ORM\Tools\Console\Command\EnsureProductionSettingsCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/generateentitiescommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/generateentitiescommand.html">Doctrine\ORM\Tools\Console\Command\GenerateEntitiesCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/clearcache/resultcommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/clearcache/resultcommand.html">Doctrine\ORM\Tools\Console\Command\ClearCache\ResultCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/generateproxiescommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/generateproxiescommand.html">Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/clearcache/metadatacommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/clearcache/metadatacommand.html">Doctrine\ORM\Tools\Console\Command\ClearCache\MetadataCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/schematool/createcommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/schematool/createcommand.html">Doctrine\ORM\Tools\Console\Command\SchemaTool\CreateCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html">Doctrine\ORM\Tools\Console\Command\ConvertDoctrine1SchemaCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/tools/console/command/runsqlcommand.html#configure()">configure()</a> - Method in class <a href="doctrine/dbal/tools/console/command/runsqlcommand.html">Doctrine\DBAL\Tools\Console\Command\RunSqlCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/schematool/dropcommand.html#configure()">configure()</a> - Method in class <a href="doctrine/orm/tools/console/command/schematool/dropcommand.html">Doctrine\ORM\Tools\Console\Command\SchemaTool\DropCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/driver/pdosqlite/driver.html#connect()">connect()</a> - Method in class <a href="doctrine/dbal/driver/pdosqlite/driver.html">Doctrine\DBAL\Driver\PDOSqlite\Driver</a></dt>
+<dd>Tries to establish a database connection to SQLite.</dd>
+<dt><a href="doctrine/dbal/connection.html#connect()">connect()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Establishes the connection with the database.</dd>
+<dt><a href="doctrine/dbal/driver/pdomssql/connection.html">Connection()</a> - Class in package <a href="doctrine/dbal/driver/pdomssql/package-summary.html">Doctrine\DBAL\Driver\PDOMsSql</a></dt>
+<dd>MsSql Connection implementation.</dd>
+<dt><a href="doctrine/dbal/driver/connection.html">Connection()</a> - Interface in package <a href="doctrine/dbal/driver/package-summary.html">Doctrine\DBAL\Driver</a></dt>
+<dd>Connection interface.
+</dd>
+<dt><a href="doctrine/dbal/connection.html">Connection()</a> - Class in package <a href="doctrine/dbal/package-summary.html">Doctrine\DBAL</a></dt>
+<dd>A wrapper around a Doctrine\DBAL\Driver\Connection that adds features like
+events, transaction isolation levels, configuration, emulated transaction nesting,
+lazy connecting and more.</dd>
+<dt><a href="doctrine/dbal/event/connectioneventargs.html">ConnectionEventArgs()</a> - Class in package <a href="doctrine/dbal/event/package-summary.html">Doctrine\DBAL\Event</a></dt>
+<dd>Event Arguments used when a Driver connection is established inside Doctrine\DBAL\Connection.</dd>
+<dt><a href="doctrine/dbal/connectionexception.html">ConnectionException()</a> - Class in package <a href="doctrine/dbal/package-summary.html">Doctrine\DBAL</a></dt>
+<dd>Doctrine\DBAL\ConnectionException</dd>
+<dt><a href="doctrine/dbal/tools/console/helper/connectionhelper.html">ConnectionHelper()</a> - Class in package <a href="doctrine/dbal/tools/console/helper/package-summary.html">Doctrine\DBAL\Tools\Console\Helper</a></dt>
+<dd>Doctrine CLI Connection Helper.</dd>
+<dt><a href="doctrine/dbal/schema/constraint.html">Constraint()</a> - Interface in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Marker interface for contraints</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#contains()">contains()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Checks whether the given element is contained in the collection.
+</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#contains()">contains()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/cache/abstractcache.html#contains()">contains()</a> - Method in class <a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/entitymanager.html#contains()">contains()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Determines whether an entity instance is managed in this EntityManager.</dd>
+<dt><a href="doctrine/common/collections/collection.html#contains()">contains()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Checks whether an element is contained in the collection.
+</dd>
+<dt><a href="doctrine/orm/query.html#contains()">contains()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Method to check if an arbitrary piece of DQL exists</dd>
+<dt><a href="doctrine/common/cache/cache.html#contains()">contains()</a> - Method in class <a href="doctrine/common/cache/cache.html">Doctrine\Common\Cache\Cache</a></dt>
+<dd>Test if an entry exists in the cache.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#containsIdHash()">containsIdHash()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Checks whether an identifier hash exists in the identity map.</dd>
+<dt><a href="doctrine/common/collections/collection.html#containsKey()">containsKey()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Checks whether the collection contains an element with the specified key/index.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#containsKey()">containsKey()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#containsKey()">containsKey()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Checks whether the collection contains a specific key/index.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#convertBooleans()">convertBooleans()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Some platforms need the boolean values to be converted.
+</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#convertBooleans()">convertBooleans()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Postgres wants boolean values converted to the strings 'true'/'false'.</dd>
+<dt><a href="doctrine/orm/tools/convertdoctrine1schema.html">ConvertDoctrine1Schema()</a> - Class in package <a href="doctrine/orm/tools/package-summary.html">Doctrine\ORM\Tools</a></dt>
+<dd>Class to help with converting Doctrine 1 schema files to Doctrine 2 mapping files</dd>
+<dt><a href="doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html">ConvertDoctrine1SchemaCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/package-summary.html">Doctrine\ORM\Tools\Console\Command</a></dt>
+<dd>Command to convert a Doctrine 1 schema to a Doctrine 2 mapping file.</dd>
+<dt><a href="doctrine/orm/tools/console/command/convertmappingcommand.html">ConvertMappingCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/package-summary.html">Doctrine\ORM\Tools\Console\Command</a></dt>
+<dd>Command to convert your mapping information between the various formats.</dd>
+<dt><a href="doctrine/dbal/types/objecttype.html#convertToDatabaseValue()">convertToDatabaseValue()</a> - Method in class <a href="doctrine/dbal/types/objecttype.html">Doctrine\DBAL\Types\ObjectType</a></dt>
+<dd>Converts a value from its PHP representation to its database representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/type.html#convertToDatabaseValue()">convertToDatabaseValue()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Converts a value from its PHP representation to its database representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/datetype.html#convertToDatabaseValue()">convertToDatabaseValue()</a> - Method in class <a href="doctrine/dbal/types/datetype.html">Doctrine\DBAL\Types\DateType</a></dt>
+<dd>Converts a value from its PHP representation to its database representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/datetimetype.html#convertToDatabaseValue()">convertToDatabaseValue()</a> - Method in class <a href="doctrine/dbal/types/datetimetype.html">Doctrine\DBAL\Types\DateTimeType</a></dt>
+<dd>Converts a value from its PHP representation to its database representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/booleantype.html#convertToDatabaseValue()">convertToDatabaseValue()</a> - Method in class <a href="doctrine/dbal/types/booleantype.html">Doctrine\DBAL\Types\BooleanType</a></dt>
+<dd>Converts a value from its PHP representation to its database representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/timetype.html#convertToDatabaseValue()">convertToDatabaseValue()</a> - Method in class <a href="doctrine/dbal/types/timetype.html">Doctrine\DBAL\Types\TimeType</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/types/arraytype.html#convertToDatabaseValue()">convertToDatabaseValue()</a> - Method in class <a href="doctrine/dbal/types/arraytype.html">Doctrine\DBAL\Types\ArrayType</a></dt>
+<dd>Converts a value from its PHP representation to its database representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/connection.html#convertToDatabaseValue()">convertToDatabaseValue()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Converts a given value to its database representation according to the conversion
+rules of a specific DBAL mapping type.</dd>
+<dt><a href="doctrine/dbal/types/arraytype.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/types/arraytype.html">Doctrine\DBAL\Types\ArrayType</a></dt>
+<dd>Converts a value from its database representation to its PHP representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/timetype.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/types/timetype.html">Doctrine\DBAL\Types\TimeType</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/types/decimaltype.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/types/decimaltype.html">Doctrine\DBAL\Types\DecimalType</a></dt>
+<dd>Converts a value from its database representation to its PHP representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/booleantype.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/types/booleantype.html">Doctrine\DBAL\Types\BooleanType</a></dt>
+<dd>Converts a value from its database representation to its PHP representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/type.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Converts a value from its database representation to its PHP representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/datetype.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/types/datetype.html">Doctrine\DBAL\Types\DateType</a></dt>
+<dd>Converts a value from its database representation to its PHP representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/connection.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Converts a given value to its PHP representation according to the conversion
+rules of a specific DBAL mapping type.</dd>
+<dt><a href="doctrine/dbal/types/integertype.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/types/integertype.html">Doctrine\DBAL\Types\IntegerType</a></dt>
+<dd>Converts a value from its database representation to its PHP representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/objecttype.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/types/objecttype.html">Doctrine\DBAL\Types\ObjectType</a></dt>
+<dd>Converts a value from its database representation to its PHP representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/smallinttype.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/types/smallinttype.html">Doctrine\DBAL\Types\SmallIntType</a></dt>
+<dd>Converts a value from its database representation to its PHP representation
+of this type.</dd>
+<dt><a href="doctrine/dbal/types/datetimetype.html#convertToPHPValue()">convertToPHPValue()</a> - Method in class <a href="doctrine/dbal/types/datetimetype.html">Doctrine\DBAL\Types\DateTimeType</a></dt>
+<dd>Converts a value from its database representation to its PHP representation
+of this type.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#copy()">copy()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Creates a copy of the given entity. </dd>
+<dt><a href="doctrine/orm/tools/toolsexception.html#couldNotMapDoctrine1Type()">couldNotMapDoctrine1Type()</a> - Method in class <a href="doctrine/orm/tools/toolsexception.html">Doctrine\ORM\Tools\ToolsException</a></dt>
+<dt><a href="doctrine/orm/tools/console/metadatafilter.html#count()">count()</a> - Method in class <a href="doctrine/orm/tools/console/metadatafilter.html">Doctrine\ORM\Tools\Console\MetadataFilter</a></dt>
+<dt><a href="doctrine/orm/query/expr/orderby.html#count()">count()</a> - Method in class <a href="doctrine/orm/query/expr/orderby.html">Doctrine\ORM\Query\Expr\OrderBy</a></dt>
+<dt><a href="doctrine/orm/query/expr/base.html#count()">count()</a> - Method in class <a href="doctrine/orm/query/expr/base.html">Doctrine\ORM\Query\Expr\Base</a></dt>
+<dt><a href="doctrine/orm/persistentcollection.html#count()">count()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/query/expr.html#count()">count()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of COUNT() function, with the given argument.</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#count()">count()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Returns the number of elements in the collection.
+</dd>
+<dt><a href="doctrine/orm/query/expr.html#countDistinct()">countDistinct()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of COUNT(DISTINCT) function, with the given argument.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#create()">create()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Factory method to create EntityManager instances.</dd>
+<dt><a href="doctrine/orm/mapping/driver/annotationdriver.html#create()">create()</a> - Method in class <a href="doctrine/orm/mapping/driver/annotationdriver.html">Doctrine\ORM\Mapping\Driver\AnnotationDriver</a></dt>
+<dd>Factory method for the Annotation Driver</dd>
+<dt><a href="doctrine/orm/tools/console/command/schematool/createcommand.html">CreateCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/schematool/package-summary.html">Doctrine\ORM\Tools\Console\Command\SchemaTool</a></dt>
+<dd>Command to create the database schema for a set of classes based on their mappings.</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#createConstraint()">createConstraint()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Create a constraint on a table</dd>
+<dt><a href="doctrine/dbal/schema/postgresqlschemamanager.html#createDatabase()">createDatabase()</a> - Method in class <a href="doctrine/dbal/schema/postgresqlschemamanager.html">Doctrine\DBAL\Schema\PostgreSqlSchemaManager</a></dt>
+<dd>Creates a new database.</dd>
+<dt><a href="doctrine/dbal/schema/sqliteschemamanager.html#createDatabase()">createDatabase()</a> - Method in class <a href="doctrine/dbal/schema/sqliteschemamanager.html">Doctrine\DBAL\Schema\SqliteSchemaManager</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#createDatabase()">createDatabase()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>create a new database</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#createDatabase()">createDatabase()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Creates a new database.</dd>
+<dt><a href="doctrine/dbal/schema/oracleschemamanager.html#createDatabase()">createDatabase()</a> - Method in class <a href="doctrine/dbal/schema/oracleschemamanager.html">Doctrine\DBAL\Schema\OracleSchemaManager</a></dt>
+<dd>Creates a new database.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#createEntity()">createEntity()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Creates an entity. </dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#createForeignKey()">createForeignKey()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Create a new foreign key</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#createIndex()">createIndex()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Create a new index on a table</dd>
+<dt><a href="doctrine/orm/entitymanager.html#createNamedNativeQuery()">createNamedNativeQuery()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Creates a NativeQuery from a named native query.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#createNamedQuery()">createNamedQuery()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Creates a Query from a named query.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#createNativeQuery()">createNativeQuery()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Creates a native SQL query.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#createQuery()">createQuery()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Creates a new Query object.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#createQueryBuilder()">createQueryBuilder()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Create a QueryBuilder instance</dd>
+<dt><a href="doctrine/orm/entityrepository.html#createQueryBuilder()">createQueryBuilder()</a> - Method in class <a href="doctrine/orm/entityrepository.html">Doctrine\ORM\EntityRepository</a></dt>
+<dd>Create a new QueryBuilder instance that is prepopulated for this entity name</dd>
+<dt><a href="doctrine/orm/tools/schematool.html#createSchema()">createSchema()</a> - Method in class <a href="doctrine/orm/tools/schematool.html">Doctrine\ORM\Tools\SchemaTool</a></dt>
+<dd>Creates the database schema for the given array of ClassMetadata instances.</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#createSchema()">createSchema()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Create a schema instance for the current database.</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#createSchemaConfig()">createSchemaConfig()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Create the configuration for this schema.</dd>
+<dt><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html">CreateSchemaSqlCollector()</a> - Class in package <a href="doctrine/dbal/schema/visitor/package-summary.html">Doctrine\DBAL\Schema\Visitor</a></dt>
+<dt><a href="doctrine/dbal/schema/schema.html#createSequence()">createSequence()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd>Create a new sequence</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#createSequence()">createSequence()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#createSequence()">createSequence()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Create a new sequence</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#createsExplicitIndexForForeignKeys()">createsExplicitIndexForForeignKeys()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/schema.html#createTable()">createTable()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd>Create a new table</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#createTable()">createTable()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Create a new table.</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#createView()">createView()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Create a new view</dd>
+<dt><a href="doctrine/orm/internal/hydration/iterableresult.html#current()">current()</a> - Method in class <a href="doctrine/orm/internal/hydration/iterableresult.html">Doctrine\ORM\Internal\Hydration\IterableResult</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/collections/collection.html#current()">current()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Gets the element of the collection at the current iterator position.</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#current()">current()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Gets the element of the collection at the current internal iterator position.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#current()">current()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>Gets the element of the collection at the current iterator position.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/currentdatefunction.html">CurrentDateFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"CURRENT_DATE"</dd>
+<dt><a href="doctrine/orm/query/ast/functions/currenttimefunction.html">CurrentTimeFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"CURRENT_TIME"</dd>
+<dt><a href="doctrine/orm/query/ast/functions/currenttimestampfunction.html">CurrentTimestampFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"CURRENT_TIMESTAMP"</dd>
+<dt><a href="doctrine/orm/query/parser.html#CustomFunctionsReturningDatetime()">CustomFunctionsReturningDatetime()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dt><a href="doctrine/orm/query/parser.html#CustomFunctionsReturningNumerics()">CustomFunctionsReturningNumerics()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dt><a href="doctrine/orm/query/parser.html#CustomFunctionsReturningStrings()">CustomFunctionsReturningStrings()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+</dl>
+<h1 id="letterD">D</h1>
+<dl>
+<dt><a href="doctrine/orm/mapping/driver/databasedriver.html">DatabaseDriver()</a> - Class in package <a href="doctrine/orm/mapping/driver/package-summary.html">Doctrine\ORM\Mapping\Driver</a></dt>
+<dd>The DatabaseDriver reverse engineers the mapping metadata from a database.</dd>
+<dt><a href="doctrine/dbal/types/datetimetype.html">DateTimeType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps an SQL DATETIME/TIMESTAMP to a PHP DateTime object.</dd>
+<dt><a href="doctrine/dbal/types/datetype.html">DateType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps an SQL DATE to a PHP Date object.</dd>
+<dt><a href="doctrine/dbal/dbalexception.html">DBALException()</a> - Exception in package <a href="doctrine/dbal/package-summary.html">Doctrine\DBAL</a></dt>
+<dt><a href="doctrine/common/util/debug.html">Debug()</a> - Class in package <a href="doctrine/common/util/package-summary.html">Doctrine\Common\Util</a></dt>
+<dd>Static class containing most used debug methods.</dd>
+<dt><a href="doctrine/dbal/logging/debugstack.html">DebugStack()</a> - Class in package <a href="doctrine/dbal/logging/package-summary.html">Doctrine\DBAL\Logging</a></dt>
+<dd>Includes executed SQLs in a Debug Stack</dd>
+<dt><a href="doctrine/dbal/types/decimaltype.html">DecimalType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps an SQL DECIMAL to a PHP double.</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#delete()">delete()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Deletes an entity.</dd>
+<dt><a href="doctrine/orm/persisters/abstractcollectionpersister.html#delete()">delete()</a> - Method in class <a href="doctrine/orm/persisters/abstractcollectionpersister.html">Doctrine\ORM\Persisters\AbstractCollectionPersister</a></dt>
+<dd>Deletes the persistent state represented by the given collection.</dd>
+<dt><a href="doctrine/dbal/connection.html#delete()">delete()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Executes an SQL DELETE statement on a table.</dd>
+<dt><a href="doctrine/orm/persisters/joinedsubclasspersister.html#delete()">delete()</a> - Method in class <a href="doctrine/orm/persisters/joinedsubclasspersister.html">Doctrine\ORM\Persisters\JoinedSubclassPersister</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/querybuilder.html#delete()">delete()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Construct a DQL DELETE query
+
+[php]
+$qb = $em->createQueryBuilder()
+->delete('User', 'u')
+->where('u.id = :user_id');
+->setParameter(':user_id', 1);</dd>
+<dt><a href="doctrine/common/cache/abstractcache.html#delete()">delete()</a> - Method in class <a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/cache/cache.html#delete()">delete()</a> - Method in class <a href="doctrine/common/cache/cache.html">Doctrine\Common\Cache\Cache</a></dt>
+<dd>Deletes a cache entry.</dd>
+<dt><a href="doctrine/common/cache/abstractcache.html#deleteAll()">deleteAll()</a> - Method in class <a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a></dt>
+<dd>Delete all cache entries.</dd>
+<dt><a href="doctrine/common/cache/abstractcache.html#deleteByPrefix()">deleteByPrefix()</a> - Method in class <a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a></dt>
+<dd>Delete cache entries where the id has the passed prefix</dd>
+<dt><a href="doctrine/common/cache/abstractcache.html#deleteByRegex()">deleteByRegex()</a> - Method in class <a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a></dt>
+<dd>Delete cache entries where the id matches a PHP regular expressions</dd>
+<dt><a href="doctrine/common/cache/abstractcache.html#deleteBySuffix()">deleteBySuffix()</a> - Method in class <a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a></dt>
+<dd>Delete cache entries where the id has the passed suffix</dd>
+<dt><a href="doctrine/orm/query/parser.html#DeleteClause()">DeleteClause()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>DeleteClause ::= "DELETE" ["FROM"] AbstractSchemaName ["AS"] AliasIdentificationVariable</dd>
+<dt><a href="doctrine/orm/query/ast/deleteclause.html">DeleteClause()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>DeleteClause ::= "DELETE" ["FROM"] AbstractSchemaName [["AS"] AliasIdentificationVariable]</dd>
+<dt><a href="doctrine/orm/persisters/abstractcollectionpersister.html#deleteRows()">deleteRows()</a> - Method in class <a href="doctrine/orm/persisters/abstractcollectionpersister.html">Doctrine\ORM\Persisters\AbstractCollectionPersister</a></dt>
+<dt><a href="doctrine/orm/query/parser.html#DeleteStatement()">DeleteStatement()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>DeleteStatement ::= DeleteClause [WhereClause]</dd>
+<dt><a href="doctrine/orm/query/ast/deletestatement.html">DeleteStatement()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>DeleteStatement = DeleteClause [WhereClause]</dd>
+<dt><a href="doctrine/orm/query/expr.html#desc()">desc()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a DESCending order expression.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#detach()">detach()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Detaches an entity from the EntityManager, causing a managed entity to
+become detached. </dd>
+<dt><a href="doctrine/orm/unitofwork.html#detach()">detach()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Detaches an entity from the persistence management. </dd>
+<dt><a href="doctrine/orm/ormexception.html#detachedEntityCannotBeRemoved()">detachedEntityCannotBeRemoved()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/query/expr.html#diff()">diff()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a difference mathematical expression with the given arguments.
+</dd>
+<dt><a href="doctrine/dbal/schema/comparator.html#diffColumn()">diffColumn()</a> - Method in class <a href="doctrine/dbal/schema/comparator.html">Doctrine\DBAL\Schema\Comparator</a></dt>
+<dd>Returns the difference between the fields $field1 and $field2.
+</dd>
+<dt><a href="doctrine/dbal/schema/comparator.html#diffForeignKey()">diffForeignKey()</a> - Method in class <a href="doctrine/dbal/schema/comparator.html">Doctrine\DBAL\Schema\Comparator</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/comparator.html#diffIndex()">diffIndex()</a> - Method in class <a href="doctrine/dbal/schema/comparator.html">Doctrine\DBAL\Schema\Comparator</a></dt>
+<dd>Finds the difference between the indexes $index1 and $index2.
+</dd>
+<dt><a href="doctrine/dbal/schema/comparator.html#diffSequence()">diffSequence()</a> - Method in class <a href="doctrine/dbal/schema/comparator.html">Doctrine\DBAL\Schema\Comparator</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/comparator.html#diffTable()">diffTable()</a> - Method in class <a href="doctrine/dbal/schema/comparator.html">Doctrine\DBAL\Schema\Comparator</a></dt>
+<dd>Returns the difference between the tables $table1 and $table2.
+</dd>
+<dt><a href="doctrine/orm/mapping/discriminatorcolumn.html">DiscriminatorColumn()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/discriminatormap.html">DiscriminatorMap()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/query/ast/joinvariabledeclaration.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/joinvariabledeclaration.html">Doctrine\ORM\Query\AST\JoinVariableDeclaration</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/literal.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/literal.html">Doctrine\ORM\Query\AST\Literal</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/node.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/node.html">Doctrine\ORM\Query\AST\Node</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/havingclause.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/havingclause.html">Doctrine\ORM\Query\AST\HavingClause</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/joinassociationpathexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/joinassociationpathexpression.html">Doctrine\ORM\Query\AST\JoinAssociationPathExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/join.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/join.html">Doctrine\ORM\Query\AST\Join</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/inexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/inexpression.html">Doctrine\ORM\Query\AST\InExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/indexby.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/indexby.html">Doctrine\ORM\Query\AST\IndexBy</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/inputparameter.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/inputparameter.html">Doctrine\ORM\Query\AST\InputParameter</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/identificationvariabledeclaration.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/identificationvariabledeclaration.html">Doctrine\ORM\Query\AST\IdentificationVariableDeclaration</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/existsexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/existsexpression.html">Doctrine\ORM\Query\AST\ExistsExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/aggregateexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/aggregateexpression.html">Doctrine\ORM\Query\AST\AggregateExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/comparisonexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/comparisonexpression.html">Doctrine\ORM\Query\AST\ComparisonExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/conditionalexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/conditionalexpression.html">Doctrine\ORM\Query\AST\ConditionalExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/arithmeticexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/arithmeticexpression.html">Doctrine\ORM\Query\AST\ArithmeticExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/arithmeticfactor.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/arithmeticfactor.html">Doctrine\ORM\Query\AST\ArithmeticFactor</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/betweenexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/betweenexpression.html">Doctrine\ORM\Query\AST\BetweenExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/arithmeticterm.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/arithmeticterm.html">Doctrine\ORM\Query\AST\ArithmeticTerm</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/conditionalfactor.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/conditionalfactor.html">Doctrine\ORM\Query\AST\ConditionalFactor</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/conditionalprimary.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/conditionalprimary.html">Doctrine\ORM\Query\AST\ConditionalPrimary</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/nullcomparisonexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/nullcomparisonexpression.html">Doctrine\ORM\Query\AST\NullComparisonExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/fromclause.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/fromclause.html">Doctrine\ORM\Query\AST\FromClause</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/emptycollectioncomparisonexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">Doctrine\ORM\Query\AST\EmptyCollectionComparisonExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/deletestatement.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/deletestatement.html">Doctrine\ORM\Query\AST\DeleteStatement</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/conditionalterm.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/conditionalterm.html">Doctrine\ORM\Query\AST\ConditionalTerm</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/deleteclause.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/deleteclause.html">Doctrine\ORM\Query\AST\DeleteClause</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/groupbyclause.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/groupbyclause.html">Doctrine\ORM\Query\AST\GroupByClause</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/likeexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/likeexpression.html">Doctrine\ORM\Query\AST\LikeExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/subselectfromclause.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/subselectfromclause.html">Doctrine\ORM\Query\AST\SubselectFromClause</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/subselect.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/subselect.html">Doctrine\ORM\Query\AST\Subselect</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/updateclause.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/updateclause.html">Doctrine\ORM\Query\AST\UpdateClause</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/quantifiedexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/quantifiedexpression.html">Doctrine\ORM\Query\AST\QuantifiedExpression</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/selectclause.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/selectclause.html">Doctrine\ORM\Query\AST\SelectClause</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/simpleselectexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/simpleselectexpression.html">Doctrine\ORM\Query\AST\SimpleSelectExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/simpleselectclause.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/simpleselectclause.html">Doctrine\ORM\Query\AST\SimpleSelectClause</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/selectexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/selectexpression.html">Doctrine\ORM\Query\AST\SelectExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/rangevariabledeclaration.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/rangevariabledeclaration.html">Doctrine\ORM\Query\AST\RangeVariableDeclaration</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/selectstatement.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/selectstatement.html">Doctrine\ORM\Query\AST\SelectStatement</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/simplearithmeticexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/simplearithmeticexpression.html">Doctrine\ORM\Query\AST\SimpleArithmeticExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/updateitem.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/updateitem.html">Doctrine\ORM\Query\AST\UpdateItem</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/pathexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/pathexpression.html">Doctrine\ORM\Query\AST\PathExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/collectionmemberexpression.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/collectionmemberexpression.html">Doctrine\ORM\Query\AST\CollectionMemberExpression</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/functions/functionnode.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/functions/functionnode.html">Doctrine\ORM\Query\AST\Functions\FunctionNode</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/orderbyclause.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/orderbyclause.html">Doctrine\ORM\Query\AST\OrderByClause</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/updatestatement.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/updatestatement.html">Doctrine\ORM\Query\AST\UpdateStatement</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/whereclause.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/whereclause.html">Doctrine\ORM\Query\AST\WhereClause</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/orm/query/ast/orderbyitem.html#dispatch()">dispatch()</a> - Method in class <a href="doctrine/orm/query/ast/orderbyitem.html">Doctrine\ORM\Query\AST\OrderByItem</a></dt>
+<dd>Double-dispatch method, supposed to dispatch back to the walker.
+</dd>
+<dt><a href="doctrine/common/eventmanager.html#dispatchEvent()">dispatchEvent()</a> - Method in class <a href="doctrine/common/eventmanager.html">Doctrine\Common\EventManager</a></dt>
+<dd>Dispatches an event to all registered listeners.</dd>
+<dt><a href="doctrine/dbal/driver/pdomssql/driver.html">Driver()</a> - Class in package <a href="doctrine/dbal/driver/pdomssql/package-summary.html">Doctrine\DBAL\Driver\PDOMsSql</a></dt>
+<dd>The PDO-based MsSql driver.</dd>
+<dt><a href="doctrine/dbal/driver/pdooracle/driver.html">Driver()</a> - Class in package <a href="doctrine/dbal/driver/pdooracle/package-summary.html">Doctrine\DBAL\Driver\PDOOracle</a></dt>
+<dt><a href="doctrine/dbal/driver/pdomysql/driver.html">Driver()</a> - Class in package <a href="doctrine/dbal/driver/pdomysql/package-summary.html">Doctrine\DBAL\Driver\PDOMySql</a></dt>
+<dd>PDO MySql driver.</dd>
+<dt><a href="doctrine/dbal/driver/pdosqlite/driver.html">Driver()</a> - Class in package <a href="doctrine/dbal/driver/pdosqlite/package-summary.html">Doctrine\DBAL\Driver\PDOSqlite</a></dt>
+<dd>The PDO Sqlite driver.</dd>
+<dt><a href="doctrine/orm/mapping/driver/driver.html">Driver()</a> - Interface in package <a href="doctrine/orm/mapping/driver/package-summary.html">Doctrine\ORM\Mapping\Driver</a></dt>
+<dd>Contract for metadata drivers.</dd>
+<dt><a href="doctrine/dbal/driver/oci8/driver.html">Driver()</a> - Class in package <a href="doctrine/dbal/driver/oci8/package-summary.html">Doctrine\DBAL\Driver\OCI8</a></dt>
+<dd>A Doctrine DBAL driver for the Oracle OCI8 PHP extensions.</dd>
+<dt><a href="doctrine/dbal/driver/pdopgsql/driver.html">Driver()</a> - Class in package <a href="doctrine/dbal/driver/pdopgsql/package-summary.html">Doctrine\DBAL\Driver\PDOPgSql</a></dt>
+<dd>Driver that connects through pdo_pgsql.</dd>
+<dt><a href="doctrine/dbal/driver.html">Driver()</a> - Interface in package <a href="doctrine/dbal/package-summary.html">Doctrine\DBAL</a></dt>
+<dd>Driver interface.
+</dd>
+<dt><a href="doctrine/orm/mapping/driver/driverchain.html">DriverChain()</a> - Class in package <a href="doctrine/orm/mapping/driver/package-summary.html">Doctrine\ORM\Mapping\Driver</a></dt>
+<dd>The DriverChain allows you to add multiple other mapping drivers for
+certain namespaces</dd>
+<dt><a href="doctrine/dbal/drivermanager.html">DriverManager()</a> - Class in package <a href="doctrine/dbal/package-summary.html">Doctrine\DBAL</a></dt>
+<dd>Factory for creating Doctrine\DBAL\Connection instances.</dd>
+<dt><a href="doctrine/dbal/dbalexception.html#driverRequired()">driverRequired()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateConstraint()">dropAndCreateConstraint()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop and create a constraint</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateDatabase()">dropAndCreateDatabase()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop and creates a new database.</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateForeignKey()">dropAndCreateForeignKey()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop and create a new foreign key</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateIndex()">dropAndCreateIndex()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop and create a new index on a table</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateSequence()">dropAndCreateSequence()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop and create a new sequence</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateTable()">dropAndCreateTable()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop and create a new table.</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropAndCreateView()">dropAndCreateView()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop and create a new view</dd>
+<dt><a href="doctrine/dbal/schema/oracleschemamanager.html#dropAutoincrement()">dropAutoincrement()</a> - Method in class <a href="doctrine/dbal/schema/oracleschemamanager.html">Doctrine\DBAL\Schema\OracleSchemaManager</a></dt>
+<dt><a href="doctrine/dbal/schema/table.html#dropColumn()">dropColumn()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Drop Column from Table</dd>
+<dt><a href="doctrine/orm/tools/console/command/schematool/dropcommand.html">DropCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/schematool/package-summary.html">Doctrine\ORM\Tools\Console\Command\SchemaTool</a></dt>
+<dd>Command to drop the database schema for a set of classes based on their mappings.</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropConstraint()">dropConstraint()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop the constraint from the given table</dd>
+<dt><a href="doctrine/dbal/schema/sqliteschemamanager.html#dropDatabase()">dropDatabase()</a> - Method in class <a href="doctrine/dbal/schema/sqliteschemamanager.html">Doctrine\DBAL\Schema\SqliteSchemaManager</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropDatabase()">dropDatabase()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drops a database.
+</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#dropDatabase()">dropDatabase()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>drop an existing database</dd>
+<dt><a href="doctrine/dbal/schema/postgresqlschemamanager.html#dropDatabase()">dropDatabase()</a> - Method in class <a href="doctrine/dbal/schema/postgresqlschemamanager.html">Doctrine\DBAL\Schema\PostgreSqlSchemaManager</a></dt>
+<dd>Drops a database.
+</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropForeignKey()">dropForeignKey()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drops a foreign key from a table.</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropIndex()">dropIndex()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop the index from the given table</dd>
+<dt><a href="doctrine/orm/tools/schematool.html#dropSchema()">dropSchema()</a> - Method in class <a href="doctrine/orm/tools/schematool.html">Doctrine\ORM\Tools\SchemaTool</a></dt>
+<dd>Drops the database schema for the given classes.
+</dd>
+<dt><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html">DropSchemaSqlCollector()</a> - Class in package <a href="doctrine/dbal/schema/visitor/package-summary.html">Doctrine\DBAL\Schema\Visitor</a></dt>
+<dd>Gather SQL statements that allow to completly drop the current schema.</dd>
+<dt><a href="doctrine/dbal/schema/schema.html#dropSequence()">dropSequence()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropSequence()">dropSequence()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drops a sequence with a given name.</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#dropSequenceSql()">dropSequenceSql()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>This function drops an existing sequence</dd>
+<dt><a href="doctrine/dbal/schema/oracleschemamanager.html#dropTable()">dropTable()</a> - Method in class <a href="doctrine/dbal/schema/oracleschemamanager.html">Doctrine\DBAL\Schema\OracleSchemaManager</a></dt>
+<dd>Drop the given table</dd>
+<dt><a href="doctrine/dbal/schema/schema.html#dropTable()">dropTable()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd>Drop a table from the schema.</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropTable()">dropTable()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop the given table</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#dropView()">dropView()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Drop a view</dd>
+<dt><a href="doctrine/common/util/debug.html#dump()">dump()</a> - Method in class <a href="doctrine/common/util/debug.html">Doctrine\Common\Util\Debug</a></dt>
+<dd>Prints a dump of the public, protected and private properties of $var.</dd>
+<dt><a href="doctrine/orm/query/ast/node.html#dump()">dump()</a> - Method in class <a href="doctrine/orm/query/ast/node.html">Doctrine\ORM\Query\AST\Node</a></dt>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#duplicateAssociationMapping()">duplicateAssociationMapping()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#duplicateColumnName()">duplicateColumnName()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#duplicateFieldMapping()">duplicateFieldMapping()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dd></dd>
+</dl>
+<h1 id="letterE">E</h1>
+<dl>
+<dt><a href="doctrine/dbal/logging/echosqllogger.html">EchoSQLLogger()</a> - Class in package <a href="doctrine/dbal/logging/package-summary.html">Doctrine\DBAL\Logging</a></dt>
+<dd>A SQL logger that logs to the standard output using echo/var_dump.</dd>
+<dt><a href="doctrine/orm/mapping/elementcollection.html">ElementCollection()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/persisters/elementcollectionpersister.html">ElementCollectionPersister()</a> - Class in package <a href="doctrine/orm/persisters/package-summary.html">Doctrine\ORM\Persisters</a></dt>
+<dd>Persister for collections of basic elements / value types.</dd>
+<dt><a href="doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">EmptyCollectionComparisonExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>EmptyCollectionComparisonExpression ::= CollectionValuedPathExpression "IS" ["NOT"] "EMPTY"</dd>
+<dt><a href="doctrine/orm/query/parser.html#EmptyCollectionComparisonExpression()">EmptyCollectionComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>EmptyCollectionComparisonExpression ::= CollectionValuedPathExpression "IS" ["NOT"] "EMPTY"</dd>
+<dt><a href="doctrine/orm/query/printer.html#endProduction()">endProduction()</a> - Method in class <a href="doctrine/orm/query/printer.html">Doctrine\ORM\Query\Printer</a></dt>
+<dd>Decreases indentation level by one and prints a closing parenthesis.
+</dd>
+<dt><a href="doctrine/orm/configuration.html#ensureProductionSettings()">ensureProductionSettings()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Ensures that this Configuration instance contains settings that are
+suitable for a production environment.</dd>
+<dt><a href="doctrine/orm/tools/console/command/ensureproductionsettingscommand.html">EnsureProductionSettingsCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/package-summary.html">Doctrine\ORM\Tools\Console\Command</a></dt>
+<dd>Command to ensure that Doctrine is properly configured for a production environment.</dd>
+<dt><a href="doctrine/orm/mapping/entity.html">Entity()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/query/parser.html#EntityExpression()">EntityExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>EntityExpression ::= SingleValuedAssociationPathExpression | SimpleEntityExpression</dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html">EntityGenerator()</a> - Class in package <a href="doctrine/orm/tools/package-summary.html">Doctrine\ORM\Tools</a></dt>
+<dd>Generic class used to generate PHP5 entity classes from ClassMetadataInfo instances
+
+[php]
+$classes = $em->getClassMetadataFactory()->getAllMetadata();
+
+$generator = new \Doctrine\ORM\Tools\EntityGenerator();
+$generator->setGenerateAnnotations(true);
+$generator->setGenerateStubMethods(true);
+$generator->setRegenerateEntityIfExists(false);
+$generator->setUpdateEntityIfExists(true);
+$generator->generate($classes, '/path/to/generate/entities');</dd>
+<dt><a href="doctrine/orm/entitymanager.html">EntityManager()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>The EntityManager is the central access point to ORM functionality.</dd>
+<dt><a href="doctrine/orm/ormexception.html#entityManagerClosed()">entityManagerClosed()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/tools/console/helper/entitymanagerhelper.html">EntityManagerHelper()</a> - Class in package <a href="doctrine/orm/tools/console/helper/package-summary.html">Doctrine\ORM\Tools\Console\Helper</a></dt>
+<dd>Doctrine CLI Connection Helper.</dd>
+<dt><a href="doctrine/orm/ormexception.html#entityMissingAssignedId()">entityMissingAssignedId()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/entitynotfoundexception.html">EntityNotFoundException()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>Exception thrown when a Proxy fails to retrieve an Entity result.</dd>
+<dt><a href="doctrine/orm/entityrepository.html">EntityRepository()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>An EntityRepository serves as a repository for entities with generic as well as
+business specific methods for retrieving entities.
+</dd>
+<dt><a href="doctrine/orm/query/expr.html#eq()">eq()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an equality comparison expression with the given arguments.
+</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html#errorCode()">errorCode()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></dt>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#errorCode()">errorCode()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/driver/statement.html#errorCode()">errorCode()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>errorCode
+Fetch the SQLSTATE associated with the last operation on the statement handle</dd>
+<dt><a href="doctrine/dbal/driver/connection.html#errorCode()">errorCode()</a> - Method in class <a href="doctrine/dbal/driver/connection.html">Doctrine\DBAL\Driver\Connection</a></dt>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#errorInfo()">errorInfo()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/driver/connection.html#errorInfo()">errorInfo()</a> - Method in class <a href="doctrine/dbal/driver/connection.html">Doctrine\DBAL\Driver\Connection</a></dt>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html#errorInfo()">errorInfo()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></dt>
+<dt><a href="doctrine/dbal/driver/statement.html#errorInfo()">errorInfo()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>errorInfo
+Fetch extended error information associated with the last operation on the statement handle</dd>
+<dt><a href="doctrine/common/eventargs.html">EventArgs()</a> - Class in package <a href="doctrine/common/package-summary.html">Doctrine\Common</a></dt>
+<dd>EventArgs is the base class for classes containing event data.
+</dd>
+<dt><a href="doctrine/common/eventmanager.html">EventManager()</a> - Class in package <a href="doctrine/common/package-summary.html">Doctrine\Common</a></dt>
+<dd>The EventManager is the central point of Doctrine's event listener system.
+</dd>
+<dt><a href="doctrine/orm/events.html">Events()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>Container for all ORM events.
+</dd>
+<dt><a href="doctrine/dbal/events.html">Events()</a> - Class in package <a href="doctrine/dbal/package-summary.html">Doctrine\DBAL</a></dt>
+<dd>Container for all DBAL events.
+</dd>
+<dt><a href="doctrine/common/eventsubscriber.html">EventSubscriber()</a> - Interface in package <a href="doctrine/common/package-summary.html">Doctrine\Common</a></dt>
+<dd>An EventSubscriber knows himself what events he is interested in.
+</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html#exec()">exec()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></dt>
+<dt><a href="doctrine/dbal/driver/connection.html#exec()">exec()</a> - Method in class <a href="doctrine/dbal/driver/connection.html">Doctrine\DBAL\Driver\Connection</a></dt>
+<dt><a href="doctrine/orm/query/exec/multitableupdateexecutor.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/query/exec/multitableupdateexecutor.html">Doctrine\ORM\Query\Exec\MultiTableUpdateExecutor</a></dt>
+<dd>Executes all SQL statements.</dd>
+<dt><a href="doctrine/orm/tools/console/command/clearcache/querycommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/clearcache/querycommand.html">Doctrine\ORM\Tools\Console\Command\ClearCache\QueryCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/clearcache/metadatacommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/clearcache/metadatacommand.html">Doctrine\ORM\Tools\Console\Command\ClearCache\MetadataCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#execute()">execute()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/tools/console/command/clearcache/resultcommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/clearcache/resultcommand.html">Doctrine\ORM\Tools\Console\Command\ClearCache\ResultCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/exec/singleselectexecutor.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/query/exec/singleselectexecutor.html">Doctrine\ORM\Query\Exec\SingleSelectExecutor</a></dt>
+<dd>Executes all sql statements.</dd>
+<dt><a href="doctrine/orm/query/exec/abstractsqlexecutor.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/query/exec/abstractsqlexecutor.html">Doctrine\ORM\Query\Exec\AbstractSqlExecutor</a></dt>
+<dd>Executes all sql statements.</dd>
+<dt><a href="doctrine/orm/query/exec/multitabledeleteexecutor.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/query/exec/multitabledeleteexecutor.html">Doctrine\ORM\Query\Exec\MultiTableDeleteExecutor</a></dt>
+<dd>Executes all SQL statements.</dd>
+<dt><a href="doctrine/orm/tools/console/command/convertmappingcommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/convertmappingcommand.html">Doctrine\ORM\Tools\Console\Command\ConvertMappingCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/exec/singletabledeleteupdateexecutor.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/query/exec/singletabledeleteupdateexecutor.html">Doctrine\ORM\Query\Exec\SingleTableDeleteUpdateExecutor</a></dt>
+<dd>Executes all sql statements.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Executes the query.</dd>
+<dt><a href="doctrine/orm/tools/console/command/generateproxiescommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/generateproxiescommand.html">Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/tools/console/command/runsqlcommand.html#execute()">execute()</a> - Method in class <a href="doctrine/dbal/tools/console/command/runsqlcommand.html">Doctrine\DBAL\Tools\Console\Command\RunSqlCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/tools/console/command/importcommand.html#execute()">execute()</a> - Method in class <a href="doctrine/dbal/tools/console/command/importcommand.html">Doctrine\DBAL\Tools\Console\Command\ImportCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/generaterepositoriescommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/generaterepositoriescommand.html">Doctrine\ORM\Tools\Console\Command\GenerateRepositoriesCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/generateentitiescommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/generateentitiescommand.html">Doctrine\ORM\Tools\Console\Command\GenerateEntitiesCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/driver/statement.html#execute()">execute()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>Executes a prepared statement
+
+If the prepared statement included parameter markers, you must either:
+call PDOStatement->bindParam() to bind PHP variables to the parameter markers:
+bound variables pass their value as input and receive the output value,
+if any, of their associated parameter markers or pass an array of input-only
+parameter values</dd>
+<dt><a href="doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/convertdoctrine1schemacommand.html">Doctrine\ORM\Tools\Console\Command\ConvertDoctrine1SchemaCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/rundqlcommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/rundqlcommand.html">Doctrine\ORM\Tools\Console\Command\RunDqlCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/ensureproductionsettingscommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/ensureproductionsettingscommand.html">Doctrine\ORM\Tools\Console\Command\EnsureProductionSettingsCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/schematool/abstractcommand.html#execute()">execute()</a> - Method in class <a href="doctrine/orm/tools/console/command/schematool/abstractcommand.html">Doctrine\ORM\Tools\Console\Command\SchemaTool\AbstractCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#executeInserts()">executeInserts()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Executes all queued entity insertions and returns any generated post-insert
+identifiers that were created as a result of the insertions.
+</dd>
+<dt><a href="doctrine/orm/persisters/joinedsubclasspersister.html#executeInserts()">executeInserts()</a> - Method in class <a href="doctrine/orm/persisters/joinedsubclasspersister.html">Doctrine\ORM\Persisters\JoinedSubclassPersister</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/connection.html#executeQuery()">executeQuery()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Executes an, optionally parameterized, SQL query.
+</dd>
+<dt><a href="doctrine/orm/tools/console/command/schematool/updatecommand.html#executeSchemaCommand()">executeSchemaCommand()</a> - Method in class <a href="doctrine/orm/tools/console/command/schematool/updatecommand.html">Doctrine\ORM\Tools\Console\Command\SchemaTool\UpdateCommand</a></dt>
+<dt><a href="doctrine/orm/tools/console/command/schematool/dropcommand.html#executeSchemaCommand()">executeSchemaCommand()</a> - Method in class <a href="doctrine/orm/tools/console/command/schematool/dropcommand.html">Doctrine\ORM\Tools\Console\Command\SchemaTool\DropCommand</a></dt>
+<dt><a href="doctrine/orm/tools/console/command/schematool/createcommand.html#executeSchemaCommand()">executeSchemaCommand()</a> - Method in class <a href="doctrine/orm/tools/console/command/schematool/createcommand.html">Doctrine\ORM\Tools\Console\Command\SchemaTool\CreateCommand</a></dt>
+<dt><a href="doctrine/orm/tools/console/command/schematool/abstractcommand.html#executeSchemaCommand()">executeSchemaCommand()</a> - Method in class <a href="doctrine/orm/tools/console/command/schematool/abstractcommand.html">Doctrine\ORM\Tools\Console\Command\SchemaTool\AbstractCommand</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/connection.html#executeUpdate()">executeUpdate()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Executes an SQL INSERT/UPDATE/DELETE query with the given parameters
+and returns the number of affected rows.
+</dd>
+<dt><a href="doctrine/orm/query/expr.html#exists()">exists()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of EXISTS() function, with the given DQL Subquery.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#exists()">exists()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/collections/collection.html#exists()">exists()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Tests for the existence of an element that satisfies the given predicate.</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#exists()">exists()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Tests for the existance of an element that satisfies the given predicate.</dd>
+<dt><a href="doctrine/orm/query/ast/existsexpression.html">ExistsExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>ExistsExpression ::= ["NOT"] "EXISTS" "(" Subselect ")"</dd>
+<dt><a href="doctrine/orm/query/parser.html#ExistsExpression()">ExistsExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ExistsExpression ::= ["NOT"] "EXISTS" "(" Subselect ")"</dd>
+<dt><a href="doctrine/orm/query.html#expireQueryCache()">expireQueryCache()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Defines if the query cache is active or not.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#expireResultCache()">expireResultCache()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Defines if the result cache is active or not.</dd>
+<dt><a href="doctrine/orm/tools/export/driver/abstractexporter.html#export()">export()</a> - Method in class <a href="doctrine/orm/tools/export/driver/abstractexporter.html">Doctrine\ORM\Tools\Export\Driver\AbstractExporter</a></dt>
+<dd>Export each ClassMetadata instance to a single Doctrine Mapping file
+named after the entity</dd>
+<dt><a href="doctrine/common/util/debug.html#export()">export()</a> - Method in class <a href="doctrine/common/util/debug.html">Doctrine\Common\Util\Debug</a></dt>
+<dt><a href="doctrine/orm/tools/export/driver/yamlexporter.html#exportClassMetadata()">exportClassMetadata()</a> - Method in class <a href="doctrine/orm/tools/export/driver/yamlexporter.html">Doctrine\ORM\Tools\Export\Driver\YamlExporter</a></dt>
+<dd>Converts a single ClassMetadata instance to the exported format
+and returns it
+
+TODO: Should this code be pulled out in to a toArray() method in ClassMetadata</dd>
+<dt><a href="doctrine/orm/tools/export/driver/phpexporter.html#exportClassMetadata()">exportClassMetadata()</a> - Method in class <a href="doctrine/orm/tools/export/driver/phpexporter.html">Doctrine\ORM\Tools\Export\Driver\PhpExporter</a></dt>
+<dd>Converts a single ClassMetadata instance to the exported format
+and returns it</dd>
+<dt><a href="doctrine/orm/tools/export/driver/abstractexporter.html#exportClassMetadata()">exportClassMetadata()</a> - Method in class <a href="doctrine/orm/tools/export/driver/abstractexporter.html">Doctrine\ORM\Tools\Export\Driver\AbstractExporter</a></dt>
+<dd>Converts a single ClassMetadata instance to the exported format
+and returns it</dd>
+<dt><a href="doctrine/orm/tools/export/driver/annotationexporter.html#exportClassMetadata()">exportClassMetadata()</a> - Method in class <a href="doctrine/orm/tools/export/driver/annotationexporter.html">Doctrine\ORM\Tools\Export\Driver\AnnotationExporter</a></dt>
+<dd>Converts a single ClassMetadata instance to the exported format
+and returns it</dd>
+<dt><a href="doctrine/orm/tools/export/driver/xmlexporter.html#exportClassMetadata()">exportClassMetadata()</a> - Method in class <a href="doctrine/orm/tools/export/driver/xmlexporter.html">Doctrine\ORM\Tools\Export\Driver\XmlExporter</a></dt>
+<dd>Converts a single ClassMetadata instance to the exported format
+and returns it</dd>
+<dt><a href="doctrine/orm/tools/export/exportexception.html">ExportException()</a> - Class in package <a href="doctrine/orm/tools/export/package-summary.html">Doctrine\ORM\Tools\Export</a></dt>
+<dd>Base exception class for all ORM exceptions.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#expr()">expr()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Gets an ExpressionBuilder used for object-oriented construction of query expressions.
+</dd>
+<dt><a href="doctrine/orm/query/expr.html">Expr()</a> - Class in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>This class is used to generate DQL expressions via a set of PHP static functions</dd>
+</dl>
+<h1 id="letterF">F</h1>
+<dl>
+<dt><a href="doctrine/common/cache/cache.html#fetch()">fetch()</a> - Method in class <a href="doctrine/common/cache/cache.html">Doctrine\Common\Cache\Cache</a></dt>
+<dd>Fetches an entry from the cache.</dd>
+<dt><a href="doctrine/common/cache/abstractcache.html#fetch()">fetch()</a> - Method in class <a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#fetch()">fetch()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/driver/statement.html#fetch()">fetch()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>fetch</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#fetchAll()">fetchAll()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/connection.html#fetchAll()">fetchAll()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Prepares and executes an SQL query and returns the result as an associative array.</dd>
+<dt><a href="doctrine/dbal/driver/statement.html#fetchAll()">fetchAll()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>Returns an array containing all of the result set rows</dd>
+<dt><a href="doctrine/dbal/connection.html#fetchArray()">fetchArray()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Prepares and executes an SQL query and returns the first row of the result
+as a numerically indexed array.</dd>
+<dt><a href="doctrine/dbal/connection.html#fetchColumn()">fetchColumn()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Prepares and executes an SQL query and returns the value of a single column
+of the first row of the result.</dd>
+<dt><a href="doctrine/dbal/driver/statement.html#fetchColumn()">fetchColumn()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>fetchColumn
+Returns a single column from the next row of a
+result set or FALSE if there are no more rows.</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#fetchColumn()">fetchColumn()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/connection.html#fetchRow()">fetchRow()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Prepares and executes an SQL query and returns the first row of the result
+as an associative array.</dd>
+<dt><a href="doctrine/common/annotations/parser.html#FieldAssignment()">FieldAssignment()</a> - Method in class <a href="doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></dt>
+<dd>FieldAssignment ::= FieldName "=" PlainValue
+FieldName ::= identifier</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#fileMappingDriversRequireConfiguredDirectoryPath()">fileMappingDriversRequireConfiguredDirectoryPath()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/tools/console/metadatafilter.html#filter()">filter()</a> - Method in class <a href="doctrine/orm/tools/console/metadatafilter.html">Doctrine\ORM\Tools\Console\MetadataFilter</a></dt>
+<dd>Filter Metadatas by one or more filter options.</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#filter()">filter()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Returns all the elements of this collection that satisfy the predicate p.
+</dd>
+<dt><a href="doctrine/common/collections/collection.html#filter()">filter()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Returns all the elements of this collection that satisfy the predicate p.
+</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#filter()">filter()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/entityrepository.html#find()">find()</a> - Method in class <a href="doctrine/orm/entityrepository.html">Doctrine\ORM\EntityRepository</a></dt>
+<dd>Finds an entity by its primary key / identifier.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#find()">find()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Finds an Entity by its identifier.
+</dd>
+<dt><a href="doctrine/orm/entityrepository.html#findAll()">findAll()</a> - Method in class <a href="doctrine/orm/entityrepository.html">Doctrine\ORM\EntityRepository</a></dt>
+<dd>Finds all entities in the repository.</dd>
+<dt><a href="doctrine/orm/entityrepository.html#findBy()">findBy()</a> - Method in class <a href="doctrine/orm/entityrepository.html">Doctrine\ORM\EntityRepository</a></dt>
+<dd>Finds entities by a set of criteria.</dd>
+<dt><a href="doctrine/orm/ormexception.html#findByRequiresParameter()">findByRequiresParameter()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/entityrepository.html#findOneBy()">findOneBy()</a> - Method in class <a href="doctrine/orm/entityrepository.html">Doctrine\ORM\EntityRepository</a></dt>
+<dd>Finds a single entity by a set of criteria.</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#first()">first()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Sets the internal iterator to the first element in the collection and
+returns this element.</dd>
+<dt><a href="doctrine/common/collections/collection.html#first()">first()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Sets the internal iterator to the first element in the collection and
+returns this element.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#first()">first()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/schema/visitor/fixschema.html">FixSchema()</a> - Class in package <a href="doctrine/dbal/schema/visitor/package-summary.html">Doctrine\DBAL\Schema\Visitor</a></dt>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#fixSchemaElementName()">fixSchemaElementName()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Makes any fixes to a name of a schema element (table, sequence, ...) that are required
+by restrictions of the platform, like a maximum length.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#fixSchemaElementName()">fixSchemaElementName()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Makes any fixes to a name of a schema element (table, sequence, ...) that are required
+by restrictions of the platform, like a maximum length.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#flush()">flush()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Flushes all changes to objects that have been queued up to now to the database.
+</dd>
+<dt><a href="doctrine/common/collections/collection.html#forAll()">forAll()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Applies the given predicate p to all elements of this collection,
+returning true, if the predicate yields true for all elements.</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#forAll()">forAll()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Applies the given predicate p to all elements of this collection,
+returning true, if the predicate yields true for all elements.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#forAll()">forAll()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html">ForeignKeyConstraint()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>The abstract asset allows to reset the name of all assets without publishing this to the public userland.
+</dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#foreignKeyDoesNotExist()">foreignKeyDoesNotExist()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/abstractquery.html#free()">free()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Frees the resources used by the query object.</dd>
+<dt><a href="doctrine/orm/query.html#free()">free()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/parser.html#free()">free()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Free this parser enabling it to be reused</dd>
+<dt><a href="doctrine/orm/query/expr/from.html">From()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Expression class for DQL from</dd>
+<dt><a href="doctrine/orm/querybuilder.html#from()">from()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Specify the FROM part when constructing a SELECT DQL query
+
+[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')</dd>
+<dt><a href="doctrine/orm/query/parser.html#FromClause()">FromClause()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>FromClause ::= "FROM" IdentificationVariableDeclaration {"," IdentificationVariableDeclaration}</dd>
+<dt><a href="doctrine/orm/query/ast/fromclause.html">FromClause()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>FromClause ::= "FROM" IdentificationVariableDeclaration {"," IdentificationVariableDeclaration}</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8exception.html#fromErrorInfo()">fromErrorInfo()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8exception.html">Doctrine\DBAL\Driver\OCI8\OCI8Exception</a></dt>
+<dt><a href="doctrine/orm/query/expr/func.html">Func()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Expression class for generating DQL functions</dd>
+<dt><a href="doctrine/orm/query/parser.html#FunctionDeclaration()">FunctionDeclaration()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>FunctionDeclaration ::= FunctionsReturningStrings | FunctionsReturningNumerics | FunctionsReturningDatetime</dd>
+<dt><a href="doctrine/orm/query/ast/functions/functionnode.html">FunctionNode()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>Abtract Function Node.</dd>
+<dt><a href="doctrine/orm/query/parser.html#FunctionsReturningDatetime()">FunctionsReturningDatetime()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>FunctionsReturningDateTime ::= "CURRENT_DATE" | "CURRENT_TIME" | "CURRENT_TIMESTAMP"</dd>
+<dt><a href="doctrine/orm/query/parser.html#FunctionsReturningNumerics()">FunctionsReturningNumerics()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>FunctionsReturningNumerics ::=
+"LENGTH" "(" StringPrimary ")" |
+"LOCATE" "(" StringPrimary "," StringPrimary ["," SimpleArithmeticExpression]")" |
+"ABS" "(" SimpleArithmeticExpression ")" |
+"SQRT" "(" SimpleArithmeticExpression ")" |
+"MOD" "(" SimpleArithmeticExpression "," SimpleArithmeticExpression ")" |
+"SIZE" "(" CollectionValuedPathExpression ")"</dd>
+<dt><a href="doctrine/orm/query/parser.html#FunctionsReturningStrings()">FunctionsReturningStrings()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>FunctionsReturningStrings ::=
+"CONCAT" "(" StringPrimary "," StringPrimary ")" |
+"SUBSTRING" "(" StringPrimary "," SimpleArithmeticExpression "," SimpleArithmeticExpression ")" |
+"TRIM" "(" [["LEADING" | "TRAILING" | "BOTH"] [char] "FROM"] StringPrimary ")" |
+"LOWER" "(" StringPrimary ")" |
+"UPPER" "(" StringPrimary ")"</dd>
+</dl>
+<h1 id="letterG">G</h1>
+<dl>
+<dt><a href="doctrine/orm/id/identitygenerator.html#generate()">generate()</a> - Method in class <a href="doctrine/orm/id/identitygenerator.html">Doctrine\ORM\Id\IdentityGenerator</a></dt>
+<dd>Generates an ID for the given entity.</dd>
+<dt><a href="doctrine/orm/id/tablegenerator.html#generate()">generate()</a> - Method in class <a href="doctrine/orm/id/tablegenerator.html">Doctrine\ORM\Id\TableGenerator</a></dt>
+<dd>Generates an identifier for an entity.</dd>
+<dt><a href="doctrine/orm/id/sequenceidentitygenerator.html#generate()">generate()</a> - Method in class <a href="doctrine/orm/id/sequenceidentitygenerator.html">Doctrine\ORM\Id\SequenceIdentityGenerator</a></dt>
+<dd>Generates an identifier for an entity.</dd>
+<dt><a href="doctrine/orm/id/assignedgenerator.html#generate()">generate()</a> - Method in class <a href="doctrine/orm/id/assignedgenerator.html">Doctrine\ORM\Id\AssignedGenerator</a></dt>
+<dd>Returns the identifier assigned to the given entity.</dd>
+<dt><a href="doctrine/orm/id/sequencegenerator.html#generate()">generate()</a> - Method in class <a href="doctrine/orm/id/sequencegenerator.html">Doctrine\ORM\Id\SequenceGenerator</a></dt>
+<dd>Generates an ID for the given entity.</dd>
+<dt><a href="doctrine/orm/id/abstractidgenerator.html#generate()">generate()</a> - Method in class <a href="doctrine/orm/id/abstractidgenerator.html">Doctrine\ORM\Id\AbstractIdGenerator</a></dt>
+<dd>Generates an identifier for an entity.</dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#generate()">generate()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Generate and write entity classes for the given array of ClassMetadataInfo instances</dd>
+<dt><a href="doctrine/orm/mapping/generatedvalue.html">GeneratedValue()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/tools/console/command/generateentitiescommand.html">GenerateEntitiesCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/package-summary.html">Doctrine\ORM\Tools\Console\Command</a></dt>
+<dd>Command to generate entity classes and method stubs from your mapping information.</dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#generateEntityClass()">generateEntityClass()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Generate a PHP5 Doctrine 2 entity class from the given ClassMetadataInfo instance</dd>
+<dt><a href="doctrine/orm/tools/console/command/generateproxiescommand.html">GenerateProxiesCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/package-summary.html">Doctrine\ORM\Tools\Console\Command</a></dt>
+<dd>Command to (re)generate the proxy classes used by doctrine.</dd>
+<dt><a href="doctrine/orm/proxy/proxyfactory.html#generateProxyClasses()">generateProxyClasses()</a> - Method in class <a href="doctrine/orm/proxy/proxyfactory.html">Doctrine\ORM\Proxy\ProxyFactory</a></dt>
+<dd>Generates proxy classes for all given classes.</dd>
+<dt><a href="doctrine/orm/tools/console/command/generaterepositoriescommand.html">GenerateRepositoriesCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/package-summary.html">Doctrine\ORM\Tools\Console\Command</a></dt>
+<dd>Command to generate repository classes for mapping information.</dd>
+<dt><a href="doctrine/orm/tools/event/generateschemaeventargs.html">GenerateSchemaEventArgs()</a> - Class in package <a href="doctrine/orm/tools/event/package-summary.html">Doctrine\ORM\Tools\Event</a></dt>
+<dd>Event Args used for the Events::postGenerateSchema event.</dd>
+<dt><a href="doctrine/orm/tools/event/generateschematableeventargs.html">GenerateSchemaTableEventArgs()</a> - Class in package <a href="doctrine/orm/tools/event/package-summary.html">Doctrine\ORM\Tools\Event</a></dt>
+<dd>Event Args used for the Events::postGenerateSchemaTable event.</dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#generateUpdatedEntityClass()">generateUpdatedEntityClass()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Generate the updated code for the given ClassMetadataInfo and entity at path</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#generatorNotAllowedWithCompositeId()">generatorNotAllowedWithCompositeId()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/common/collections/collection.html#get()">get()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Gets the element at the specified key/index.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#get()">get()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#get()">get()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Gets the element with the given key/index.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getAcosExpression()">getAcosExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Return the FOREIGN KEY query section dealing with non-standard options
+as MATCH, INITIALLY DEFERRED, ON UPDATE, ...</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Return the FOREIGN KEY query section dealing with non-standard options
+as MATCH, INITIALLY DEFERRED, ON UPDATE, ...</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getAdvancedForeignKeyOptionsSQL()">getAdvancedForeignKeyOptionsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Return the FOREIGN KEY query section dealing with non-standard options
+as MATCH, INITIALLY DEFERRED, ON UPDATE, ...</dd>
+<dt><a href="doctrine/orm/query/expr/from.html#getAlias()">getAlias()</a> - Method in class <a href="doctrine/orm/query/expr/from.html">Doctrine\ORM\Query\Expr\From</a></dt>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#getAliasMap()">getAliasMap()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/mapping/driver/abstractfiledriver.html#getAllClassNames()">getAllClassNames()</a> - Method in class <a href="doctrine/orm/mapping/driver/abstractfiledriver.html">Doctrine\ORM\Mapping\Driver\AbstractFileDriver</a></dt>
+<dd>Gets the names of all mapped classes known to this driver.</dd>
+<dt><a href="doctrine/orm/mapping/driver/annotationdriver.html#getAllClassNames()">getAllClassNames()</a> - Method in class <a href="doctrine/orm/mapping/driver/annotationdriver.html">Doctrine\ORM\Mapping\Driver\AnnotationDriver</a></dt>
+<dd>{@inheritDoc}</dd>
+<dt><a href="doctrine/orm/mapping/driver/driverchain.html#getAllClassNames()">getAllClassNames()</a> - Method in class <a href="doctrine/orm/mapping/driver/driverchain.html">Doctrine\ORM\Mapping\Driver\DriverChain</a></dt>
+<dd>Gets the names of all mapped classes known to this driver.</dd>
+<dt><a href="doctrine/orm/mapping/driver/databasedriver.html#getAllClassNames()">getAllClassNames()</a> - Method in class <a href="doctrine/orm/mapping/driver/databasedriver.html">Doctrine\ORM\Mapping\Driver\DatabaseDriver</a></dt>
+<dd>{@inheritDoc}</dd>
+<dt><a href="doctrine/orm/mapping/driver/driver.html#getAllClassNames()">getAllClassNames()</a> - Method in class <a href="doctrine/orm/mapping/driver/driver.html">Doctrine\ORM\Mapping\Driver\Driver</a></dt>
+<dd>Gets the names of all mapped classes known to this driver.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatafactory.html#getAllMetadata()">getAllMetadata()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatafactory.html">Doctrine\ORM\Mapping\ClassMetadataFactory</a></dt>
+<dd>Forces the factory to load the metadata of all classes known to the underlying
+mapping driver.</dd>
+<dt><a href="doctrine/dbal/schema/sequence.html#getAllocationSize()">getAllocationSize()</a> - Method in class <a href="doctrine/dbal/schema/sequence.html">Doctrine\DBAL\Schema\Sequence</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getAlterTableSQL()">getAlterTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the sql statements for altering an existing table.
+</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getAlterTableSQL()">getAlterTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>generates the sql for altering an existing table on postgresql</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getAlterTableSQL()">getAlterTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Gets the sql statements for altering an existing table.
+</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getAlterTableSQL()">getAlterTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Gets the SQL to alter an existing table.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getAlterTableSQL()">getAlterTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Gets the sql statements for altering an existing table.
+</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getArrayResult()">getArrayResult()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Gets the array of results for the query.
+</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getAssociationMapping()">getAssociationMapping()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the mapping of an association.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getAssociationMappings()">getAssociationMappings()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets all association mappings of the class.</dd>
+<dt><a href="doctrine/orm/query/parser.html#getAST()">getAST()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Parse and build AST for the given Query.</dd>
+<dt><a href="doctrine/orm/query.html#getAST()">getAST()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Returns the corresponding AST for this DQL query.</dd>
+<dt><a href="doctrine/orm/configuration.html#getAutoGenerateProxyClasses()">getAutoGenerateProxyClasses()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets a boolean flag that indicates whether proxy classes should always be regenerated
+during each script execution.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getAvgExpression()">getAvgExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the average value of a column</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getBetweenExpression()">getBetweenExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns SQL that checks if an expression evaluates to a value between
+two values.
+</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL snippet that declares an 8 byte integer column.</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>@override</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getBigIntTypeDeclarationSQL()">getBigIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/types/smallinttype.html#getBindingType()">getBindingType()</a> - Method in class <a href="doctrine/dbal/types/smallinttype.html">Doctrine\DBAL\Types\SmallIntType</a></dt>
+<dd>Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.
+</dd>
+<dt><a href="doctrine/dbal/types/type.html#getBindingType()">getBindingType()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.
+</dd>
+<dt><a href="doctrine/dbal/types/booleantype.html#getBindingType()">getBindingType()</a> - Method in class <a href="doctrine/dbal/types/booleantype.html">Doctrine\DBAL\Types\BooleanType</a></dt>
+<dd>Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.
+</dd>
+<dt><a href="doctrine/dbal/types/biginttype.html#getBindingType()">getBindingType()</a> - Method in class <a href="doctrine/dbal/types/biginttype.html">Doctrine\DBAL\Types\BigIntType</a></dt>
+<dd>Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.
+</dd>
+<dt><a href="doctrine/dbal/types/integertype.html#getBindingType()">getBindingType()</a> - Method in class <a href="doctrine/dbal/types/integertype.html">Doctrine\DBAL\Types\IntegerType</a></dt>
+<dd>Gets the (preferred) binding type for values of this type that
+can be used when binding parameters to prepared statements.
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL snippet that declares a boolean column.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getBooleanTypeDeclarationSQL()">getBooleanTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/unitofwork.html#getByIdHash()">getByIdHash()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Gets an entity in the identity map by its identifier hash.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatafactory.html#getCacheDriver()">getCacheDriver()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatafactory.html">Doctrine\ORM\Mapping\ClassMetadataFactory</a></dt>
+<dd>Gets the cache driver used by the factory to cache ClassMetadata instances.</dd>
+<dt><a href="doctrine/orm/query/lexer.html#getCatchablePatterns()">getCatchablePatterns()</a> - Method in class <a href="doctrine/orm/query/lexer.html">Doctrine\ORM\Query\Lexer</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCheckDeclarationSQL()">getCheckDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to set a CHECK constraint
+declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/common/annotations/annotationreader.html#getClassAnnotation()">getClassAnnotation()</a> - Method in class <a href="doctrine/common/annotations/annotationreader.html">Doctrine\Common\Annotations\AnnotationReader</a></dt>
+<dd>Gets a class annotation.</dd>
+<dt><a href="doctrine/common/annotations/annotationreader.html#getClassAnnotations()">getClassAnnotations()</a> - Method in class <a href="doctrine/common/annotations/annotationreader.html">Doctrine\Common\Annotations\AnnotationReader</a></dt>
+<dd>Gets the annotations applied to a class.</dd>
+<dt><a href="doctrine/orm/tools/event/generateschematableeventargs.html#getClassMetadata()">getClassMetadata()</a> - Method in class <a href="doctrine/orm/tools/event/generateschematableeventargs.html">Doctrine\ORM\Tools\Event\GenerateSchemaTableEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#getClassMetadata()">getClassMetadata()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Gets the ClassMetadata instance of the entity class this persister is used for.</dd>
+<dt><a href="doctrine/orm/event/loadclassmetadataeventargs.html#getClassMetadata()">getClassMetadata()</a> - Method in class <a href="doctrine/orm/event/loadclassmetadataeventargs.html">Doctrine\ORM\Event\LoadClassMetadataEventArgs</a></dt>
+<dt><a href="doctrine/orm/entitymanager.html#getClassMetadata()">getClassMetadata()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Returns the metadata for a class.</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#getClassName()">getClassName()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Gets the name of the class of an entity result or joined entity result,
+identified by the given unique alias.</dd>
+<dt><a href="doctrine/orm/tools/event/generateschematableeventargs.html#getClassTable()">getClassTable()</a> - Method in class <a href="doctrine/orm/tools/event/generateschematableeventargs.html">Doctrine\ORM\Tools\Event\GenerateSchemaTableEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>@override</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>Gets the SQL snippet used to declare a CLOB column type.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>@override</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>@override</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>@override</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getClobTypeDeclarationSQL()">getClobTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL snippet used to declare a CLOB column type.</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getCollationFieldDeclaration()">getCollationFieldDeclaration()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to set the COLLATION
+of a field declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#getCollectionPersister()">getCollectionPersister()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets a collection persister for a collection-valued association.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#getColumn()">getColumn()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Get a column instance</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getColumnCharsetDeclarationSQL()">getColumnCharsetDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to set the CHARACTER SET
+of a field declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getColumnCollationDeclarationSQL()">getColumnCollationDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to set the COLLATION
+of a field declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationListSQL()">getColumnDeclarationListSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Get declaration of a number of fields in bulk</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getColumnDeclarationSQL()">getColumnDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to declare a generic type
+field to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#getColumnDefinition()">getColumnDefinition()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getColumnName()">getColumnName()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets a column name for a field name.
+</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getColumnNames()">getColumnNames()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets an array containing all the column names.</dd>
+<dt><a href="doctrine/dbal/schema/constraint.html#getColumns()">getColumns()</a> - Method in class <a href="doctrine/dbal/schema/constraint.html">Doctrine\DBAL\Schema\Constraint</a></dt>
+<dt><a href="doctrine/dbal/schema/index.html#getColumns()">getColumns()</a> - Method in class <a href="doctrine/dbal/schema/index.html">Doctrine\DBAL\Schema\Index</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/table.html#getColumns()">getColumns()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html#getColumns()">getColumns()</a> - Method in class <a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></dt>
+<dt><a href="doctrine/orm/internal/commitordercalculator.html#getCommitOrder()">getCommitOrder()</a> - Method in class <a href="doctrine/orm/internal/commitordercalculator.html">Doctrine\ORM\Internal\CommitOrderCalculator</a></dt>
+<dd>Gets a valid commit order for all current nodes.
+</dd>
+<dt><a href="doctrine/orm/unitofwork.html#getCommitOrderCalculator()">getCommitOrderCalculator()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the CommitOrderCalculator used by the UnitOfWork to order commits.</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getConcatExpression()">getConcatExpression()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Returns string to concatenate two or more string parameters</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getConcatExpression()">getConcatExpression()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Returns a series of strings concatinated
+
+concat() accepts an arbitrary number of parameters. </dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getConcatExpression()">getConcatExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns a series of strings concatinated
+
+concat() accepts an arbitrary number of parameters. </dd>
+<dt><a href="doctrine/dbal/connection.html#getConfiguration()">getConfiguration()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the Configuration used by the Connection.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#getConfiguration()">getConfiguration()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Gets the Configuration used by the EntityManager.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#getConnection()">getConnection()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Gets the Connection used by the walker.</dd>
+<dt><a href="doctrine/dbal/tools/console/helper/connectionhelper.html#getConnection()">getConnection()</a> - Method in class <a href="doctrine/dbal/tools/console/helper/connectionhelper.html">Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper</a></dt>
+<dd>Retrieves Doctrine Database Connection</dd>
+<dt><a href="doctrine/dbal/event/connectioneventargs.html#getConnection()">getConnection()</a> - Method in class <a href="doctrine/dbal/event/connectioneventargs.html">Doctrine\DBAL\Event\ConnectionEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/entitymanager.html#getConnection()">getConnection()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Gets the database connection object used by the EntityManager.</dd>
+<dt><a href="doctrine/dbal/drivermanager.html#getConnection()">getConnection()</a> - Method in class <a href="doctrine/dbal/drivermanager.html">Doctrine\DBAL\DriverManager</a></dt>
+<dd>Creates a connection object based on the specified parameters.
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCosExpression()">getCosExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCountExpression()">getCountExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the number of rows (without a NULL value) of a column
+
+If a '*' is used instead of a column the number of selected rows
+is returned.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getCreateAutoincrementSql()">getCreateAutoincrementSql()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCreateConstraintSQL()">getCreateConstraintSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL to create a constraint on a table on this platform.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getCreateDatabaseSQL()">getCreateDatabaseSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>create a new database</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getCreateDatabaseSQL()">getCreateDatabaseSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>create a new database</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCreateDatabaseSQL()">getCreateDatabaseSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getCreateDatabaseSQL()">getCreateDatabaseSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>create a new database</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCreateForeignKeySQL()">getCreateForeignKeySQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Create a new foreign key</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCreateIndexSQL()">getCreateIndexSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL to create an index on a table on this platform.</dd>
+<dt><a href="doctrine/orm/tools/schematool.html#getCreateSchemaSql()">getCreateSchemaSql()</a> - Method in class <a href="doctrine/orm/tools/schematool.html">Doctrine\ORM\Tools\SchemaTool</a></dt>
+<dd>Gets the list of DDL statements that are required to create the database schema for
+the given list of ClassMetadata instances.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCreateSequenceSQL()">getCreateSequenceSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL to create a sequence on this platform.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getCreateSequenceSQL()">getCreateSequenceSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Gets the SQL used to create a sequence that starts with a given value
+and increments by the given allocation size.
+</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getCreateSequenceSQL()">getCreateSequenceSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Gets the SQL to create a sequence on this platform.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCreateTableSQL()">getCreateTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL statement(s) to create a table with the specified name, columns and constraints
+on this platform.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCreateTemporaryTableSnippetSQL()">getCreateTemporaryTableSnippetSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getCreateViewSQL()">getCreateViewSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getCreateViewSQL()">getCreateViewSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getCreateViewSQL()">getCreateViewSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCreateViewSQL()">getCreateViewSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getCreateViewSQL()">getCreateViewSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCurrentDateSQL()">getCurrentDateSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL specific for the platform to get the current date.</dd>
+<dt><a href="doctrine/orm/id/sequencegenerator.html#getCurrentMaxValue()">getCurrentMaxValue()</a> - Method in class <a href="doctrine/orm/id/sequencegenerator.html">Doctrine\ORM\Id\SequenceGenerator</a></dt>
+<dd>Gets the maximum value of the currently allocated bag of values.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCurrentTimeSQL()">getCurrentTimeSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL specific for the platform to get the current time.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCurrentTimestampSQL()">getCurrentTimestampSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL specific for the platform to get the current timestamp</dd>
+<dt><a href="doctrine/orm/configuration.html#getCustomDatetimeFunction()">getCustomDatetimeFunction()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets the implementation class name of a registered custom date/time DQL function.</dd>
+<dt><a href="doctrine/orm/configuration.html#getCustomNumericFunction()">getCustomNumericFunction()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets the implementation class name of a registered custom numeric DQL function.</dd>
+<dt><a href="doctrine/orm/configuration.html#getCustomStringFunction()">getCustomStringFunction()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets the implementation class name of a registered custom string DQL function.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getCustomTypeDeclarationSQL()">getCustomTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>getCustomTypeDeclarationSql
+Obtail SQL code portion needed to create a custom column,
+e.g. </dd>
+<dt><a href="doctrine/dbal/connection.html#getDatabase()">getDatabase()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the name of the database this Connection is connected to.</dd>
+<dt><a href="doctrine/dbal/driver/pdosqlite/driver.html#getDatabase()">getDatabase()</a> - Method in class <a href="doctrine/dbal/driver/pdosqlite/driver.html">Doctrine\DBAL\Driver\PDOSqlite\Driver</a></dt>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#getDatabasePlatform()">getDatabasePlatform()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Return associated platform.</dd>
+<dt><a href="doctrine/dbal/connection.html#getDatabasePlatform()">getDatabasePlatform()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the DatabasePlatform for the connection.</dd>
+<dt><a href="doctrine/dbal/event/connectioneventargs.html#getDatabasePlatform()">getDatabasePlatform()</a> - Method in class <a href="doctrine/dbal/event/connectioneventargs.html">Doctrine\DBAL\Event\ConnectionEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/driver/pdosqlite/driver.html#getDatabasePlatform()">getDatabasePlatform()</a> - Method in class <a href="doctrine/dbal/driver/pdosqlite/driver.html">Doctrine\DBAL\Driver\PDOSqlite\Driver</a></dt>
+<dd>Gets the database platform that is relevant for this driver.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDateFormatString()">getDateFormatString()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the format string, as accepted by the date() function, that describes
+the format of a stored date value of this platform.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getDateTimeFormatString()">getDateTimeFormatString()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Gets the format string, as accepted by the date() function, that describes
+the format of a stored datetime value of this platform.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDateTimeFormatString()">getDateTimeFormatString()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the format string, as accepted by the date() function, that describes
+the format of a stored datetime value of this platform.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getDateTimeFormatString()">getDateTimeFormatString()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Gets the format string, as accepted by the date() function, that describes
+the format of a stored datetime value of this platform.</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL to be used to create datetime fields in 
+statements like CREATE TABLE</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getDateTimeTypeDeclarationSQL()">getDateTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDateTypeDeclarationSQL()">getDateTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL to be used to create date fields in statements
+like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDecimalTypeDeclarationSQL()">getDecimalTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL snippet that declares a floating point column of arbitrary precision.</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#getDeclaringClass()">getDeclaringClass()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Gets the name of the class that owns a field mapping for the specified column.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#getDefault()">getDefault()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/dbal/types/stringtype.html#getDefaultLength()">getDefaultLength()</a> - Method in class <a href="doctrine/dbal/types/stringtype.html">Doctrine\DBAL\Types\StringType</a></dt>
+<dd>@override</dd>
+<dt><a href="doctrine/dbal/types/type.html#getDefaultLength()">getDefaultLength()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Gets the default length of this type.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDefaultTransactionIsolationLevel()">getDefaultTransactionIsolationLevel()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the default transaction isolation level of the platform.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDefaultValueDeclarationSQL()">getDefaultValueDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to set a default value
+declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#getDeleteDiff()">getDeleteDiff()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>INTERNAL:
+getDeleteDiff</dd>
+<dt><a href="doctrine/orm/query.html#getDQL()">getDQL()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Returns the DQL query that is represented by this query object.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getDQL()">getDQL()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Get the complete DQL string for this query builder instance
+
+[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+echo $qb->getDql(); // SELECT u FROM User u</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getDQLPart()">getDQLPart()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Get a DQL part or parts by the part name</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getDQLParts()">getDQLParts()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Get the full DQL parts array</dd>
+<dt><a href="doctrine/dbal/event/connectioneventargs.html#getDriver()">getDriver()</a> - Method in class <a href="doctrine/dbal/event/connectioneventargs.html">Doctrine\DBAL\Event\ConnectionEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/connection.html#getDriver()">getDriver()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the DBAL driver instance.</dd>
+<dt><a href="doctrine/orm/mapping/driver/driverchain.html#getDrivers()">getDrivers()</a> - Method in class <a href="doctrine/orm/mapping/driver/driverchain.html">Doctrine\ORM\Mapping\Driver\DriverChain</a></dt>
+<dd>Get the array of nested drivers.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getDropAutoincrementSql()">getDropAutoincrementSql()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDropConstraintSQL()">getDropConstraintSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Get drop constraint sql</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getDropDatabaseSQL()">getDropDatabaseSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getDropDatabaseSQL()">getDropDatabaseSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>drop an existing database</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDropDatabaseSQL()">getDropDatabaseSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getDropDatabaseSQL()">getDropDatabaseSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>drop an existing database</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getDropDatabaseSQL()">getDropDatabaseSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>drop an existing database</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getDropForeignKeySQL()">getDropForeignKeySQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getDropForeignKeySQL()">getDropForeignKeySQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDropForeignKeySQL()">getDropForeignKeySQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getDropIndexSQL()">getDropIndexSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Gets the SQL to drop an index of a table.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDropIndexSQL()">getDropIndexSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Drop index from a table</dd>
+<dt><a href="doctrine/orm/tools/schematool.html#getDropSchemaSql()">getDropSchemaSql()</a> - Method in class <a href="doctrine/orm/tools/schematool.html">Doctrine\ORM\Tools\SchemaTool</a></dt>
+<dd>Gets the SQL needed to drop the database schema for the given classes.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getDropSequenceSQL()">getDropSequenceSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDropSequenceSQL()">getDropSequenceSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getDropSequenceSQL()">getDropSequenceSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Drop existing sequence</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDropTableSQL()">getDropTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Drop a Table</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getDropTableSQL()">getDropTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Gets the SQL to drop a table.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getDropViewSQL()">getDropViewSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getDropViewSQL()">getDropViewSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getDropViewSQL()">getDropViewSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getDropViewSQL()">getDropViewSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getDropViewSQL()">getDropViewSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/orm/mapping/driver/abstractfiledriver.html#getElement()">getElement()</a> - Method in class <a href="doctrine/orm/mapping/driver/abstractfiledriver.html">Doctrine\ORM\Mapping\Driver\AbstractFileDriver</a></dt>
+<dd>Get the element of schema meta data for the class from the mapping file.
+</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Get the insert sql for an empty insert statement</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Get the insert sql for an empty insert statement</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getEmptyIdentityInsertSQL()">getEmptyIdentityInsertSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Get the insert sql for an empty insert statement</dd>
+<dt><a href="doctrine/common/eventargs.html#getEmptyInstance()">getEmptyInstance()</a> - Method in class <a href="doctrine/common/eventargs.html">Doctrine\Common\EventArgs</a></dt>
+<dd>Gets the single, empty and immutable EventArgs instance.
+</dd>
+<dt><a href="doctrine/orm/event/lifecycleeventargs.html#getEntity()">getEntity()</a> - Method in class <a href="doctrine/orm/event/lifecycleeventargs.html">Doctrine\ORM\Event\LifecycleEventArgs</a></dt>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#getEntityAlias()">getEntityAlias()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Gets the alias of the class that owns a field mapping for the specified column.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#getEntityChangeSet()">getEntityChangeSet()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the changeset for an entity.</dd>
+<dt><a href="doctrine/orm/event/preupdateeventargs.html#getEntityChangeSet()">getEntityChangeSet()</a> - Method in class <a href="doctrine/orm/event/preupdateeventargs.html">Doctrine\ORM\Event\PreUpdateEventArgs</a></dt>
+<dt><a href="doctrine/orm/unitofwork.html#getEntityIdentifier()">getEntityIdentifier()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the identifier of an entity.
+</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getEntityManager()">getEntityManager()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Retrieves the associated EntityManager of this Query instance.</dd>
+<dt><a href="doctrine/orm/event/lifecycleeventargs.html#getEntityManager()">getEntityManager()</a> - Method in class <a href="doctrine/orm/event/lifecycleeventargs.html">Doctrine\ORM\Event\LifecycleEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#getEntityManager()">getEntityManager()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Gets the EntityManager used by the walker.</dd>
+<dt><a href="doctrine/orm/tools/event/generateschemaeventargs.html#getEntityManager()">getEntityManager()</a> - Method in class <a href="doctrine/orm/tools/event/generateschemaeventargs.html">Doctrine\ORM\Tools\Event\GenerateSchemaEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/parser.html#getEntityManager()">getEntityManager()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Gets the EntityManager used by the parser.</dd>
+<dt><a href="doctrine/orm/tools/console/helper/entitymanagerhelper.html#getEntityManager()">getEntityManager()</a> - Method in class <a href="doctrine/orm/tools/console/helper/entitymanagerhelper.html">Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper</a></dt>
+<dd>Retrieves Doctrine ORM EntityManager</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getEntityManager()">getEntityManager()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Get the associated EntityManager for this query builder.</dd>
+<dt><a href="doctrine/orm/event/onflusheventargs.html#getEntityManager()">getEntityManager()</a> - Method in class <a href="doctrine/orm/event/onflusheventargs.html">Doctrine\ORM\Event\OnFlushEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/configuration.html#getEntityNamespace()">getEntityNamespace()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Resolves a registered namespace alias to the full namespace.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#getEntityPersister()">getEntityPersister()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the EntityPersister for an Entity.</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#getEntityResultCount()">getEntityResultCount()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Gets the number of different entities that appear in the mapped result.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#getEntityState()">getEntityState()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the state of an entity within the current unit of work.
+</dd>
+<dt><a href="doctrine/orm/entitymanager.html#getEventManager()">getEventManager()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Gets the EventManager used by the EntityManager.</dd>
+<dt><a href="doctrine/dbal/connection.html#getEventManager()">getEventManager()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the EventManager used by the Connection.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#getExecutor()">getExecutor()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Gets an executor that can be used to execute the result of this walker.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#getExecutor()">getExecutor()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Gets an executor that can be used to execute the result of this walker.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#getExecutor()">getExecutor()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Gets an executor that can be used to execute the result of this walker.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#getExecutor()">getExecutor()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Gets an executor that can be used to execute the result of this walker.</dd>
+<dt><a href="doctrine/orm/query.html#getExpireQueryCache()">getExpireQueryCache()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Retrieves if the query cache is active or not.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getExpireResultCache()">getExpireResultCache()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Retrieves if the resultset cache is active or not.</dd>
+<dt><a href="doctrine/orm/tools/export/classmetadataexporter.html#getExporter()">getExporter()</a> - Method in class <a href="doctrine/orm/tools/export/classmetadataexporter.html">Doctrine\ORM\Tools\Export\ClassMetadataExporter</a></dt>
+<dd>Get a exporter driver instance</dd>
+<dt><a href="doctrine/orm/entitymanager.html#getExpressionBuilder()">getExpressionBuilder()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Gets an ExpressionBuilder used for object-oriented construction of query expressions.
+</dd>
+<dt><a href="doctrine/orm/tools/export/driver/abstractexporter.html#getExtension()">getExtension()</a> - Method in class <a href="doctrine/orm/tools/export/driver/abstractexporter.html">Doctrine\ORM\Tools\Export\Driver\AbstractExporter</a></dt>
+<dd>Get the extension used to generated the path to a class</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getFieldMapping()">getFieldMapping()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the mapping of a (regular) field that holds some data but not a
+reference to another object.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getFieldName()">getFieldName()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the field name for a column name.
+</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#getFieldName()">getFieldName()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Gets the field name for a column name.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#getFieldValue()">getFieldValue()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Gets the specified field's value off the given entity.</dd>
+<dt><a href="doctrine/orm/mapping/driver/abstractfiledriver.html#getFileExtension()">getFileExtension()</a> - Method in class <a href="doctrine/orm/mapping/driver/abstractfiledriver.html">Doctrine\ORM\Mapping\Driver\AbstractFileDriver</a></dt>
+<dd>Get the file extension used to look for mapping files under</dd>
+<dt><a href="doctrine/orm/mapping/driver/annotationdriver.html#getFileExtension()">getFileExtension()</a> - Method in class <a href="doctrine/orm/mapping/driver/annotationdriver.html">Doctrine\ORM\Mapping\Driver\AnnotationDriver</a></dt>
+<dd>Get the file extension used to look for mapping files under</dd>
+<dt><a href="doctrine/common/classloader.html#getFileExtension()">getFileExtension()</a> - Method in class <a href="doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></dt>
+<dd>Gets the file extension of class files in the namespace of this class loader.</dd>
+<dt><a href="doctrine/orm/query.html#getFirstResult()">getFirstResult()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Gets the position of the first result the query object was set to retrieve (the "offset").
+</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getFirstResult()">getFirstResult()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Gets the position of the first result the query object was set to retrieve (the "offset").
+</dd>
+<dt><a href="doctrine/dbal/schema/column.html#getFixed()">getFixed()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html#getForeignColumns()">getForeignColumns()</a> - Method in class <a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/table.html#getForeignKey()">getForeignKey()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getForeignKeyBaseDeclarationSQL()">getForeignKeyBaseDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to set the FOREIGN KEY constraint
+of a field declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getForeignKeyDeclarationSQL()">getForeignKeyDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to set the FOREIGN KEY constraint
+of a field declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getForeignKeyReferentialActionSQL()">getForeignKeyReferentialActionSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>returns given referential action in uppercase if valid, otherwise throws
+an exception</dd>
+<dt><a href="doctrine/dbal/schema/table.html#getForeignKeys()">getForeignKeys()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Get Constraints</dd>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html#getForeignTableName()">getForeignTableName()</a> - Method in class <a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getForUpdateSql()">getForUpdateSql()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/orm/query/expr/from.html#getFrom()">getFrom()</a> - Method in class <a href="doctrine/orm/query/expr/from.html">Doctrine\ORM\Query\Expr\From</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getGuidExpression()">getGuidExpression()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Returns global unique identifier</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getGuidExpression()">getGuidExpression()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Returns global unique identifier</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getGuidExpression()">getGuidExpression()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Returns global unique identifier</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getHint()">getHint()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Gets the value of a query hint. </dd>
+<dt><a href="doctrine/dbal/connection.html#getHost()">getHost()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the hostname of the currently connected database.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getHydrationMode()">getHydrationMode()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Gets the hydration mode currently used by the query.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#getHydrator()">getHydrator()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Gets a hydrator for the given hydration mode.
+</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getIdentifierColumnNames()">getIdentifierColumnNames()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Returns an array with all the identifier column names.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getIdentifierFieldNames()">getIdentifierFieldNames()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the identifier (primary key) field names of the class.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the character used for identifier quoting.</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getIdentifierQuoteCharacter()">getIdentifierQuoteCharacter()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Gets the character used for identifier quoting.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#getIdentifierValues()">getIdentifierValues()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Extracts the identifier values of an entity of this class.
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getIdentityColumnNullInsertSQL()">getIdentityColumnNullInsertSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/orm/unitofwork.html#getIdentityMap()">getIdentityMap()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the identity map of the UnitOfWork.</dd>
+<dt><a href="doctrine/common/cache/apccache.html#getIds()">getIds()</a> - Method in class <a href="doctrine/common/cache/apccache.html">Doctrine\Common\Cache\ApcCache</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/cache/abstractcache.html#getIds()">getIds()</a> - Method in class <a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a></dt>
+<dd>Get an array of all the cache ids stored</dd>
+<dt><a href="doctrine/common/cache/memcachecache.html#getIds()">getIds()</a> - Method in class <a href="doctrine/common/cache/memcachecache.html">Doctrine\Common\Cache\MemcacheCache</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/cache/xcachecache.html#getIds()">getIds()</a> - Method in class <a href="doctrine/common/cache/xcachecache.html">Doctrine\Common\Cache\XcacheCache</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/cache/arraycache.html#getIds()">getIds()</a> - Method in class <a href="doctrine/common/cache/arraycache.html">Doctrine\Common\Cache\ArrayCache</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/classloader.html#getIncludePath()">getIncludePath()</a> - Method in class <a href="doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></dt>
+<dd>Gets the base include path for all class files in the namespace of this class loader.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#getIndex()">getIndex()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getIndexDeclarationSQL()">getIndexDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to set an index
+declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#getIndexes()">getIndexes()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getIndexFieldDeclarationListSQL()">getIndexFieldDeclarationListSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>getIndexFieldDeclarationList
+Obtain DBMS specific SQL code portion needed to set an index
+declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getInExpression()">getInExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the SQL to check if a value is one in a set of
+given values.
+</dd>
+<dt><a href="doctrine/dbal/schema/sequence.html#getInitialValue()">getInitialValue()</a> - Method in class <a href="doctrine/dbal/schema/sequence.html">Doctrine\DBAL\Schema\Sequence</a></dt>
+<dt><a href="doctrine/orm/persistentcollection.html#getInsertDiff()">getInsertDiff()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>INTERNAL:
+getInsertDiff</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#getInsertSQL()">getInsertSQL()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Gets the INSERT SQL used by the persister to persist a new entity.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL snippet that declares a 4 byte integer column.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getIntegerTypeDeclarationSQL()">getIntegerTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to declare an integer type
+field to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getIsNotNullExpression()">getIsNotNullExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns SQL that checks if a expression is not null.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getIsNullExpression()">getIsNullExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns SQL that checks if a expression is null.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#getIterator()">getIterator()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#getIterator()">getIterator()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Gets an iterator for iterating over the elements in the collection.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#getKeys()">getKeys()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#getKeys()">getKeys()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Gets all keys/indexes of the collection elements.</dd>
+<dt><a href="doctrine/common/collections/collection.html#getKeys()">getKeys()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Gets all keys/indices of the collection.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#getLength()">getLength()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getLengthExpression()">getLengthExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the length of a text field.</dd>
+<dt><a href="doctrine/orm/query/parser.html#getLexer()">getLexer()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Gets the lexer used by the parser.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getLifecycleCallbacks()">getLifecycleCallbacks()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the registered lifecycle callbacks for an event.</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getListDatabasesSQL()">getListDatabasesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getListDatabasesSQL()">getListDatabasesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getListDatabasesSQL()">getListDatabasesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getListDatabasesSQL()">getListDatabasesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dt><a href="doctrine/common/eventmanager.html#getListeners()">getListeners()</a> - Method in class <a href="doctrine/common/eventmanager.html">Doctrine\Common\EventManager</a></dt>
+<dd>Gets the listeners of a specific event or all listeners.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getListSequencesSQL()">getListSequencesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getListSequencesSQL()">getListSequencesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getListSequencesSQL()">getListSequencesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getListTableColumnsSQL()">getListTableColumnsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getListTableColumnsSQL()">getListTableColumnsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getListTableColumnsSQL()">getListTableColumnsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getListTableColumnsSQL()">getListTableColumnsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getListTableColumnsSQL()">getListTableColumnsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getListTableConstraintsSQL()">getListTableConstraintsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getListTableConstraintsSQL()">getListTableConstraintsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getListTableConstraintsSQL()">getListTableConstraintsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getListTableConstraintsSQL()">getListTableConstraintsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getListTableConstraintsSQL()">getListTableConstraintsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getListTableForeignKeysSQL()">getListTableForeignKeysSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getListTableForeignKeysSQL()">getListTableForeignKeysSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getListTableForeignKeysSQL()">getListTableForeignKeysSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getListTableForeignKeysSQL()">getListTableForeignKeysSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getListTableIndexesSQL()">getListTableIndexesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getListTableIndexesSQL()">getListTableIndexesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getListTableIndexesSQL()">getListTableIndexesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getListTableIndexesSQL()">getListTableIndexesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getListTableIndexesSQL()">getListTableIndexesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getListTablesSQL()">getListTablesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getListTablesSQL()">getListTablesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getListTablesSQL()">getListTablesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getListTablesSQL()">getListTablesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getListTablesSQL()">getListTablesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getListTablesSQL()">getListTablesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getListUsersSQL()">getListUsersSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getListViewsSQL()">getListViewsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Get the SQL to list all views of a database or user.</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getListViewsSQL()">getListViewsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>Get the SQL to list all views of a database or user.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getListViewsSQL()">getListViewsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Get the SQL to list all views of a database or user.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getListViewsSQL()">getListViewsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Get the SQL to list all views of a database or user.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getListViewsSQL()">getListViewsSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Get the SQL to list all views of a database or user.</dd>
+<dt><a href="doctrine/common/lexer.html#getLiteral()">getLiteral()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Gets the literal for a given token.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatafactory.html#getLoadedMetadata()">getLoadedMetadata()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatafactory.html">Doctrine\ORM\Mapping\ClassMetadataFactory</a></dt>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html#getLocalColumns()">getLocalColumns()</a> - Method in class <a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html#getLocalTableName()">getLocalTableName()</a> - Method in class <a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getLocateExpression()">getLocateExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>returns the position of the first occurrence of substring $substr in string $str</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getLocateExpression()">getLocateExpression()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>returns the position of the first occurrence of substring $substr in string $str</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getLocateExpression()">getLocateExpression()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>returns the position of the first occurrence of substring $substr in string $str</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getLocateExpression()">getLocateExpression()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>returns the position of the first occurrence of substring $substr in string $str</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getLocateExpression()">getLocateExpression()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>returns the position of the first occurrence of substring $substr in string $str</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getLowerExpression()">getLowerExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>lower
+Returns the string $str with all characters changed to
+lowercase according to the current character set mapping.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getLtrimExpression()">getLtrimExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>ltrim
+returns the string $str with leading space characters removed</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#getMapping()">getMapping()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>INTERNAL: Gets the association mapping of the collection.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getMaxExpression()">getMaxExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the highest value of a column</dd>
+<dt><a href="doctrine/dbal/schema/schemaconfig.html#getMaxIdentifierLength()">getMaxIdentifierLength()</a> - Method in class <a href="doctrine/dbal/schema/schemaconfig.html">Doctrine\DBAL\Schema\SchemaConfig</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getMaxIdentifierLength()">getMaxIdentifierLength()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Maximum length of any given databse identifier, like tables or column names.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getMaxIdentifierLength()">getMaxIdentifierLength()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Maximum length of any given databse identifier, like tables or column names.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getMaxResults()">getMaxResults()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Gets the maximum number of results the query object was set to retrieve (the "limit").
+</dd>
+<dt><a href="doctrine/orm/query.html#getMaxResults()">getMaxResults()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Gets the maximum number of results the query object was set to retrieve (the "limit").
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getMd5Expression()">getMd5Expression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the md5 sum of a field.
+</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getMediumIntTypeDeclarationSql()">getMediumIntTypeDeclarationSql()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/cache/memcachecache.html#getMemcache()">getMemcache()</a> - Method in class <a href="doctrine/common/cache/memcachecache.html">Doctrine\Common\Cache\MemcacheCache</a></dt>
+<dd>Gets the memcache instance used by the cache.</dd>
+<dt><a href="doctrine/orm/configuration.html#getMetadataCacheImpl()">getMetadataCacheImpl()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets the cache driver implementation that is used for metadata caching.</dd>
+<dt><a href="doctrine/orm/configuration.html#getMetadataDriverImpl()">getMetadataDriverImpl()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets the cache driver implementation that is used for the mapping metadata.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#getMetadataFactory()">getMetadataFactory()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Gets the metadata factory used to gather the metadata of classes.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatafactory.html#getMetadataFor()">getMetadataFor()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatafactory.html">Doctrine\ORM\Mapping\ClassMetadataFactory</a></dt>
+<dd>Gets the class metadata descriptor for a class.</dd>
+<dt><a href="doctrine/orm/tools/convertdoctrine1schema.html#getMetadatas()">getMetadatas()</a> - Method in class <a href="doctrine/orm/tools/convertdoctrine1schema.html">Doctrine\ORM\Tools\ConvertDoctrine1Schema</a></dt>
+<dd>Get an array of ClassMetadataInfo instances from the passed
+Doctrine 1 schema</dd>
+<dt><a href="doctrine/orm/tools/classmetadatareader.html#getMetadatas()">getMetadatas()</a> - Method in class <a href="doctrine/orm/tools/classmetadatareader.html">Doctrine\ORM\Tools\ClassMetadataReader</a></dt>
+<dd>Get an array of ClassMetadataInfo instances for all the configured mapping
+directories. </dd>
+<dt><a href="doctrine/orm/tools/export/classmetadataexporter.html#getMetadatas()">getMetadatas()</a> - Method in class <a href="doctrine/orm/tools/export/classmetadataexporter.html">Doctrine\ORM\Tools\Export\ClassMetadataExporter</a></dt>
+<dd>Get an array of ClassMetadataInfo instances for all the configured mapping
+directories. </dd>
+<dt><a href="doctrine/common/annotations/annotationreader.html#getMethodAnnotation()">getMethodAnnotation()</a> - Method in class <a href="doctrine/common/annotations/annotationreader.html">Doctrine\Common\Annotations\AnnotationReader</a></dt>
+<dd>Gets a method annotation.</dd>
+<dt><a href="doctrine/common/annotations/annotationreader.html#getMethodAnnotations()">getMethodAnnotations()</a> - Method in class <a href="doctrine/common/annotations/annotationreader.html">Doctrine\Common\Annotations\AnnotationReader</a></dt>
+<dd>Gets the annotations applied to a method.</dd>
+<dt><a href="doctrine/dbal/schema/schema.html#getMigrateFromSql()">getMigrateFromSql()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/schema.html#getMigrateToSql()">getMigrateToSql()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getMinExpression()">getMinExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the lowest value of a column</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getModExpression()">getModExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the remainder of the division operation
+$expression1 / $expression2.</dd>
+<dt><a href="doctrine/orm/tools/console/helper/entitymanagerhelper.html#getName()">getName()</a> - Method in class <a href="doctrine/orm/tools/console/helper/entitymanagerhelper.html">Doctrine\ORM\Tools\Console\Helper\EntityManagerHelper</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/types/stringtype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/stringtype.html">Doctrine\DBAL\Types\StringType</a></dt>
+<dd>@override</dd>
+<dt><a href="doctrine/dbal/types/datetimetype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/datetimetype.html">Doctrine\DBAL\Types\DateTimeType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/datetype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/datetype.html">Doctrine\DBAL\Types\DateType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/booleantype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/booleantype.html">Doctrine\DBAL\Types\BooleanType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/biginttype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/biginttype.html">Doctrine\DBAL\Types\BigIntType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/arraytype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/arraytype.html">Doctrine\DBAL\Types\ArrayType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/decimaltype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/decimaltype.html">Doctrine\DBAL\Types\DecimalType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/integertype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/integertype.html">Doctrine\DBAL\Types\IntegerType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/timetype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/timetype.html">Doctrine\DBAL\Types\TimeType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/texttype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/texttype.html">Doctrine\DBAL\Types\TextType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/smallinttype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/smallinttype.html">Doctrine\DBAL\Types\SmallIntType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/objecttype.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/objecttype.html">Doctrine\DBAL\Types\ObjectType</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/types/type.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Gets the name of this type.</dd>
+<dt><a href="doctrine/dbal/tools/console/helper/connectionhelper.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/tools/console/helper/connectionhelper.html">Doctrine\DBAL\Tools\Console\Helper\ConnectionHelper</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the name of the platform.</dd>
+<dt><a href="doctrine/dbal/schema/abstractasset.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/schema/abstractasset.html">Doctrine\DBAL\Schema\AbstractAsset</a></dt>
+<dd>Return name of this schema asset.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Get the platform name for this instance</dd>
+<dt><a href="doctrine/dbal/schema/constraint.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/schema/constraint.html">Doctrine\DBAL\Schema\Constraint</a></dt>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Get the platform name for this instance</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>Get the platform name for this instance</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Get the platform name for this instance.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Get the platform name for this instance</dd>
+<dt><a href="doctrine/dbal/driver/pdosqlite/driver.html#getName()">getName()</a> - Method in class <a href="doctrine/dbal/driver/pdosqlite/driver.html">Doctrine\DBAL\Driver\PDOSqlite\Driver</a></dt>
+<dt><a href="doctrine/orm/configuration.html#getNamedNativeQuery()">getNamedNativeQuery()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets the components of a previously registered named native query.</dd>
+<dt><a href="doctrine/orm/configuration.html#getNamedQuery()">getNamedQuery()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets a previously registered named DQL query.</dd>
+<dt><a href="doctrine/common/classloader.html#getNamespaceSeparator()">getNamespaceSeparator()</a> - Method in class <a href="doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></dt>
+<dd>Gets the namespace separator used by classes in the namespace of this class loader.</dd>
+<dt><a href="doctrine/orm/event/preupdateeventargs.html#getNewValue()">getNewValue()</a> - Method in class <a href="doctrine/orm/event/preupdateeventargs.html">Doctrine\ORM\Event\PreUpdateEventArgs</a></dt>
+<dd>Get the new value of the changeset of the changed field.</dd>
+<dt><a href="doctrine/orm/id/sequencegenerator.html#getNextValue()">getNextValue()</a> - Method in class <a href="doctrine/orm/id/sequencegenerator.html">Doctrine\ORM\Id\SequenceGenerator</a></dt>
+<dd>Gets the next value that will be returned by generate().</dd>
+<dt><a href="doctrine/orm/query/lexer.html#getNonCatchablePatterns()">getNonCatchablePatterns()</a> - Method in class <a href="doctrine/orm/query/lexer.html">Doctrine\ORM\Query\Lexer</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getNotExpression()">getNotExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the SQL for a logical not.
+</dd>
+<dt><a href="doctrine/dbal/schema/column.html#getNotnull()">getNotnull()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getNowExpression()">getNowExpression()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Return string to call a variable with the current timestamp inside an SQL statement
+There are three special variables for current date and time:
+- CURRENT_TIMESTAMP (date and time, TIMESTAMP type)
+- CURRENT_DATE (date, DATE type)
+- CURRENT_TIME (time, TIME type)</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getNowExpression()">getNowExpression()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Returns the SQL string to return the current system date and time.</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getNowExpression()">getNowExpression()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>Return string to call a variable with the current timestamp inside an SQL statement
+There are three special variables for current date and time.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getNowExpression()">getNowExpression()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Return string to call a variable with the current timestamp inside an SQL statement
+There are three special variables for current date and time:
+- CURRENT_TIMESTAMP (date and time, TIMESTAMP type)
+- CURRENT_DATE (date, DATE type)
+- CURRENT_TIME (time, TIME type)</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getNowExpression()">getNowExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the current system date.</dd>
+<dt><a href="doctrine/orm/event/preupdateeventargs.html#getOldValue()">getOldValue()</a> - Method in class <a href="doctrine/orm/event/preupdateeventargs.html">Doctrine\ORM\Event\PreUpdateEventArgs</a></dt>
+<dd>Get the old value of the changeset of the changed field.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#getOption()">getOption()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html#getOption()">getOption()</a> - Method in class <a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></dt>
+<dt><a href="doctrine/dbal/schema/table.html#getOptions()">getOptions()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dt><a href="doctrine/orm/unitofwork.html#getOriginalEntityData()">getOriginalEntityData()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the original data of an entity. </dd>
+<dt><a href="doctrine/orm/persistentcollection.html#getOwner()">getOwner()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>INTERNAL:
+Gets the collection owner.</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#getOwningTable()">getOwningTable()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Gets the name of the table that owns the column the given field is mapped to.</dd>
+<dt><a href="doctrine/orm/persisters/joinedsubclasspersister.html#getOwningTable()">getOwningTable()</a> - Method in class <a href="doctrine/orm/persisters/joinedsubclasspersister.html">Doctrine\ORM\Persisters\JoinedSubclassPersister</a></dt>
+<dd>Gets the name of the table that owns the column the given field is mapped to.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getParameter()">getParameter()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Gets a query parameter.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getParameter()">getParameter()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Gets a query parameter.</dd>
+<dt><a href="doctrine/orm/query/parserresult.html#getParameterMappings()">getParameterMappings()</a> - Method in class <a href="doctrine/orm/query/parserresult.html">Doctrine\ORM\Query\ParserResult</a></dt>
+<dd>Gets all DQL to SQL parameter mappings.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getParameters()">getParameters()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Get all defined parameters.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getParameters()">getParameters()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Get all defined parameters</dd>
+<dt><a href="doctrine/dbal/connection.html#getParams()">getParams()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the parameters used during instantiation.</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#getParentAlias()">getParentAlias()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Gets the parent alias of the given alias.</dd>
+<dt><a href="doctrine/orm/query/parser.html#getParserResult()">getParserResult()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Gets the ParserResult that is being filled with information during parsing.</dd>
+<dt><a href="doctrine/dbal/connection.html#getPassword()">getPassword()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the password used by this connection.</dd>
+<dt><a href="doctrine/orm/mapping/driver/abstractfiledriver.html#getPaths()">getPaths()</a> - Method in class <a href="doctrine/orm/mapping/driver/abstractfiledriver.html">Doctrine\ORM\Mapping\Driver\AbstractFileDriver</a></dt>
+<dd>Retrieve the defined metadata lookup paths.</dd>
+<dt><a href="doctrine/orm/mapping/driver/annotationdriver.html#getPaths()">getPaths()</a> - Method in class <a href="doctrine/orm/mapping/driver/annotationdriver.html">Doctrine\ORM\Mapping\Driver\AnnotationDriver</a></dt>
+<dd>Retrieve the defined metadata lookup paths.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getPiExpression()">getPiExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/schema/column.html#getPlatformOption()">getPlatformOption()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/dbal/schema/column.html#getPlatformOptions()">getPlatformOptions()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/dbal/connection.html#getPort()">getPort()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the port of the currently connected database.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#getPrecision()">getPrecision()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/dbal/schema/table.html#getPrimaryKey()">getPrimaryKey()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/annotations/annotationreader.html#getPropertyAnnotation()">getPropertyAnnotation()</a> - Method in class <a href="doctrine/common/annotations/annotationreader.html">Doctrine\Common\Annotations\AnnotationReader</a></dt>
+<dd>Gets a property annotation.</dd>
+<dt><a href="doctrine/common/annotations/annotationreader.html#getPropertyAnnotations()">getPropertyAnnotations()</a> - Method in class <a href="doctrine/common/annotations/annotationreader.html">Doctrine\Common\Annotations\AnnotationReader</a></dt>
+<dd>Gets the annotations applied to a property.</dd>
+<dt><a href="doctrine/orm/proxy/proxyfactory.html#getProxy()">getProxy()</a> - Method in class <a href="doctrine/orm/proxy/proxyfactory.html">Doctrine\ORM\Proxy\ProxyFactory</a></dt>
+<dd>Gets a reference proxy instance for the entity of the given type and identified by
+the given identifier.</dd>
+<dt><a href="doctrine/orm/configuration.html#getProxyDir()">getProxyDir()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets the directory where Doctrine generates any necessary proxy class files.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#getProxyFactory()">getProxyFactory()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Gets the proxy factory used by the EntityManager to create entity proxies.</dd>
+<dt><a href="doctrine/orm/configuration.html#getProxyNamespace()">getProxyNamespace()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets the namespace where proxy classes reside.</dd>
+<dt><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html#getQueries()">getQueries()</a> - Method in class <a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html#getQueries()">getQueries()</a> - Method in class <a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</a></dt>
+<dd>Get all queries collected so far.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#getQuery()">getQuery()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Gets the Query instance used by the walker.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getQuery()">getQuery()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Constructs a Query instance from the current configuration of the builder.
+</dd>
+<dt><a href="doctrine/orm/query.html#getQueryCacheDriver()">getQueryCacheDriver()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Returns the cache driver used for query caching.</dd>
+<dt><a href="doctrine/orm/configuration.html#getQueryCacheImpl()">getQueryCacheImpl()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets the cache driver implementation that is used for the query cache (SQL cache).</dd>
+<dt><a href="doctrine/orm/query.html#getQueryCacheLifetime()">getQueryCacheLifetime()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Retrieves the lifetime of resultset cache.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#getQueryComponent()">getQueryComponent()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Gets the information about a single query component.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#getQuotedColumnName()">getQuotedColumnName()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Gets the (possibly quoted) column name of a mapped field for safe use
+in an SQL statement.</dd>
+<dt><a href="doctrine/orm/mapping/associationmapping.html#getQuotedJoinTableName()">getQuotedJoinTableName()</a> - Method in class <a href="doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a></dt>
+<dd>Gets the (possibly quoted) name of the join table.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#getQuotedTableName()">getQuotedTableName()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Gets the (possibly quoted) primary table name of this class for safe use
+in an SQL statement.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#getReference()">getReference()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Gets a reference to the entity identified by the given type and identifier
+without actually loading it.
+</dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#getReflectionClass()">getReflectionClass()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Gets the ReflectionClass instance of the mapped class.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#getReflectionProperties()">getReflectionProperties()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Gets the ReflectionPropertys of the mapped class.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#getReflectionProperty()">getReflectionProperty()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Gets a ReflectionProperty for a specific field of the mapped class.</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getRegexpExpression()">getRegexpExpression()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Returns the regular expression operator.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getRegexpExpression()">getRegexpExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the regular expression operator.</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getRegexpExpression()">getRegexpExpression()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>returns the regular expression operator</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getRegexpExpression()">getRegexpExpression()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Returns the regular expression operator.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getRegexpExpression()">getRegexpExpression()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>regexp</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#getRelation()">getRelation()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/entitymanager.html#getRepository()">getRepository()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Gets the repository for an entity class.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getResult()">getResult()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Gets the list of results for the query.
+</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getResultCacheDriver()">getResultCacheDriver()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Returns the cache driver used for caching result sets.</dd>
+<dt><a href="doctrine/orm/configuration.html#getResultCacheImpl()">getResultCacheImpl()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets the cache driver implementation that is used for query result caching.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getResultCacheLifetime()">getResultCacheLifetime()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Retrieves the lifetime of resultset cache.</dd>
+<dt><a href="doctrine/orm/query/parserresult.html#getResultSetMapping()">getResultSetMapping()</a> - Method in class <a href="doctrine/orm/query/parserresult.html">Doctrine\ORM\Query\ParserResult</a></dt>
+<dd>Gets the ResultSetMapping for the parsed query.</dd>
+<dt><a href="doctrine/dbal/connection.html#getRollbackOnly()">getRollbackOnly()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Check whether the current transaction is marked for rollback only.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getRootAlias()">getRootAlias()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Get the root alias for the query. </dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getRoundExpression()">getRoundExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Rounds a numeric field to the number of decimals specified.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getRtrimExpression()">getRtrimExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>rtrim
+returns the string $str with proceeding space characters removed</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#getScalarAlias()">getScalarAlias()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Gets the field alias for a column that is mapped as a scalar value.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getScalarResult()">getScalarResult()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Gets the scalar results for the query.
+</dd>
+<dt><a href="doctrine/dbal/schema/column.html#getScale()">getScale()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/orm/unitofwork.html#getScheduledCollectionDeletions()">getScheduledCollectionDeletions()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Get the currently scheduled complete collection deletions</dd>
+<dt><a href="doctrine/orm/unitofwork.html#getScheduledCollectionUpdates()">getScheduledCollectionUpdates()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the currently scheduled collection inserts, updates and deletes.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#getScheduledEntityDeletions()">getScheduledEntityDeletions()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the currently scheduled entity deletions in this UnitOfWork.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#getScheduledEntityInsertions()">getScheduledEntityInsertions()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the currently scheduled entity insertions in this UnitOfWork.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#getScheduledEntityUpdates()">getScheduledEntityUpdates()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Gets the currently scheduled entity updates in this UnitOfWork.</dd>
+<dt><a href="doctrine/orm/tools/event/generateschemaeventargs.html#getSchema()">getSchema()</a> - Method in class <a href="doctrine/orm/tools/event/generateschemaeventargs.html">Doctrine\ORM\Tools\Event\GenerateSchemaEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/event/generateschematableeventargs.html#getSchema()">getSchema()</a> - Method in class <a href="doctrine/orm/tools/event/generateschematableeventargs.html">Doctrine\ORM\Tools\Event\GenerateSchemaTableEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/schematool.html#getSchemaFromMetadata()">getSchemaFromMetadata()</a> - Method in class <a href="doctrine/orm/tools/schematool.html">Doctrine\ORM\Tools\SchemaTool</a></dt>
+<dd>From a given set of metadata classes this method creates a Schema instance.</dd>
+<dt><a href="doctrine/dbal/event/connectioneventargs.html#getSchemaManager()">getSchemaManager()</a> - Method in class <a href="doctrine/dbal/event/connectioneventargs.html">Doctrine\DBAL\Event\ConnectionEventArgs</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/driver/pdosqlite/driver.html#getSchemaManager()">getSchemaManager()</a> - Method in class <a href="doctrine/dbal/driver/pdosqlite/driver.html">Doctrine\DBAL\Driver\PDOSqlite\Driver</a></dt>
+<dd>Gets the schema manager that is relevant for this driver.</dd>
+<dt><a href="doctrine/dbal/connection.html#getSchemaManager()">getSchemaManager()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the SchemaManager that can be used to inspect or change the
+database schema through the connection.</dd>
+<dt><a href="doctrine/dbal/schema/schema.html#getSequence()">getSequence()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getSequenceNextValSQL()">getSequenceNextValSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getSequenceNextValSQL()">getSequenceNextValSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getSequenceNextValSQL()">getSequenceNextValSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/schema/schema.html#getSequences()">getSequences()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getSetCharsetSQL()">getSetCharsetSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL statement specific for the platform to set the charset.
+</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>Get sql to set the transaction isolation level</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Get sql to set the transaction isolation level</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Get sql to set the transaction isolation level</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Get sql to set the transaction isolation level</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getSetTransactionIsolationSQL()">getSetTransactionIsolationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Get sql to set the transaction isolation level</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getShowDatabasesSQL()">getShowDatabasesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Get sql query to show a list of database.</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getShowDatabasesSQL()">getShowDatabasesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Get sql query to show a list of database.</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getShowDatabasesSQL()">getShowDatabasesSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Get sql query to show a list of database.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getSinExpression()">getSinExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getSingleIdentifierColumnName()">getSingleIdentifierColumnName()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the column name of the single id column. </dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getSingleIdentifierFieldName()">getSingleIdentifierFieldName()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the name of the single id field. </dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#getSingleIdReflectionProperty()">getSingleIdReflectionProperty()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Gets the ReflectionProperty for the single identifier field.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getSingleResult()">getSingleResult()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Gets the single result of the query.
+</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getSingleScalarResult()">getSingleScalarResult()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Gets the single scalar result of the query.
+</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL snippet that declares a 2 byte integer column.</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>@override</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getSmallIntTypeDeclarationSQL()">getSmallIntTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/persistentcollection.html#getSnapshot()">getSnapshot()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>INTERNAL:
+Returns the last snapshot of the elements in the collection.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#getSQL()">getSQL()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Gets the SQL query that corresponds to this query object.
+</dd>
+<dt><a href="doctrine/orm/query/ast/functions/substringfunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/substringfunction.html">Doctrine\ORM\Query\AST\Functions\SubstringFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query.html#getSQL()">getSQL()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Gets the SQL query/queries that correspond to this DQL query.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/currenttimefunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/currenttimefunction.html">Doctrine\ORM\Query\AST\Functions\CurrentTimeFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/currentdatefunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/currentdatefunction.html">Doctrine\ORM\Query\AST\Functions\CurrentDateFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/concatfunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/concatfunction.html">Doctrine\ORM\Query\AST\Functions\ConcatFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/currenttimestampfunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/currenttimestampfunction.html">Doctrine\ORM\Query\AST\Functions\CurrentTimestampFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/functionnode.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/functionnode.html">Doctrine\ORM\Query\AST\Functions\FunctionNode</a></dt>
+<dt><a href="doctrine/orm/nativequery.html#getSQL()">getSQL()</a> - Method in class <a href="doctrine/orm/nativequery.html">Doctrine\ORM\NativeQuery</a></dt>
+<dd>Gets the SQL query.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/sqrtfunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/sqrtfunction.html">Doctrine\ORM\Query\AST\Functions\SqrtFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/modfunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/modfunction.html">Doctrine\ORM\Query\AST\Functions\ModFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/view.html#getSql()">getSql()</a> - Method in class <a href="doctrine/dbal/schema/view.html">Doctrine\DBAL\Schema\View</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/absfunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/absfunction.html">Doctrine\ORM\Query\AST\Functions\AbsFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/lowerfunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/lowerfunction.html">Doctrine\ORM\Query\AST\Functions\LowerFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/trimfunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/trimfunction.html">Doctrine\ORM\Query\AST\Functions\TrimFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/upperfunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/upperfunction.html">Doctrine\ORM\Query\AST\Functions\UpperFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/lengthfunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/lengthfunction.html">Doctrine\ORM\Query\AST\Functions\LengthFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/locatefunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/locatefunction.html">Doctrine\ORM\Query\AST\Functions\LocateFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/sizefunction.html#getSql()">getSql()</a> - Method in class <a href="doctrine/orm/query/ast/functions/sizefunction.html">Doctrine\ORM\Query\AST\Functions\SizeFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#getSqlColumnAlias()">getSqlColumnAlias()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Gets an SQL column alias for a column name.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getSqlCommentEndString()">getSqlCommentEndString()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the string portion that ends an SQL comment.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getSqlCommentStartString()">getSqlCommentStartString()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the string portion that starts an SQL comment.</dd>
+<dt><a href="doctrine/dbal/types/booleantype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/booleantype.html">Doctrine\DBAL\Types\BooleanType</a></dt>
+<dd>Gets the SQL declaration snippet for a field of this type.</dd>
+<dt><a href="doctrine/dbal/types/datetimetype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/datetimetype.html">Doctrine\DBAL\Types\DateTimeType</a></dt>
+<dd>Gets the SQL declaration snippet for a field of this type.</dd>
+<dt><a href="doctrine/dbal/types/biginttype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/biginttype.html">Doctrine\DBAL\Types\BigIntType</a></dt>
+<dd>Gets the SQL declaration snippet for a field of this type.</dd>
+<dt><a href="doctrine/dbal/types/arraytype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/arraytype.html">Doctrine\DBAL\Types\ArrayType</a></dt>
+<dd>Gets the SQL declaration snippet for a field of this type.</dd>
+<dt><a href="doctrine/dbal/types/type.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Gets the SQL declaration snippet for a field of this type.</dd>
+<dt><a href="doctrine/dbal/types/datetype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/datetype.html">Doctrine\DBAL\Types\DateType</a></dt>
+<dd>Gets the SQL declaration snippet for a field of this type.</dd>
+<dt><a href="doctrine/dbal/types/timetype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/timetype.html">Doctrine\DBAL\Types\TimeType</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/types/texttype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/texttype.html">Doctrine\DBAL\Types\TextType</a></dt>
+<dd>@override</dd>
+<dt><a href="doctrine/dbal/types/smallinttype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/smallinttype.html">Doctrine\DBAL\Types\SmallIntType</a></dt>
+<dd>Gets the SQL declaration snippet for a field of this type.</dd>
+<dt><a href="doctrine/dbal/types/objecttype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/objecttype.html">Doctrine\DBAL\Types\ObjectType</a></dt>
+<dd>Gets the SQL declaration snippet for a field of this type.</dd>
+<dt><a href="doctrine/dbal/types/decimaltype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/decimaltype.html">Doctrine\DBAL\Types\DecimalType</a></dt>
+<dd>Gets the SQL declaration snippet for a field of this type.</dd>
+<dt><a href="doctrine/dbal/types/integertype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/integertype.html">Doctrine\DBAL\Types\IntegerType</a></dt>
+<dd>Gets the SQL declaration snippet for a field of this type.</dd>
+<dt><a href="doctrine/dbal/types/stringtype.html#getSqlDeclaration()">getSqlDeclaration()</a> - Method in class <a href="doctrine/dbal/types/stringtype.html">Doctrine\DBAL\Types\StringType</a></dt>
+<dd>@override</dd>
+<dt><a href="doctrine/orm/query/parserresult.html#getSqlExecutor()">getSqlExecutor()</a> - Method in class <a href="doctrine/orm/query/parserresult.html">Doctrine\ORM\Query\ParserResult</a></dt>
+<dd>Gets the SQL executor used by this ParserResult.</dd>
+<dt><a href="doctrine/dbal/configuration.html#getSQLLogger()">getSQLLogger()</a> - Method in class <a href="doctrine/dbal/configuration.html">Doctrine\DBAL\Configuration</a></dt>
+<dd>Gets the SQL logger that is used.</dd>
+<dt><a href="doctrine/orm/query/parserresult.html#getSqlParameterPositions()">getSqlParameterPositions()</a> - Method in class <a href="doctrine/orm/query/parserresult.html">Doctrine\ORM\Query\ParserResult</a></dt>
+<dd>Gets the SQL parameter positions for a DQL parameter name/position.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getSQLResultCasing()">getSQLResultCasing()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Gets the character casing of a column in an SQL result set of this platform.
+</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getSQLResultCasing()">getSQLResultCasing()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Gets the character casing of a column in an SQL result set.
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getSQLResultCasing()">getSQLResultCasing()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the character casing of a column in an SQL result set of this platform.</dd>
+<dt><a href="doctrine/orm/query/exec/abstractsqlexecutor.html#getSqlStatements()">getSqlStatements()</a> - Method in class <a href="doctrine/orm/query/exec/abstractsqlexecutor.html">Doctrine\ORM\Query\Exec\AbstractSqlExecutor</a></dt>
+<dd>Gets the SQL statements that are executed by the executor.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#getSqlTableAlias()">getSqlTableAlias()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Generates a unique, short SQL table alias.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#getState()">getState()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Get the state of this query builder instance
+
+[php]
+if ($qb->getState() == QueryBuilder::STATE_DIRTY) {
+echo 'Query builder is dirty';
+} else {
+echo 'Query builder is clean';
+}</dd>
+<dt><a href="doctrine/orm/query.html#getState()">getState()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Returns the state of this query object
+By default the type is Doctrine_ORM_Query_Abstract::STATE_CLEAN but if it appears any unprocessed DQL
+part, it is switched to Doctrine_ORM_Query_Abstract::STATE_DIRTY.</dd>
+<dt><a href="doctrine/dbal/event/listeners/mysqlsessioninit.html#getSubscribedEvents()">getSubscribedEvents()</a> - Method in class <a href="doctrine/dbal/event/listeners/mysqlsessioninit.html">Doctrine\DBAL\Event\Listeners\MysqlSessionInit</a></dt>
+<dt><a href="doctrine/dbal/event/listeners/oraclesessioninit.html#getSubscribedEvents()">getSubscribedEvents()</a> - Method in class <a href="doctrine/dbal/event/listeners/oraclesessioninit.html">Doctrine\DBAL\Event\Listeners\OracleSessionInit</a></dt>
+<dt><a href="doctrine/common/eventsubscriber.html#getSubscribedEvents()">getSubscribedEvents()</a> - Method in class <a href="doctrine/common/eventsubscriber.html">Doctrine\Common\EventSubscriber</a></dt>
+<dd>Returns an array of events this subscriber wants to listen to.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getSubstringExpression()">getSubstringExpression()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Returns part of a string.
+</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getSubstringExpression()">getSubstringExpression()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>return string to call a function to get a substring inside an SQL statement</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getSubstringExpression()">getSubstringExpression()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>return string to call a function to get a substring inside an SQL statement
+
+Note: Not SQL92, but common functionality.
+</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getSubstringExpression()">getSubstringExpression()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>return string to call a function to get a substring inside an SQL statement
+
+Note: Not SQL92, but common functionality.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getSubstringExpression()">getSubstringExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>return string to call a function to get a substring inside an SQL statement
+
+Note: Not SQL92, but common functionality.
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getSumExpression()">getSumExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Returns the total sum of a column</dd>
+<dt><a href="doctrine/dbal/schema/schema.html#getTable()">getTable()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getTableName()">getTableName()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the name of the primary table.</dd>
+<dt><a href="doctrine/dbal/schema/schema.html#getTables()">getTables()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd>Get all tables of this schema.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getTemporaryIdTableName()">getTemporaryIdTableName()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the table name to use for temporary identifier tables of this class.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getTemporaryTableSQL()">getTemporaryTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>A method to return the required SQL string that fits between CREATE ... </dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getTimeFormatString()">getTimeFormatString()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the format string, as accepted by the date() function, that describes
+the format of a stored time value of this platform.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL to be used to create time fields in statements
+like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getTimeTypeDeclarationSQL()">getTimeTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getTinyIntTypeDeclarationSql()">getTinyIntTypeDeclarationSql()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/connection.html#getTransactionIsolation()">getTransactionIsolation()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the currently active transaction isolation level.</dd>
+<dt><a href="doctrine/dbal/connection.html#getTransactionNestingLevel()">getTransactionNestingLevel()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Returns the current transaction nesting level.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getTrimExpression()">getTrimExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Trim a string, leading/trailing/both and with a given char which defaults to space.</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getTrimExpression()">getTrimExpression()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>Trim a string, leading/trailing/both and with a given char which defaults to space.</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getTruncateTableSQL()">getTruncateTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getTruncateTableSQL()">getTruncateTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getTruncateTableSQL()">getTruncateTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getTruncateTableSQL()">getTruncateTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getTruncateTableSQL()">getTruncateTableSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Generate a Truncate Table SQL statement for a given table.
+</dd>
+<dt><a href="doctrine/dbal/schema/column.html#getType()">getType()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/orm/querybuilder.html#getType()">getType()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Get the type of the currently built query.</dd>
+<dt><a href="doctrine/dbal/types/type.html#getType()">getType()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Factory method to create type instances.
+</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#getTypeClass()">getTypeClass()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getTypeOfColumn()">getTypeOfColumn()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the type of a column.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#getTypeOfField()">getTypeOfField()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Gets the type of a field.</dd>
+<dt><a href="doctrine/dbal/types/type.html#getTypesMap()">getTypesMap()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Get the types array map which holds all registered types and the corresponding
+type class</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getUniqueConstraintDeclarationSQL()">getUniqueConstraintDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to set a unique
+constraint declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getUniqueFieldDeclarationSQL()">getUniqueFieldDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Obtain DBMS specific SQL code portion needed to set the UNIQUE constraint
+of a field declaration to be used in statements like CREATE TABLE.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#getUnitOfWork()">getUnitOfWork()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Gets the UnitOfWork used by the EntityManager to coordinate operations.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#getUnsigned()">getUnsigned()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/orm/tools/schematool.html#getUpdateSchemaSql()">getUpdateSchemaSql()</a> - Method in class <a href="doctrine/orm/tools/schematool.html">Doctrine\ORM\Tools\SchemaTool</a></dt>
+<dd>Gets the sequence of SQL statements that need to be performed in order
+to bring the given class mappings in-synch with the relational schema.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getUpperExpression()">getUpperExpression()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>upper
+Returns the string $str with all characters changed to
+uppercase according to the current character set mapping.</dd>
+<dt><a href="doctrine/orm/configuration.html#getUseCExtension()">getUseCExtension()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Gets a boolean flag that indicates whether Doctrine should make use of the
+C extension.</dd>
+<dt><a href="doctrine/dbal/connection.html#getUsername()">getUsername()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the username used by this connection.</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#getValues()">getValues()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Gets all elements.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#getValues()">getValues()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/collections/collection.html#getValues()">getValues()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Gets all values of the collection.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getVarcharMaxLength()">getVarcharMaxLength()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the maximum length of a varchar field.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets the SQL snippet used to declare a VARCHAR column type.</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Gets the SQL snippet used to declare a VARCHAR column on the MySql platform.</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Gets the SQL snippet used to declare a VARCHAR column type.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Gets the SQL snippet used to declare a VARCHAR column on the Oracle platform.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Gets the SQL snippet used to declare a VARCHAR column on the MySql platform.</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#getVarcharTypeDeclarationSQL()">getVarcharTypeDeclarationSQL()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#getWildcards()">getWildcards()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Gets all SQL wildcard characters of the platform.</dd>
+<dt><a href="doctrine/dbal/connection.html#getWrappedConnection()">getWrappedConnection()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Gets the wrapped driver connection.</dd>
+<dt><a href="doctrine/dbal/statement.html#getWrappedStatement()">getWrappedStatement()</a> - Method in class <a href="doctrine/dbal/statement.html">Doctrine\DBAL\Statement</a></dt>
+<dd>Gets the wrapped driver statement.</dd>
+<dt><a href="doctrine/common/lexer.html#glimpse()">glimpse()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Peeks at the next token, returns it and immediately resets the peek.</dd>
+<dt><a href="doctrine/orm/query/expr/groupby.html">GroupBy()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Expression class for building DQL Group By parts</dd>
+<dt><a href="doctrine/orm/querybuilder.html#groupBy()">groupBy()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Set the GROUP BY clause
+
+[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->groupBy('u.id');</dd>
+<dt><a href="doctrine/orm/query/ast/groupbyclause.html">GroupByClause()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Description of GroupByClause</dd>
+<dt><a href="doctrine/orm/query/parser.html#GroupByClause()">GroupByClause()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>GroupByClause ::= "GROUP" "BY" GroupByItem {"," GroupByItem}</dd>
+<dt><a href="doctrine/orm/query/parser.html#GroupByItem()">GroupByItem()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>GroupByItem ::= IdentificationVariable | SingleValuedPathExpression</dd>
+<dt><a href="doctrine/orm/query/expr.html#gt()">gt()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of Expr\Comparison, with the given arguments.
+</dd>
+<dt><a href="doctrine/orm/query/expr.html#gte()">gte()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of Expr\Comparison, with the given arguments.
+</dd>
+</dl>
+<h1 id="letterH">H</h1>
+<dl>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#hasAssociation()">hasAssociation()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the class has a mapped association with the given field name.</dd>
+<dt><a href="doctrine/orm/mapping/associationmapping.html#hasCascades()">hasCascades()</a> - Method in class <a href="doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a></dt>
+<dd>Checks whether the association has any cascades configured.</dd>
+<dt><a href="doctrine/dbal/schema/columndiff.html#hasChanged()">hasChanged()</a> - Method in class <a href="doctrine/dbal/schema/columndiff.html">Doctrine\DBAL\Schema\ColumnDiff</a></dt>
+<dt><a href="doctrine/orm/event/preupdateeventargs.html#hasChangedField()">hasChangedField()</a> - Method in class <a href="doctrine/orm/event/preupdateeventargs.html">Doctrine\ORM\Event\PreUpdateEventArgs</a></dt>
+<dd>Field has a changeset?</dd>
+<dt><a href="doctrine/orm/internal/commitordercalculator.html#hasClass()">hasClass()</a> - Method in class <a href="doctrine/orm/internal/commitordercalculator.html">Doctrine\ORM\Internal\CommitOrderCalculator</a></dt>
+<dt><a href="doctrine/dbal/schema/table.html#hasColumn()">hasColumn()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Does this table have a column with the given name?</dd>
+<dt><a href="doctrine/dbal/schema/index.html#hasColumnAtPosition()">hasColumnAtPosition()</a> - Method in class <a href="doctrine/dbal/schema/index.html">Doctrine\DBAL\Schema\Index</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/schemaconfig.html#hasExplicitForeignKeyIndexes()">hasExplicitForeignKeyIndexes()</a> - Method in class <a href="doctrine/dbal/schema/schemaconfig.html">Doctrine\DBAL\Schema\SchemaConfig</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/schema.html#hasExplicitForeignKeyIndexes()">hasExplicitForeignKeyIndexes()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#hasField()">hasField()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the class has a (mapped) field with a certain name.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#hasForeignKey()">hasForeignKey()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Does Table have a foreign key constraint with the given name?</dd>
+<dt><a href="doctrine/dbal/schema/table.html#hasIndex()">hasIndex()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#hasIndexBy()">hasIndexBy()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Checks whether an entity result or joined entity result with a given alias has
+a field set for indexing.</dd>
+<dt><a href="doctrine/orm/mapping/haslifecyclecallbacks.html">HasLifecycleCallbacks()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#hasLifecycleCallbacks()">hasLifecycleCallbacks()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Whether the class has any attached lifecycle listeners or callbacks for a lifecycle event.</dd>
+<dt><a href="doctrine/common/eventmanager.html#hasListeners()">hasListeners()</a> - Method in class <a href="doctrine/common/eventmanager.html">Doctrine\Common\EventManager</a></dt>
+<dd>Checks whether an event has any registered listeners.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatafactory.html#hasMetadataFor()">hasMetadataFor()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatafactory.html">Doctrine\ORM\Mapping\ClassMetadataFactory</a></dt>
+<dd>Checks whether the factory has the metadata for a class loaded already.</dd>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html#hasOption()">hasOption()</a> - Method in class <a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></dt>
+<dt><a href="doctrine/dbal/schema/table.html#hasOption()">hasOption()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#hasParentAlias()">hasParentAlias()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Checks whether the given alias has a parent alias.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#hasPendingInsertions()">hasPendingInsertions()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Checks whether the UnitOfWork has any pending insertions.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#hasPlatformOption()">hasPlatformOption()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dt><a href="doctrine/dbal/schema/schema.html#hasSequence()">hasSequence()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/schema.html#hasTable()">hasTable()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd>Does this schema have a table with the given name?</dd>
+<dt><a href="doctrine/dbal/types/type.html#hasType()">hasType()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Checks if exists support for a type.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#having()">having()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Set the HAVING clause</dd>
+<dt><a href="doctrine/orm/query/ast/havingclause.html">HavingClause()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Description of HavingClause</dd>
+<dt><a href="doctrine/orm/query/parser.html#HavingClause()">HavingClause()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>HavingClause ::= "HAVING" ConditionalExpression</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#hydrateAdd()">hydrateAdd()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>INTERNAL:
+Adds an element to a collection during hydration. </dd>
+<dt><a href="doctrine/orm/internal/hydration/abstracthydrator.html#hydrateAll()">hydrateAll()</a> - Method in class <a href="doctrine/orm/internal/hydration/abstracthydrator.html">Doctrine\ORM\Internal\Hydration\AbstractHydrator</a></dt>
+<dd>Hydrates all rows returned by the passed statement instance at once.</dd>
+<dt><a href="doctrine/orm/internal/hydration/abstracthydrator.html#hydrateRow()">hydrateRow()</a> - Method in class <a href="doctrine/orm/internal/hydration/abstracthydrator.html">Doctrine\ORM\Internal\Hydration\AbstractHydrator</a></dt>
+<dd>Hydrates a single row returned by the current statement instance during
+row-by-row hydration with {@link iterate()}.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#hydrateSet()">hydrateSet()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>INTERNAL:
+Sets a keyed element in the collection during hydration.</dd>
+<dt><a href="doctrine/orm/internal/hydration/hydrationexception.html">HydrationException()</a> - Class in package <a href="doctrine/orm/internal/hydration/package-summary.html">Doctrine\ORM\Internal\Hydration</a></dt>
+</dl>
+<h1 id="letterI">I</h1>
+<dl>
+<dt><a href="doctrine/orm/mapping/id.html">Id()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/query/parser.html#IdentificationVariable()">IdentificationVariable()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>IdentificationVariable ::= identifier</dd>
+<dt><a href="doctrine/orm/query/parser.html#IdentificationVariableDeclaration()">IdentificationVariableDeclaration()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>IdentificationVariableDeclaration ::= RangeVariableDeclaration [IndexBy] {JoinVariableDeclaration}</dd>
+<dt><a href="doctrine/orm/query/ast/identificationvariabledeclaration.html">IdentificationVariableDeclaration()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>IdentificationVariableDeclaration ::= RangeVariableDeclaration [IndexBy] {JoinVariableDeclaration}</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#identifierRequired()">identifierRequired()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/id/identitygenerator.html">IdentityGenerator()</a> - Class in package <a href="doctrine/orm/id/package-summary.html">Doctrine\ORM\Id</a></dt>
+<dt><a href="doctrine/dbal/tools/console/command/importcommand.html">ImportCommand()</a> - Class in package <a href="doctrine/dbal/tools/console/command/package-summary.html">Doctrine\DBAL\Tools\Console\Command</a></dt>
+<dd>Task for executing arbitrary SQL that can come from a file or directly from
+the command line.</dd>
+<dt><a href="doctrine/orm/query/expr.html#in()">in()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an IN() expression with the given arguments.</dd>
+<dt><a href="doctrine/orm/mapping/index.html">Index()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/dbal/schema/index.html">Index()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>The abstract asset allows to reset the name of all assets without publishing this to the public userland.
+</dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#indexAlreadyExists()">indexAlreadyExists()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/indexby.html">IndexBy()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>IndexBy ::= "INDEX" "BY" SimpleStateFieldPathExpression</dd>
+<dt><a href="doctrine/orm/query/parser.html#IndexBy()">IndexBy()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>IndexBy ::= "INDEX" "BY" SimpleStateFieldPathExpression</dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#indexDoesNotExist()">indexDoesNotExist()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#indexNameInvalid()">indexNameInvalid()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/collections/collection.html#indexOf()">indexOf()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Gets the index/key of a given element. </dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#indexOf()">indexOf()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Searches for a given element and, if found, returns the corresponding key/index
+of that element. </dd>
+<dt><a href="doctrine/orm/persistentcollection.html#indexOf()">indexOf()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/query/parser.html#InExpression()">InExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>InExpression ::= StateFieldPathExpression ["NOT"] "IN" "(" (InParameter {"," InParameter}* | Subselect) ")"</dd>
+<dt><a href="doctrine/orm/query/ast/inexpression.html">InExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>InExpression ::= StateFieldPathExpression ["NOT"] "IN" "(" (Literal {"," Literal}* | Subselect) ")"</dd>
+<dt><a href="doctrine/common/util/inflector.html">Inflector()</a> - Class in package <a href="doctrine/common/util/package-summary.html">Doctrine\Common\Util</a></dt>
+<dd>Doctrine inflector has static methods for inflecting text
+
+The methods in these classes are from several different sources collected
+across several different php projects and several different authors. </dd>
+<dt><a href="doctrine/orm/mapping/inheritancetype.html">InheritanceType()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/querybuilder.html#innerJoin()">innerJoin()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add an INNER JOIN to an associated class.
+</dd>
+<dt><a href="doctrine/orm/query/parser.html#InParameter()">InParameter()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>InParameter ::= Literal | InputParameter</dd>
+<dt><a href="doctrine/orm/query/ast/inputparameter.html">InputParameter()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Description of InputParameter</dd>
+<dt><a href="doctrine/orm/query/parser.html#InputParameter()">InputParameter()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>InputParameter ::= PositionalParameter | NamedParameter</dd>
+<dt><a href="doctrine/dbal/connection.html#insert()">insert()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Inserts a table row with specified data.</dd>
+<dt><a href="doctrine/orm/persisters/abstractcollectionpersister.html#insertRows()">insertRows()</a> - Method in class <a href="doctrine/orm/persisters/abstractcollectionpersister.html">Doctrine\ORM\Persisters\AbstractCollectionPersister</a></dt>
+<dt><a href="doctrine/dbal/types/integertype.html">IntegerType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps an SQL INT to a PHP integer.</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#invalidClassInDiscriminatorMap()">invalidClassInDiscriminatorMap()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dd>Throws an exception that indicates that a class used in a discriminator map does not exist.
+</dd>
+<dt><a href="doctrine/dbal/dbalexception.html#invalidDriverClass()">invalidDriverClass()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dt><a href="doctrine/orm/ormexception.html#invalidEntityState()">invalidEntityState()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/tools/export/exportexception.html#invalidExporterDriverType()">invalidExporterDriverType()</a> - Method in class <a href="doctrine/orm/tools/export/exportexception.html">Doctrine\ORM\Tools\Export\ExportException</a></dt>
+<dt><a href="doctrine/orm/ormexception.html#invalidFindByCall()">invalidFindByCall()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/ormexception.html#invalidFlushMode()">invalidFlushMode()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/ormexception.html#invalidHydrationMode()">invalidHydrationMode()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#invalidInheritanceType()">invalidInheritanceType()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/query/queryexception.html#invalidLiteral()">invalidLiteral()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#invalidMapping()">invalidMapping()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dd>Generic exception for invalid mappings.</dd>
+<dt><a href="doctrine/orm/tools/export/exportexception.html#invalidMappingDriverType()">invalidMappingDriverType()</a> - Method in class <a href="doctrine/orm/tools/export/exportexception.html">Doctrine\ORM\Tools\Export\ExportException</a></dt>
+<dt><a href="doctrine/orm/query/queryexception.html#invalidParameterFormat()">invalidParameterFormat()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/orm/query/queryexception.html#invalidParameterNumber()">invalidParameterNumber()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/orm/query/queryexception.html#invalidParameterPosition()">invalidParameterPosition()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/orm/query/queryexception.html#invalidPathExpression()">invalidPathExpression()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/dbal/dbalexception.html#invalidPdoInstance()">invalidPdoInstance()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dt><a href="doctrine/dbal/dbalexception.html#invalidPlatformSpecified()">invalidPlatformSpecified()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dt><a href="doctrine/orm/ormexception.html#invalidResultCacheDriver()">invalidResultCacheDriver()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/dbal/dbalexception.html#invalidTableName()">invalidTableName()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/dbalexception.html#invalidWrapperClass()">invalidWrapperClass()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#invokeLifecycleCallbacks()">invokeLifecycleCallbacks()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Dispatches the lifecycle event of the given entity to the registered
+lifecycle callbacks and lifecycle listeners.</dd>
+<dt><a href="doctrine/common/lexer.html#isA()">isA()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Checks if given value is identical to the given token</dd>
+<dt><a href="doctrine/orm/query/ast/quantifiedexpression.html#isAll()">isAll()</a> - Method in class <a href="doctrine/orm/query/ast/quantifiedexpression.html">Doctrine\ORM\Query\AST\QuantifiedExpression</a></dt>
+<dt><a href="doctrine/orm/query/ast/quantifiedexpression.html#isAny()">isAny()</a> - Method in class <a href="doctrine/orm/query/ast/quantifiedexpression.html">Doctrine\ORM\Query\AST\QuantifiedExpression</a></dt>
+<dt><a href="doctrine/orm/query/ast/orderbyitem.html#isAsc()">isAsc()</a> - Method in class <a href="doctrine/orm/query/ast/orderbyitem.html">Doctrine\ORM\Query\AST\OrderByItem</a></dt>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isChangeTrackingDeferredExplicit()">isChangeTrackingDeferredExplicit()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Whether the change tracking policy of this class is "deferred explicit".</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isChangeTrackingDeferredImplicit()">isChangeTrackingDeferredImplicit()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Whether the change tracking policy of this class is "deferred implicit".</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isChangeTrackingNotify()">isChangeTrackingNotify()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Whether the change tracking policy of this class is "notify".</dd>
+<dt><a href="doctrine/orm/unitofwork.html#isCollectionScheduledForDeletion()">isCollectionScheduledForDeletion()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isCollectionValuedAssociation()">isCollectionValuedAssociation()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the class has a mapped association for the specified field
+and if yes, checks whether it is a collection-valued association (to-many).</dd>
+<dt><a href="doctrine/orm/query/ast/conditionalprimary.html#isConditionalExpression()">isConditionalExpression()</a> - Method in class <a href="doctrine/orm/query/ast/conditionalprimary.html">Doctrine\ORM\Query\AST\ConditionalPrimary</a></dt>
+<dt><a href="doctrine/dbal/connection.html#isConnected()">isConnected()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Whether an actual connection to the database is established.</dd>
+<dt><a href="doctrine/orm/query/ast/orderbyitem.html#isDesc()">isDesc()</a> - Method in class <a href="doctrine/orm/query/ast/orderbyitem.html">Doctrine\ORM\Query\AST\OrderByItem</a></dt>
+<dt><a href="doctrine/orm/persistentcollection.html#isDirty()">isDirty()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>Gets a boolean flag indicating whether this colleciton is dirty which means
+its state needs to be synchronized with the database.</dd>
+<dt><a href="doctrine/orm/mapping/associationmapping.html#isEagerlyFetched()">isEagerlyFetched()</a> - Method in class <a href="doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a></dt>
+<dd>Whether the target entity/entities of the association are eagerly fetched.</dd>
+<dt><a href="doctrine/common/collections/collection.html#isEmpty()">isEmpty()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Checks whether the collection is empty (contains no elements).</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#isEmpty()">isEmpty()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Checks whether the collection is empty.
+</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#isEmpty()">isEmpty()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/unitofwork.html#isEntityScheduled()">isEntityScheduled()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Checks whether an entity is scheduled for insertion, update or deletion.</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#isFieldResult()">isFieldResult()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Checks whether the column with the given name is mapped as a field result
+as part of an entity result or joined entity result.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isIdentifier()">isIdentifier()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether a field is part of the identifier/primary key field(s).</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isIdentifierNatural()">isIdentifierNatural()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the class has a natural identifier/pk (which means it does
+not use any Id generator.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#isIdGeneratorIdentity()">isIdGeneratorIdentity()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isIdGeneratorIdentity()">isIdGeneratorIdentity()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the class uses an identity column for the Id generation.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isIdGeneratorSequence()">isIdGeneratorSequence()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the class uses a sequence for id generation.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#isIdGeneratorSequence()">isIdGeneratorSequence()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isIdGeneratorTable()">isIdGeneratorTable()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the class uses a table for id generation.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isInheritanceTypeJoined()">isInheritanceTypeJoined()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the mapped class uses the JOINED inheritance mapping strategy.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isInheritanceTypeNone()">isInheritanceTypeNone()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isInheritanceTypeSingleTable()">isInheritanceTypeSingleTable()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the mapped class uses the SINGLE_TABLE inheritance mapping strategy.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isInheritanceTypeTablePerClass()">isInheritanceTypeTablePerClass()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the mapped class uses the TABLE_PER_CLASS inheritance mapping strategy.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isInheritedAssociation()">isInheritedAssociation()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether a mapped association field is inherited from a superclass.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isInheritedField()">isInheritedField()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether a mapped field is inherited from an entity superclass.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#isInIdentityMap()">isInIdentityMap()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Checks whether an entity is registered in the identity map of this UnitOfWork.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#isInitialized()">isInitialized()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>Checks whether this collection has been initialized.</dd>
+<dt><a href="doctrine/orm/mapping/associationmapping.html#isLazilyFetched()">isLazilyFetched()</a> - Method in class <a href="doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a></dt>
+<dd>Whether the target entity/entities of the association are lazily fetched.</dd>
+<dt><a href="doctrine/orm/mapping/manytomanymapping.html#isManyToMany()">isManyToMany()</a> - Method in class <a href="doctrine/orm/mapping/manytomanymapping.html">Doctrine\ORM\Mapping\ManyToManyMapping</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/mapping/associationmapping.html#isManyToMany()">isManyToMany()</a> - Method in class <a href="doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a></dt>
+<dd>Whether the association is a many-to-many association.</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#isMixedResult()">isMixedResult()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Checks whether this ResultSetMapping defines a mixed result.
+</dd>
+<dt><a href="doctrine/orm/query/ast/arithmeticfactor.html#isNegativeSigned()">isNegativeSigned()</a> - Method in class <a href="doctrine/orm/query/ast/arithmeticfactor.html">Doctrine\ORM\Query\AST\ArithmeticFactor</a></dt>
+<dt><a href="doctrine/common/lexer.html#isNextToken()">isNextToken()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Checks whether a given token matches the current lookahead.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isNullable()">isNullable()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Check if the field is not null.</dd>
+<dt><a href="doctrine/orm/mapping/associationmapping.html#isOneToMany()">isOneToMany()</a> - Method in class <a href="doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a></dt>
+<dd>Whether the association is a one-to-many association.</dd>
+<dt><a href="doctrine/orm/mapping/onetomanymapping.html#isOneToMany()">isOneToMany()</a> - Method in class <a href="doctrine/orm/mapping/onetomanymapping.html">Doctrine\ORM\Mapping\OneToManyMapping</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/mapping/onetoonemapping.html#isOneToOne()">isOneToOne()</a> - Method in class <a href="doctrine/orm/mapping/onetoonemapping.html">Doctrine\ORM\Mapping\OneToOneMapping</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/mapping/associationmapping.html#isOneToOne()">isOneToOne()</a> - Method in class <a href="doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a></dt>
+<dd>Whether the association is a one-to-one association.</dd>
+<dt><a href="doctrine/orm/query/ast/arithmeticfactor.html#isPositiveSigned()">isPositiveSigned()</a> - Method in class <a href="doctrine/orm/query/ast/arithmeticfactor.html">Doctrine\ORM\Query\AST\ArithmeticFactor</a></dt>
+<dt><a href="doctrine/orm/id/sequenceidentitygenerator.html#isPostInsertGenerator()">isPostInsertGenerator()</a> - Method in class <a href="doctrine/orm/id/sequenceidentitygenerator.html">Doctrine\ORM\Id\SequenceIdentityGenerator</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/id/identitygenerator.html#isPostInsertGenerator()">isPostInsertGenerator()</a> - Method in class <a href="doctrine/orm/id/identitygenerator.html">Doctrine\ORM\Id\IdentityGenerator</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/id/abstractidgenerator.html#isPostInsertGenerator()">isPostInsertGenerator()</a> - Method in class <a href="doctrine/orm/id/abstractidgenerator.html">Doctrine\ORM\Id\AbstractIdGenerator</a></dt>
+<dd>Gets whether this generator is a post-insert generator which means that
+<code>generate()</code> must be called after the entity has been inserted
+into the database.
+</dd>
+<dt><a href="doctrine/dbal/schema/index.html#isPrimary()">isPrimary()</a> - Method in class <a href="doctrine/dbal/schema/index.html">Doctrine\DBAL\Schema\Index</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#isRelation()">isRelation()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#isScalarResult()">isScalarResult()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Checks whether a column with a given name is mapped as a scalar result.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#isScheduledForDelete()">isScheduledForDelete()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Checks whether an entity is registered as removed/deleted with the unit
+of work.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#isScheduledForInsert()">isScheduledForInsert()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Checks whether an entity is scheduled for insertion.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#isScheduledForUpdate()">isScheduledForUpdate()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Checks whether an entity is registered as dirty in the unit of work.
+</dd>
+<dt><a href="doctrine/orm/query/ast/arithmeticexpression.html#isSimpleArithmeticExpression()">isSimpleArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/ast/arithmeticexpression.html">Doctrine\ORM\Query\AST\ArithmeticExpression</a></dt>
+<dt><a href="doctrine/orm/query/ast/conditionalprimary.html#isSimpleConditionalExpression()">isSimpleConditionalExpression()</a> - Method in class <a href="doctrine/orm/query/ast/conditionalprimary.html">Doctrine\ORM\Query\AST\ConditionalPrimary</a></dt>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isSingleValuedAssociation()">isSingleValuedAssociation()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the class has a mapped association for the specified field
+and if yes, checks whether it is a single-valued association (to-one).</dd>
+<dt><a href="doctrine/orm/query/ast/quantifiedexpression.html#isSome()">isSome()</a> - Method in class <a href="doctrine/orm/query/ast/quantifiedexpression.html">Doctrine\ORM\Query\AST\QuantifiedExpression</a></dt>
+<dt><a href="doctrine/orm/query/ast/arithmeticexpression.html#isSubselect()">isSubselect()</a> - Method in class <a href="doctrine/orm/query/ast/arithmeticexpression.html">Doctrine\ORM\Query\AST\ArithmeticExpression</a></dt>
+<dt><a href="doctrine/dbal/connection.html#isTransactionActive()">isTransactionActive()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Checks whether a transaction is currently active.</dd>
+<dt><a href="doctrine/orm/mapping/driver/annotationdriver.html#isTransient()">isTransient()</a> - Method in class <a href="doctrine/orm/mapping/driver/annotationdriver.html">Doctrine\ORM\Mapping\Driver\AnnotationDriver</a></dt>
+<dd>Whether the class with the specified name is transient. </dd>
+<dt><a href="doctrine/orm/mapping/driver/driver.html#isTransient()">isTransient()</a> - Method in class <a href="doctrine/orm/mapping/driver/driver.html">Doctrine\ORM\Mapping\Driver\Driver</a></dt>
+<dd>Whether the class with the specified name should have its metadata loaded.
+</dd>
+<dt><a href="doctrine/orm/mapping/driver/driverchain.html#isTransient()">isTransient()</a> - Method in class <a href="doctrine/orm/mapping/driver/driverchain.html">Doctrine\ORM\Mapping\Driver\DriverChain</a></dt>
+<dd>Whether the class with the specified name should have its metadata loaded.
+</dd>
+<dt><a href="doctrine/orm/mapping/driver/abstractfiledriver.html#isTransient()">isTransient()</a> - Method in class <a href="doctrine/orm/mapping/driver/abstractfiledriver.html">Doctrine\ORM\Mapping\Driver\AbstractFileDriver</a></dt>
+<dd>Whether the class with the specified name should have its metadata loaded.
+</dd>
+<dt><a href="doctrine/orm/mapping/driver/databasedriver.html#isTransient()">isTransient()</a> - Method in class <a href="doctrine/orm/mapping/driver/databasedriver.html">Doctrine\ORM\Mapping\Driver\DatabaseDriver</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/schema/index.html#isUnique()">isUnique()</a> - Method in class <a href="doctrine/dbal/schema/index.html">Doctrine\DBAL\Schema\Index</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#isUniqueField()">isUniqueField()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Check if the field is unique.</dd>
+<dt><a href="doctrine/orm/internal/hydration/iterableresult.html">IterableResult()</a> - Class in package <a href="doctrine/orm/internal/hydration/package-summary.html">Doctrine\ORM\Internal\Hydration</a></dt>
+<dd>Represents a result structure that can be iterated over, hydrating row-by-row
+during the iteration. </dd>
+<dt><a href="doctrine/orm/query.html#iterate()">iterate()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Executes the query and returns an IterableResult that can be used to incrementally
+iterated over the result.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#iterate()">iterate()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Executes the query and returns an IterableResult that can be used to incrementally
+iterate over the result.</dd>
+<dt><a href="doctrine/orm/internal/hydration/abstracthydrator.html#iterate()">iterate()</a> - Method in class <a href="doctrine/orm/internal/hydration/abstracthydrator.html">Doctrine\ORM\Internal\Hydration\AbstractHydrator</a></dt>
+<dd>Initiates a row-by-row hydration.</dd>
+<dt><a href="doctrine/orm/query/queryexception.html#iterateWithFetchJoinCollectionNotAllowed()">iterateWithFetchJoinCollectionNotAllowed()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/queryexception.html#iterateWithFetchJoinNotAllowed()">iterateWithFetchJoinNotAllowed()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+</dl>
+<h1 id="letterJ">J</h1>
+<dl>
+<dt><a href="doctrine/orm/query/parser.html#Join()">Join()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Join ::= ["LEFT" ["OUTER"] | "INNER"] "JOIN" JoinAssociationPathExpression
+["AS"] AliasIdentificationVariable ["WITH" ConditionalExpression]</dd>
+<dt><a href="doctrine/orm/querybuilder.html#join()">join()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add a INNER JOIN to an associated class.
+</dd>
+<dt><a href="doctrine/orm/query/expr/join.html">Join()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Expression class for DQL from</dd>
+<dt><a href="doctrine/orm/query/ast/join.html">Join()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Join ::= ["LEFT" ["OUTER"] | "INNER"] "JOIN" JoinAssociationPathExpression
+["AS"] AliasIdentificationVariable [("ON" | "WITH") ConditionalExpression]</dd>
+<dt><a href="doctrine/orm/query/parser.html#JoinAssociationPathExpression()">JoinAssociationPathExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>JoinAssociationPathExpression ::= IdentificationVariable "." (CollectionValuedAssociationField | SingleValuedAssociationField)</dd>
+<dt><a href="doctrine/orm/query/ast/joinassociationpathexpression.html">JoinAssociationPathExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>JoinAssociationPathExpression ::= IdentificationVariable "." (SingleValuedAssociationField | CollectionValuedAssociationField)</dd>
+<dt><a href="doctrine/orm/mapping/joincolumn.html">JoinColumn()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#joinColumnMustPointToMappedField()">joinColumnMustPointToMappedField()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/mapping/joincolumns.html">JoinColumns()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/persisters/joinedsubclasspersister.html">JoinedSubclassPersister()</a> - Class in package <a href="doctrine/orm/persisters/package-summary.html">Doctrine\ORM\Persisters</a></dt>
+<dd>The joined subclass persister maps a single entity instance to several tables in the
+database as it is defined by the <tt>Class Table Inheritance</tt> strategy.</dd>
+<dt><a href="doctrine/orm/mapping/jointable.html">JoinTable()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#joinTableRequired()">joinTableRequired()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/query/ast/joinvariabledeclaration.html">JoinVariableDeclaration()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>JoinVariableDeclaration ::= Join [IndexBy]</dd>
+<dt><a href="doctrine/orm/query/parser.html#JoinVariableDeclaration()">JoinVariableDeclaration()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>JoinVariableDeclaration ::= Join [IndexBy]</dd>
+</dl>
+<h1 id="letterK">K</h1>
+<dl>
+<dt><a href="doctrine/common/collections/collection.html#key()">key()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Gets the key/index of the element at the current iterator position.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#key()">key()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dt><a href="doctrine/common/collections/arraycollection.html#key()">key()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Gets the current key/index at the current internal iterator position.</dd>
+<dt><a href="doctrine/orm/internal/hydration/iterableresult.html#key()">key()</a> - Method in class <a href="doctrine/orm/internal/hydration/iterableresult.html">Doctrine\ORM\Internal\Hydration\IterableResult</a></dt>
+<dd></dd>
+</dl>
+<h1 id="letterL">L</h1>
+<dl>
+<dt><a href="doctrine/common/collections/arraycollection.html#last()">last()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Sets the internal iterator to the last element in the collection and
+returns this element.</dd>
+<dt><a href="doctrine/common/collections/collection.html#last()">last()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Sets the internal iterator to the last element in the collection and
+returns this element.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#last()">last()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html#lastInsertId()">lastInsertId()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></dt>
+<dt><a href="doctrine/dbal/driver/connection.html#lastInsertId()">lastInsertId()</a> - Method in class <a href="doctrine/dbal/driver/connection.html">Doctrine\DBAL\Driver\Connection</a></dt>
+<dt><a href="doctrine/orm/querybuilder.html#leftJoin()">leftJoin()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add a LEFT JOIN
+
+[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->leftJoin('u.Phonenumbers', 'p', Expr\Join::WITH, 'p.is_primary = 1');</dd>
+<dt><a href="doctrine/orm/query/expr.html#length()">length()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a LENGTH() function expression with the given argument.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/lengthfunction.html">LengthFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"LENGTH" "(" StringPrimary ")"</dd>
+<dt><a href="doctrine/common/lexer.html">Lexer()</a> - Class in package <a href="doctrine/common/package-summary.html">Doctrine\Common</a></dt>
+<dd>Simple generic lexical scanner.</dd>
+<dt><a href="doctrine/common/annotations/lexer.html">Lexer()</a> - Class in package <a href="doctrine/common/annotations/package-summary.html">Doctrine\Common\Annotations</a></dt>
+<dd>Simple lexer for docblock annotations.</dd>
+<dt><a href="doctrine/orm/query/lexer.html">Lexer()</a> - Class in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>Scans a DQL query for tokens.</dd>
+<dt><a href="doctrine/orm/event/lifecycleeventargs.html">LifecycleEventArgs()</a> - Class in package <a href="doctrine/orm/event/package-summary.html">Doctrine\ORM\Event</a></dt>
+<dd>Lifecycle Events are triggered by the UnitOfWork during lifecycle transitions
+of entities.</dd>
+<dt><a href="doctrine/orm/query/expr.html#like()">like()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a LIKE() comparison expression with the given arguments.</dd>
+<dt><a href="doctrine/orm/query/parser.html#LikeExpression()">LikeExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>LikeExpression ::= StringExpression ["NOT"] "LIKE" (string | input_parameter) ["ESCAPE" char]</dd>
+<dt><a href="doctrine/orm/query/ast/likeexpression.html">LikeExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>LikeExpression ::= StringExpression ["NOT"] "LIKE" string ["ESCAPE" char]</dd>
+<dt><a href="doctrine/dbal/dbalexception.html#limitOffsetInvalid()">limitOffsetInvalid()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#listDatabases()">listDatabases()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>List the available databases for this connection</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#listSequences()">listSequences()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>lists all database sequences</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#listSequences()">listSequences()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>List the available sequences for this connection</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#listTableColumns()">listTableColumns()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>List the columns for a given table.
+</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#listTableColumns()">listTableColumns()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>lists table constraints</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#listTableDetails()">listTableDetails()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#listTableForeignKeys()">listTableForeignKeys()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>List the foreign keys for the given table</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#listTableIndexes()">listTableIndexes()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>lists table constraints</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#listTableIndexes()">listTableIndexes()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>List the indexes for a given table returning an array of Index instances.
+</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#listTableNames()">listTableNames()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Return a list of all tables in the current database</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#listTables()">listTables()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>List the tables for this connection</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#listTables()">listTables()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>lists tables</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#listTableTriggers()">listTableTriggers()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>lists table triggers</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#listTableViews()">listTableViews()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>lists table views</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#listTriggers()">listTriggers()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>lists all triggers</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#listViews()">listViews()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>List the views this connection has</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html#listViews()">listViews()</a> - Method in class <a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></dt>
+<dd>lists database views</dd>
+<dt><a href="doctrine/orm/query/expr.html#literal()">literal()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a literal expression of the given argument.</dd>
+<dt><a href="doctrine/orm/query/expr/literal.html">Literal()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Abstract base Expr class for building DQL parts</dd>
+<dt><a href="doctrine/orm/query/ast/literal.html">Literal()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Abstract class of an AST node</dd>
+<dt><a href="doctrine/orm/query/parser.html#Literal()">Literal()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Literal ::= string | char | integer | float | boolean</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#load()">load()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Loads an entity by a list of field criteria.</dd>
+<dt><a href="doctrine/orm/mapping/onetoonemapping.html#load()">load()</a> - Method in class <a href="doctrine/orm/mapping/onetoonemapping.html">Doctrine\ORM\Mapping\OneToOneMapping</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/mapping/associationmapping.html#load()">load()</a> - Method in class <a href="doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a></dt>
+<dd>Loads data in $target domain object using this association.
+</dd>
+<dt><a href="doctrine/orm/mapping/manytomanymapping.html#load()">load()</a> - Method in class <a href="doctrine/orm/mapping/manytomanymapping.html">Doctrine\ORM\Mapping\ManyToManyMapping</a></dt>
+<dd>Loads entities in $targetCollection using $em.
+</dd>
+<dt><a href="doctrine/orm/mapping/onetomanymapping.html#load()">load()</a> - Method in class <a href="doctrine/orm/mapping/onetomanymapping.html">Doctrine\ORM\Mapping\OneToManyMapping</a></dt>
+<dd>Loads a one-to-many collection.</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#loadAll()">loadAll()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Loads a list of entities by a list of field criteria.</dd>
+<dt><a href="doctrine/common/classloader.html#loadClass()">loadClass()</a> - Method in class <a href="doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></dt>
+<dd>Loads the given class or interface.</dd>
+<dt><a href="doctrine/orm/event/loadclassmetadataeventargs.html">LoadClassMetadataEventArgs()</a> - Class in package <a href="doctrine/orm/event/package-summary.html">Doctrine\ORM\Event</a></dt>
+<dd>Class that holds event arguments for a loadMetadata event.</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#loadManyToManyCollection()">loadManyToManyCollection()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Loads a collection of entities of a many-to-many association.</dd>
+<dt><a href="doctrine/orm/mapping/driver/annotationdriver.html#loadMetadataForClass()">loadMetadataForClass()</a> - Method in class <a href="doctrine/orm/mapping/driver/annotationdriver.html">Doctrine\ORM\Mapping\Driver\AnnotationDriver</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/mapping/driver/driver.html#loadMetadataForClass()">loadMetadataForClass()</a> - Method in class <a href="doctrine/orm/mapping/driver/driver.html">Doctrine\ORM\Mapping\Driver\Driver</a></dt>
+<dd>Loads the metadata for the specified class into the provided container.</dd>
+<dt><a href="doctrine/orm/mapping/driver/driverchain.html#loadMetadataForClass()">loadMetadataForClass()</a> - Method in class <a href="doctrine/orm/mapping/driver/driverchain.html">Doctrine\ORM\Mapping\Driver\DriverChain</a></dt>
+<dd>Loads the metadata for the specified class into the provided container.</dd>
+<dt><a href="doctrine/orm/mapping/driver/xmldriver.html#loadMetadataForClass()">loadMetadataForClass()</a> - Method in class <a href="doctrine/orm/mapping/driver/xmldriver.html">Doctrine\ORM\Mapping\Driver\XmlDriver</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/mapping/driver/yamldriver.html#loadMetadataForClass()">loadMetadataForClass()</a> - Method in class <a href="doctrine/orm/mapping/driver/yamldriver.html">Doctrine\ORM\Mapping\Driver\YamlDriver</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/mapping/driver/databasedriver.html#loadMetadataForClass()">loadMetadataForClass()</a> - Method in class <a href="doctrine/orm/mapping/driver/databasedriver.html">Doctrine\ORM\Mapping\Driver\DatabaseDriver</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/mapping/driver/phpdriver.html#loadMetadataForClass()">loadMetadataForClass()</a> - Method in class <a href="doctrine/orm/mapping/driver/phpdriver.html">Doctrine\ORM\Mapping\Driver\PhpDriver</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#loadOneToManyCollection()">loadOneToManyCollection()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Loads a collection of entities in a one-to-many association.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/locatefunction.html">LocateFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"LOCATE" "(" StringPrimary "," StringPrimary ["," SimpleArithmeticExpression]")"</dd>
+<dt><a href="doctrine/orm/optimisticlockexception.html#lockFailed()">lockFailed()</a> - Method in class <a href="doctrine/orm/optimisticlockexception.html">Doctrine\ORM\OptimisticLockException</a></dt>
+<dt><a href="doctrine/dbal/logging/sqllogger.html#logSQL()">logSQL()</a> - Method in class <a href="doctrine/dbal/logging/sqllogger.html">Doctrine\DBAL\Logging\SQLLogger</a></dt>
+<dd>Logs a SQL statement somewhere.</dd>
+<dt><a href="doctrine/dbal/logging/debugstack.html#logSQL()">logSQL()</a> - Method in class <a href="doctrine/dbal/logging/debugstack.html">Doctrine\DBAL\Logging\DebugStack</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/logging/echosqllogger.html#logSQL()">logSQL()</a> - Method in class <a href="doctrine/dbal/logging/echosqllogger.html">Doctrine\DBAL\Logging\EchoSQLLogger</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/query/expr.html#lower()">lower()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a LOWER() function expression with the given argument.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/lowerfunction.html">LowerFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"LOWER" "(" StringPrimary ")"</dd>
+<dt><a href="doctrine/orm/query/expr.html#lt()">lt()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of Expr\Comparison, with the given arguments.
+</dd>
+<dt><a href="doctrine/orm/query/expr.html#lte()">lte()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of Expr\Comparison, with the given arguments.
+</dd>
+</dl>
+<h1 id="letterM">M</h1>
+<dl>
+<dt><a href="doctrine/orm/mapping/manytomany.html">ManyToMany()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/manytomanymapping.html">ManyToManyMapping()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>A many-to-many mapping describes the mapping between two collections of
+entities.
+</dd>
+<dt><a href="doctrine/orm/persisters/manytomanypersister.html">ManyToManyPersister()</a> - Class in package <a href="doctrine/orm/persisters/package-summary.html">Doctrine\ORM\Persisters</a></dt>
+<dd>Persister for many-to-many collections.</dd>
+<dt><a href="doctrine/orm/mapping/manytoone.html">ManyToOne()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#map()">map()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#map()">map()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Applies the given function to each element in the collection and returns
+a new collection with the elements returned by the function.</dd>
+<dt><a href="doctrine/common/collections/collection.html#map()">map()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Applies the given function to each element in the collection and returns
+a new collection with the elements returned by the function.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#mapField()">mapField()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Adds a mapped field to the class.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#mapManyToMany()">mapManyToMany()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Adds a many-to-many mapping.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#mapManyToOne()">mapManyToOne()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Adds a many-to-one mapping.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#mapOneToMany()">mapOneToMany()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Adds a one-to-many mapping.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#mapOneToOne()">mapOneToOne()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Adds a one-to-one mapping.</dd>
+<dt><a href="doctrine/orm/mapping/mappedsuperclass.html">MappedSuperclass()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html">MappingException()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>A MappingException indicates that something is wrong with the mapping setup.</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#mappingFileNotFound()">mappingFileNotFound()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#mappingNotFound()">mappingNotFound()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/query/parser.html#match()">match()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Attempts to match the given token with the current lookahead token.
+</dd>
+<dt><a href="doctrine/orm/query/expr/math.html">Math()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Expression class for DQL math statements</dd>
+<dt><a href="doctrine/orm/query/expr.html#max()">max()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of MAX() function, with the given argument.</dd>
+<dt><a href="doctrine/common/cache/memcachecache.html">MemcacheCache()</a> - Class in package <a href="doctrine/common/cache/package-summary.html">Doctrine\Common\Cache</a></dt>
+<dd>Memcache cache driver.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#merge()">merge()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Merges the state of a detached entity into the persistence context
+of this EntityManager and returns the managed copy of the entity.
+</dd>
+<dt><a href="doctrine/orm/unitofwork.html#merge()">merge()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Merges the state of the given detached entity into this UnitOfWork.</dd>
+<dt><a href="doctrine/orm/ormexception.html#metadataCacheNotConfigured()">metadataCacheNotConfigured()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/tools/console/command/clearcache/metadatacommand.html">MetadataCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/clearcache/package-summary.html">Doctrine\ORM\Tools\Console\Command\ClearCache</a></dt>
+<dd>Command to clear the metadata cache of the various cache drivers.</dd>
+<dt><a href="doctrine/orm/tools/console/metadatafilter.html">MetadataFilter()</a> - Class in package <a href="doctrine/orm/tools/console/package-summary.html">Doctrine\ORM\Tools\Console</a></dt>
+<dd>Used by CLI Tools to restrict entity-based commands to given patterns.</dd>
+<dt><a href="doctrine/orm/query/expr.html#min()">min()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of MIN() function, with the given argument.</dd>
+<dt><a href="doctrine/orm/ormexception.html#mismatchedEventManager()">mismatchedEventManager()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#missingFieldName()">missingFieldName()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/ormexception.html#missingMappingDriverImpl()">missingMappingDriverImpl()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#missingRequiredOption()">missingRequiredOption()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dd>Called if a required option was not found but is required</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#missingSourceEntity()">missingSourceEntity()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#missingTargetEntity()">missingTargetEntity()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/query/ast/functions/modfunction.html">ModFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"MOD" "(" SimpleArithmeticExpression "," SimpleArithmeticExpression ")"</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#modifyLimitQuery()">modifyLimitQuery()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#modifyLimitQuery()">modifyLimitQuery()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Adds an adapter-specific LIMIT clause to the SELECT statement.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#modifyLimitQuery()">modifyLimitQuery()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Adds an driver-specific LIMIT clause to the query</dd>
+<dt><a href="doctrine/common/lexer.html#moveNext()">moveNext()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Moves to the next token in the input string.
+</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html">MsSqlPlatform()</a> - Class in package <a href="doctrine/dbal/platforms/package-summary.html">Doctrine\DBAL\Platforms</a></dt>
+<dd>The MsSqlPlatform provides the behavior, features and SQL dialect of the
+MySQL database platform.</dd>
+<dt><a href="doctrine/dbal/schema/mssqlschemamanager.html">MsSqlSchemaManager()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>xxx</dd>
+<dt><a href="doctrine/orm/query/exec/multitabledeleteexecutor.html">MultiTableDeleteExecutor()</a> - Class in package <a href="doctrine/orm/query/exec/package-summary.html">Doctrine\ORM\Query\Exec</a></dt>
+<dd>Executes the SQL statements for bulk DQL DELETE statements on classes in
+Class Table Inheritance (JOINED).</dd>
+<dt><a href="doctrine/orm/query/exec/multitableupdateexecutor.html">MultiTableUpdateExecutor()</a> - Class in package <a href="doctrine/orm/query/exec/package-summary.html">Doctrine\ORM\Query\Exec</a></dt>
+<dd>Executes the SQL statements for bulk DQL UPDATE statements on classes in
+Class Table Inheritance (JOINED).</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html">MySqlPlatform()</a> - Class in package <a href="doctrine/dbal/platforms/package-summary.html">Doctrine\DBAL\Platforms</a></dt>
+<dd>The MySqlPlatform provides the behavior, features and SQL dialect of the
+MySQL database platform. </dd>
+<dt><a href="doctrine/dbal/schema/mysqlschemamanager.html">MySqlSchemaManager()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Schema manager for the MySql RDBMS.</dd>
+<dt><a href="doctrine/dbal/event/listeners/mysqlsessioninit.html">MysqlSessionInit()</a> - Class in package <a href="doctrine/dbal/event/listeners/package-summary.html">Doctrine\DBAL\Event\Listeners</a></dt>
+<dd>MySQL Session Init Event Subscriber which allows to set the Client Encoding of the Connection</dd>
+</dl>
+<h1 id="letterN">N</h1>
+<dl>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#namedForeignKeyRequired()">namedForeignKeyRequired()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dt><a href="doctrine/orm/nativequery.html">NativeQuery()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>Represents a native SQL query.</dd>
+<dt><a href="doctrine/orm/query/expr.html#neq()">neq()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of Expr\Comparison, with the given arguments.
+</dd>
+<dt><a href="doctrine/orm/configuration.html#newDefaultAnnotationDriver()">newDefaultAnnotationDriver()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Add a new default annotation driver with a correctly configured annotation reader.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#newHydrator()">newHydrator()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Create a new instance for the given hydration mode.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#newInstance()">newInstance()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Creates a new instance of the mapped class, without invoking the constructor.</dd>
+<dt><a href="doctrine/orm/query/parser.html#NewValue()">NewValue()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>NewValue ::= SimpleArithmeticExpression | StringPrimary | DatetimePrimary | BooleanPrimary |
+EnumPrimary | SimpleEntityExpression | "NULL"
+
+NOTE: Since it is not possible to correctly recognize individual types, here is the full
+grammar that needs to be supported:
+
+NewValue ::= SimpleArithmeticExpression | "NULL"
+
+SimpleArithmeticExpression covers all *Primary grammar rules and also SimplEntityExpression</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#next()">next()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Moves the internal iterator position to the next element.</dd>
+<dt><a href="doctrine/common/collections/collection.html#next()">next()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Moves the internal iterator position to the next element.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#next()">next()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>Moves the internal iterator position to the next element.</dd>
+<dt><a href="doctrine/orm/internal/hydration/iterableresult.html#next()">next()</a> - Method in class <a href="doctrine/orm/internal/hydration/iterableresult.html">Doctrine\ORM\Internal\Hydration\IterableResult</a></dt>
+<dd>Gets the next set of results.</dd>
+<dt><a href="doctrine/dbal/connectionexception.html#noActiveTransaction()">noActiveTransaction()</a> - Method in class <a href="doctrine/dbal/connectionexception.html">Doctrine\DBAL\ConnectionException</a></dt>
+<dt><a href="doctrine/dbal/dbalexception.html#noColumnsSpecifiedForTable()">noColumnsSpecifiedForTable()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/node.html">Node()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Abstract class of an AST node</dd>
+<dt><a href="doctrine/orm/query/ast/astexception.html#noDispatchForNode()">noDispatchForNode()</a> - Method in class <a href="doctrine/orm/query/ast/astexception.html">Doctrine\ORM\Query\AST\ASTException</a></dt>
+<dt><a href="doctrine/orm/internal/hydration/hydrationexception.html#nonUniqueResult()">nonUniqueResult()</a> - Method in class <a href="doctrine/orm/internal/hydration/hydrationexception.html">Doctrine\ORM\Internal\Hydration\HydrationException</a></dt>
+<dt><a href="doctrine/orm/nonuniqueresultexception.html">NonUniqueResultException()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>Exception thrown when an ORM query unexpectedly returns more than one result.</dd>
+<dt><a href="doctrine/orm/noresultexception.html">NoResultException()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>Exception thrown when an ORM query unexpectedly does not return any results.</dd>
+<dt><a href="doctrine/orm/query/expr.html#not()">not()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a negation expression of the given restriction.</dd>
+<dt><a href="doctrine/common/notifypropertychanged.html">NotifyPropertyChanged()</a> - Interface in package <a href="doctrine/common/package-summary.html">Doctrine\Common</a></dt>
+<dd>Contract for classes that provide the service of notifying listeners of
+changes to their properties.</dd>
+<dt><a href="doctrine/orm/query/expr.html#notIn()">notIn()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a NOT IN() expression with the given arguments.</dd>
+<dt><a href="doctrine/orm/ormexception.html#notSupported()">notSupported()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/dbal/dbalexception.html#notSupported()">notSupported()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dt><a href="doctrine/orm/query/ast/nullcomparisonexpression.html">NullComparisonExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>NullComparisonExpression ::= (SingleValuedPathExpression | InputParameter) "IS" ["NOT"] "NULL"</dd>
+<dt><a href="doctrine/orm/query/parser.html#NullComparisonExpression()">NullComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>NullComparisonExpression ::= (SingleValuedPathExpression | InputParameter) "IS" ["NOT"] "NULL"</dd>
+</dl>
+<h1 id="letterO">O</h1>
+<dl>
+<dt><a href="doctrine/orm/internal/hydration/objecthydrator.html">ObjectHydrator()</a> - Class in package <a href="doctrine/orm/internal/hydration/package-summary.html">Doctrine\ORM\Internal\Hydration</a></dt>
+<dd>The ObjectHydrator constructs an object graph out of an SQL result set.</dd>
+<dt><a href="doctrine/dbal/types/objecttype.html">ObjectType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps a PHP object to a clob SQL type.</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html">OCI8Connection()</a> - Class in package <a href="doctrine/dbal/driver/oci8/package-summary.html">Doctrine\DBAL\Driver\OCI8</a></dt>
+<dd>OCI8 implementation of the Connection interface.</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8exception.html">OCI8Exception()</a> - Exception in package <a href="doctrine/dbal/driver/oci8/package-summary.html">Doctrine\DBAL\Driver\OCI8</a></dt>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html">OCI8Statement()</a> - Class in package <a href="doctrine/dbal/driver/oci8/package-summary.html">Doctrine\DBAL\Driver\OCI8</a></dt>
+<dd>The OCI8 implementation of the Statement interface.</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#offsetExists()">offsetExists()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>ArrayAccess implementation of offsetExists()</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#offsetExists()">offsetExists()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#offsetGet()">offsetGet()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>ArrayAccess implementation of offsetGet()</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#offsetGet()">offsetGet()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#offsetSet()">offsetSet()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>ArrayAccess implementation of offsetGet()</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#offsetSet()">offsetSet()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#offsetUnset()">offsetUnset()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>ArrayAccess implementation of offsetUnset()</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#offsetUnset()">offsetUnset()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html#onDelete()">onDelete()</a> - Method in class <a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></dt>
+<dd>Foreign Key onDelete status</dd>
+<dt><a href="doctrine/orm/mapping/onetomany.html">OneToMany()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/onetomanymapping.html">OneToManyMapping()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Represents a one-to-many mapping.
+</dd>
+<dt><a href="doctrine/orm/persisters/onetomanypersister.html">OneToManyPersister()</a> - Class in package <a href="doctrine/orm/persisters/package-summary.html">Doctrine\ORM\Persisters</a></dt>
+<dd>Persister for one-to-many collections.
+</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#oneToManyRequiresMappedBy()">oneToManyRequiresMappedBy()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/mapping/onetoone.html">OneToOne()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/onetoonemapping.html">OneToOneMapping()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>A one-to-one mapping describes a uni-directional mapping from one entity 
+to another entity.
+</dd>
+<dt><a href="doctrine/orm/event/onflusheventargs.html">OnFlushEventArgs()</a> - Class in package <a href="doctrine/orm/event/package-summary.html">Doctrine\ORM\Event</a></dt>
+<dd>Provides event arguments for the preFlush event.</dd>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html#onUpdate()">onUpdate()</a> - Method in class <a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></dt>
+<dd>Foreign Key onUpdate status</dd>
+<dt><a href="doctrine/orm/optimisticlockexception.html">OptimisticLockException()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>OptimisticLockException</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html">OraclePlatform()</a> - Class in package <a href="doctrine/dbal/platforms/package-summary.html">Doctrine\DBAL\Platforms</a></dt>
+<dd>OraclePlatform.</dd>
+<dt><a href="doctrine/dbal/schema/oracleschemamanager.html">OracleSchemaManager()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Oracle Schema Manager</dd>
+<dt><a href="doctrine/dbal/event/listeners/oraclesessioninit.html">OracleSessionInit()</a> - Class in package <a href="doctrine/dbal/event/listeners/package-summary.html">Doctrine\DBAL\Event\Listeners</a></dt>
+<dd>Should be used when Oracle Server default enviroment does not match the Doctrine requirements.
+</dd>
+<dt><a href="doctrine/orm/query/expr/orderby.html">OrderBy()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Expression class for building DQL Order By parts</dd>
+<dt><a href="doctrine/orm/querybuilder.html#orderBy()">orderBy()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Set the ORDER BY clause</dd>
+<dt><a href="doctrine/orm/mapping/orderby.html">OrderBy()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/query/parser.html#OrderByClause()">OrderByClause()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>OrderByClause ::= "ORDER" "BY" OrderByItem {"," OrderByItem}</dd>
+<dt><a href="doctrine/orm/query/ast/orderbyclause.html">OrderByClause()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>OrderByClause ::= "ORDER" "BY" OrderByItem {"," OrderByItem}</dd>
+<dt><a href="doctrine/orm/query/ast/orderbyitem.html">OrderByItem()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>OrderByItem ::= (ResultVariable | StateFieldPathExpression) ["ASC" | "DESC"]</dd>
+<dt><a href="doctrine/orm/query/parser.html#OrderByItem()">OrderByItem()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>OrderByItem ::= (ResultVariable | StateFieldPathExpression) ["ASC" | "DESC"]</dd>
+<dt><a href="doctrine/orm/querybuilder.html#orHaving()">orHaving()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add to the existing HAVING clause with an OR</dd>
+<dt><a href="doctrine/orm/ormexception.html">ORMException()</a> - Exception in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>Base exception class for all ORM exceptions.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#orWhere()">orWhere()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add a new WHERE statement with an OR
+
+[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.id = 1')
+->orWhere('u.id = 2');</dd>
+<dt><a href="doctrine/orm/query/expr/orx.html">Orx()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Expression class for building DQL OR clauses</dd>
+<dt><a href="doctrine/orm/query/expr.html#orX()">orX()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a disjunction of the given boolean expressions.
+</dd>
+<dt><a href="doctrine/dbal/types/type.html#overrideType()">overrideType()</a> - Method in class <a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a></dt>
+<dd>Overrides an already defined type to use a different implementation.</dd>
+<dt><a href="doctrine/orm/query/queryexception.html#overwritingJoinConditionsNotYetSupported()">overwritingJoinConditionsNotYetSupported()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+</dl>
+<h1 id="letterP">P</h1>
+<dl>
+<dt><a href="doctrine/orm/internal/hydration/hydrationexception.html#parentObjectOfRelationNotFound()">parentObjectOfRelationNotFound()</a> - Method in class <a href="doctrine/orm/internal/hydration/hydrationexception.html">Doctrine\ORM\Internal\Hydration\HydrationException</a></dt>
+<dt><a href="doctrine/orm/query/ast/functions/lowerfunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/lowerfunction.html">Doctrine\ORM\Query\AST\Functions\LowerFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/currenttimestampfunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/currenttimestampfunction.html">Doctrine\ORM\Query\AST\Functions\CurrentTimestampFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/currenttimefunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/currenttimefunction.html">Doctrine\ORM\Query\AST\Functions\CurrentTimeFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/lengthfunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/lengthfunction.html">Doctrine\ORM\Query\AST\Functions\LengthFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/modfunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/modfunction.html">Doctrine\ORM\Query\AST\Functions\ModFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/trimfunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/trimfunction.html">Doctrine\ORM\Query\AST\Functions\TrimFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/sizefunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/sizefunction.html">Doctrine\ORM\Query\AST\Functions\SizeFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/sqrtfunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/sqrtfunction.html">Doctrine\ORM\Query\AST\Functions\SqrtFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/locatefunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/locatefunction.html">Doctrine\ORM\Query\AST\Functions\LocateFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/concatfunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/concatfunction.html">Doctrine\ORM\Query\AST\Functions\ConcatFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/currentdatefunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/currentdatefunction.html">Doctrine\ORM\Query\AST\Functions\CurrentDateFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/upperfunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/upperfunction.html">Doctrine\ORM\Query\AST\Functions\UpperFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/absfunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/absfunction.html">Doctrine\ORM\Query\AST\Functions\AbsFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/substringfunction.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/substringfunction.html">Doctrine\ORM\Query\AST\Functions\SubstringFunction</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/ast/functions/functionnode.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/ast/functions/functionnode.html">Doctrine\ORM\Query\AST\Functions\FunctionNode</a></dt>
+<dt><a href="doctrine/orm/query/parser.html#parse()">parse()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Parses a query string.</dd>
+<dt><a href="doctrine/orm/query/parser.html">Parser()</a> - Class in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>An LL(*) recursive-descent parser for the context-free grammar of the Doctrine Query Language.
+</dd>
+<dt><a href="doctrine/common/annotations/parser.html">Parser()</a> - Class in package <a href="doctrine/common/annotations/package-summary.html">Doctrine\Common\Annotations</a></dt>
+<dd>A simple parser for docblock annotations.</dd>
+<dt><a href="doctrine/orm/query/parserresult.html">ParserResult()</a> - Class in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>Encapsulates the resulting components from a DQL query parsing process that
+can be serialized.</dd>
+<dt><a href="doctrine/orm/query/parser.html#PartialObjectExpression()">PartialObjectExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>PartialObjectExpression ::= "PARTIAL" IdentificationVariable "." PartialFieldSet
+PartialFieldSet ::= "{" SimpleStateField {"," SimpleStateField}* "}"</dd>
+<dt><a href="doctrine/orm/query/ast/partialobjectexpression.html">PartialObjectExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Abstract class of an AST node</dd>
+<dt><a href="doctrine/orm/query/queryexception.html#partialObjectsAreDangerous()">partialObjectsAreDangerous()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/common/collections/collection.html#partition()">partition()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Partitions this collection in two collections according to a predicate.
+</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#partition()">partition()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Partitions this collection in two collections according to a predicate.
+</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#partition()">partition()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/query/ast/pathexpression.html">PathExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>AssociationPathExpression ::= CollectionValuedPathExpression | SingleValuedAssociationPathExpression
+SingleValuedPathExpression ::= StateFieldPathExpression | SingleValuedAssociationPathExpression
+StateFieldPathExpression ::= SimpleStateFieldPathExpression | SimpleStateFieldAssociationPathExpression
+SingleValuedAssociationPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* SingleValuedAssociationField
+CollectionValuedPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* CollectionValuedAssociationField
+StateField ::= {EmbeddedClassStateField "."}* SimpleStateField
+SimpleStateFieldPathExpression ::= IdentificationVariable "." StateField
+SimpleStateFieldAssociationPathExpression ::= SingleValuedAssociationPathExpression "." StateField</dd>
+<dt><a href="doctrine/orm/query/parser.html#PathExpression()">PathExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Parses an arbitrary path expression and defers semantical validation
+based on expected types.
+</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#pathRequired()">pathRequired()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/dbal/driver/pdoconnection.html">PDOConnection()</a> - Class in package <a href="doctrine/dbal/driver/package-summary.html">Doctrine\DBAL\Driver</a></dt>
+<dd>PDO implementation of the Connection interface.
+</dd>
+<dt><a href="doctrine/dbal/driver/pdostatement.html">PDOStatement()</a> - Class in package <a href="doctrine/dbal/driver/package-summary.html">Doctrine\DBAL\Driver</a></dt>
+<dd>The PDO implementation of the Statement interface.
+</dd>
+<dt><a href="doctrine/common/lexer.html#peek()">peek()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Moves the lookahead token forward.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#persist()">persist()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Tells the EntityManager to make an instance managed and persistent.
+</dd>
+<dt><a href="doctrine/orm/unitofwork.html#persist()">persist()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Persists an entity as part of the current unit of work.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html">PersistentCollection()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>A PersistentCollection represents a collection of elements that have persistent state.
+</dd>
+<dt><a href="doctrine/orm/mapping/driver/phpdriver.html">PhpDriver()</a> - Class in package <a href="doctrine/orm/mapping/driver/package-summary.html">Doctrine\ORM\Mapping\Driver</a></dt>
+<dd>The PhpDriver includes php files which just populate ClassMetadataInfo
+instances with plain php code</dd>
+<dt><a href="doctrine/orm/tools/export/driver/phpexporter.html">PhpExporter()</a> - Class in package <a href="doctrine/orm/tools/export/driver/package-summary.html">Doctrine\ORM\Tools\Export\Driver</a></dt>
+<dd>ClassMetadata exporter for PHP code</dd>
+<dt><a href="doctrine/common/annotations/parser.html#PlainValue()">PlainValue()</a> - Method in class <a href="doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></dt>
+<dd>PlainValue ::= integer | string | float | boolean | Array | Annotation</dd>
+<dt><a href="doctrine/dbal/event/listeners/oraclesessioninit.html#postConnect()">postConnect()</a> - Method in class <a href="doctrine/dbal/event/listeners/oraclesessioninit.html">Doctrine\DBAL\Event\Listeners\OracleSessionInit</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/event/listeners/mysqlsessioninit.html#postConnect()">postConnect()</a> - Method in class <a href="doctrine/dbal/event/listeners/mysqlsessioninit.html">Doctrine\DBAL\Event\Listeners\MysqlSessionInit</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html">PostgreSqlPlatform()</a> - Class in package <a href="doctrine/dbal/platforms/package-summary.html">Doctrine\DBAL\Platforms</a></dt>
+<dd>PostgreSqlPlatform.</dd>
+<dt><a href="doctrine/dbal/schema/postgresqlschemamanager.html">PostgreSqlSchemaManager()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>xxx</dd>
+<dt><a href="doctrine/orm/mapping/postload.html">PostLoad()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/postpersist.html">PostPersist()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/postremove.html">PostRemove()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/postupdate.html">PostUpdate()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#prefersIdentityColumns()">prefersIdentityColumns()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#prefersIdentityColumns()">prefersIdentityColumns()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Whether the platform prefers identity columns (eg. </dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#prefersIdentityColumns()">prefersIdentityColumns()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Whether the platform prefers identity columns for ID generation.
+</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#prefersIdentityColumns()">prefersIdentityColumns()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Whether the platform prefers identity columns for ID generation.
+</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#prefersSequences()">prefersSequences()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Whether the platform prefers sequences for ID generation.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#prefersSequences()">prefersSequences()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Whether the platform prefers sequences for ID generation.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#prefersSequences()">prefersSequences()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Whether the platform prefers sequences for ID generation.
+</dd>
+<dt><a href="doctrine/dbal/driver/connection.html#prepare()">prepare()</a> - Method in class <a href="doctrine/dbal/driver/connection.html">Doctrine\DBAL\Driver\Connection</a></dt>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html#prepare()">prepare()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></dt>
+<dt><a href="doctrine/orm/mapping/prepersist.html">PrePersist()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/preremove.html">PreRemove()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/mapping/preupdate.html">PreUpdate()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/event/preupdateeventargs.html">PreUpdateEventArgs()</a> - Class in package <a href="doctrine/orm/event/package-summary.html">Doctrine\ORM\Event</a></dt>
+<dd>Class that holds event arguments for a preInsert/preUpdate event.</dd>
+<dt><a href="doctrine/orm/query/printer.html">Printer()</a> - Class in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>A parse tree printer for Doctrine Query Language parser.</dd>
+<dt><a href="doctrine/orm/query/printer.html#println()">println()</a> - Method in class <a href="doctrine/orm/query/printer.html">Doctrine\ORM\Query\Printer</a></dt>
+<dd>Prints text indented with spaces depending on current indentation level.</dd>
+<dt><a href="doctrine/orm/query/expr.html#prod()">prod()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a product mathematical expression with the given arguments.
+</dd>
+<dt><a href="doctrine/dbal/connection.html#project()">project()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Executes an, optionally parameterized, SQL query and returns the result,
+applying a given projection/transformation function on each row of the result.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#propertyChanged()">propertyChanged()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Notifies this UnitOfWork of a property change in an entity.</dd>
+<dt><a href="doctrine/common/propertychangedlistener.html#propertyChanged()">propertyChanged()</a> - Method in class <a href="doctrine/common/propertychangedlistener.html">Doctrine\Common\PropertyChangedListener</a></dt>
+<dd>Notifies the listener of a property change.</dd>
+<dt><a href="doctrine/common/propertychangedlistener.html">PropertyChangedListener()</a> - Interface in package <a href="doctrine/common/package-summary.html">Doctrine\Common</a></dt>
+<dd>Contract for classes that are potential listeners of a <tt>NotifyPropertyChanged</tt>
+implementor.</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#propertyTypeIsRequired()">propertyTypeIsRequired()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/proxy/proxy.html">Proxy()</a> - Interface in package <a href="doctrine/orm/proxy/package-summary.html">Doctrine\ORM\Proxy</a></dt>
+<dd>Interface for proxy classes.</dd>
+<dt><a href="doctrine/orm/ormexception.html#proxyClassesAlwaysRegenerating()">proxyClassesAlwaysRegenerating()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/proxy/proxyexception.html#proxyDirectoryRequired()">proxyDirectoryRequired()</a> - Method in class <a href="doctrine/orm/proxy/proxyexception.html">Doctrine\ORM\Proxy\ProxyException</a></dt>
+<dt><a href="doctrine/orm/proxy/proxyexception.html">ProxyException()</a> - Class in package <a href="doctrine/orm/proxy/package-summary.html">Doctrine\ORM\Proxy</a></dt>
+<dd>ORM Proxy Exception</dd>
+<dt><a href="doctrine/orm/proxy/proxyfactory.html">ProxyFactory()</a> - Class in package <a href="doctrine/orm/proxy/package-summary.html">Doctrine\ORM\Proxy</a></dt>
+<dd>This factory is used to create proxy objects for entities at runtime.</dd>
+<dt><a href="doctrine/orm/proxy/proxyexception.html#proxyNamespaceRequired()">proxyNamespaceRequired()</a> - Method in class <a href="doctrine/orm/proxy/proxyexception.html">Doctrine\ORM\Proxy\ProxyException</a></dt>
+</dl>
+<h1 id="letterQ">Q</h1>
+<dl>
+<dt><a href="doctrine/orm/query/ast/quantifiedexpression.html">QuantifiedExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>QuantifiedExpression ::= ("ALL" | "ANY" | "SOME") "(" Subselect ")"</dd>
+<dt><a href="doctrine/orm/query/parser.html#QuantifiedExpression()">QuantifiedExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>QuantifiedExpression ::= ("ALL" | "ANY" | "SOME") "(" Subselect ")"</dd>
+<dt><a href="doctrine/dbal/driver/connection.html#query()">query()</a> - Method in class <a href="doctrine/dbal/driver/connection.html">Doctrine\DBAL\Driver\Connection</a></dt>
+<dt><a href="doctrine/orm/query.html">Query()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>A Query object represents a DQL query.</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html#query()">query()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></dt>
+<dt><a href="doctrine/orm/querybuilder.html">QueryBuilder()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>This class is responsible for building DQL query strings via an object oriented
+PHP interface.</dd>
+<dt><a href="doctrine/orm/ormexception.html#queryCacheNotConfigured()">queryCacheNotConfigured()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/tools/console/command/clearcache/querycommand.html">QueryCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/clearcache/package-summary.html">Doctrine\ORM\Tools\Console\Command\ClearCache</a></dt>
+<dd>Command to clear the query cache of the various cache drivers.</dd>
+<dt><a href="doctrine/orm/query/queryexception.html">QueryException()</a> - Class in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>Description of QueryException</dd>
+<dt><a href="doctrine/orm/query/parser.html#QueryLanguage()">QueryLanguage()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>QueryLanguage ::= SelectStatement | UpdateStatement | DeleteStatement</dd>
+<dt><a href="doctrine/orm/query/expr.html#quot()">quot()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a quotient mathematical expression with the given arguments.
+</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html#quote()">quote()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></dt>
+<dt><a href="doctrine/dbal/driver/connection.html#quote()">quote()</a> - Method in class <a href="doctrine/dbal/driver/connection.html">Doctrine\DBAL\Driver\Connection</a></dt>
+<dt><a href="doctrine/dbal/connection.html#quoteIdentifier()">quoteIdentifier()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Quote a string so it can be safely used as a table or column name, even if
+it is a reserved name.
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#quoteIdentifier()">quoteIdentifier()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Quotes a string so that it can be safely used as a table or column name,
+even if it is a reserved word of the platform.
+</dd>
+</dl>
+<h1 id="letterR">R</h1>
+<dl>
+<dt><a href="doctrine/orm/query/parser.html#RangeVariableDeclaration()">RangeVariableDeclaration()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>RangeVariableDeclaration ::= AbstractSchemaName ["AS"] AliasIdentificationVariable</dd>
+<dt><a href="doctrine/orm/query/ast/rangevariabledeclaration.html">RangeVariableDeclaration()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>RangeVariableDeclaration ::= AbstractSchemaName ["AS"] AliasIdentificationVariable</dd>
+<dt><a href="doctrine/orm/unitofwork.html#recomputeSingleEntityChangeSet()">recomputeSingleEntityChangeSet()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Computes the changeset of an individual entity, independently of the
+computeChangeSets() routine that is used at the beginning of a UnitOfWork#commit().
+</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#reflectionFailure()">reflectionFailure()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dd>Exception for reflection exceptions - adds the entity name,
+because there might be long classnames that will be shortened
+within the stacktrace</dd>
+<dt><a href="doctrine/orm/unitofwork.html#refresh()">refresh()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Refreshes the state of the given entity from the database, overwriting
+any local, unpersisted changes.</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#refresh()">refresh()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Refreshes an entity.</dd>
+<dt><a href="doctrine/orm/entitymanager.html#refresh()">refresh()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Refreshes the persistent state of an entity from the database,
+overriding any local changes that have not yet been persisted.</dd>
+<dt><a href="doctrine/common/classloader.html#register()">register()</a> - Method in class <a href="doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></dt>
+<dd>Installs this class loader on the SPL autoload stack.</dd>
+<dt><a href="doctrine/orm/tools/export/classmetadataexporter.html#registerExportDriver()">registerExportDriver()</a> - Method in class <a href="doctrine/orm/tools/export/classmetadataexporter.html">Doctrine\ORM\Tools\Export\ClassMetadataExporter</a></dt>
+<dd>Register a new exporter driver class under a specified name</dd>
+<dt><a href="doctrine/orm/unitofwork.html#registerManaged()">registerManaged()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Registers an entity as managed.</dd>
+<dt><a href="doctrine/orm/tools/classmetadatareader.html#registerMappingDriver()">registerMappingDriver()</a> - Method in class <a href="doctrine/orm/tools/classmetadatareader.html">Doctrine\ORM\Tools\ClassMetadataReader</a></dt>
+<dd>Register a new mapping driver class under a specified name</dd>
+<dt><a href="doctrine/orm/unitofwork.html#remove()">remove()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Deletes an entity as part of the current unit of work.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#remove()">remove()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/entitymanager.html#remove()">remove()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Removes an entity instance.
+</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#remove()">remove()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Removes an element with a specific key/index from the collection.</dd>
+<dt><a href="doctrine/common/collections/collection.html#remove()">remove()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Removes the element at the specified index from the collection.</dd>
+<dt><a href="doctrine/orm/ormexception.html#removedEntityInCollectionDetected()">removedEntityInCollectionDetected()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/common/collections/collection.html#removeElement()">removeElement()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Removes an element from the collection.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#removeElement()">removeElement()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#removeElement()">removeElement()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Removes the specified element from the collection, if it is found.</dd>
+<dt><a href="doctrine/common/eventmanager.html#removeEventListener()">removeEventListener()</a> - Method in class <a href="doctrine/common/eventmanager.html">Doctrine\Common\EventManager</a></dt>
+<dd>Removes an event listener from the specified events.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#removeFromIdentityMap()">removeFromIdentityMap()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Removes an entity from the identity map. </dd>
+<dt><a href="doctrine/dbal/schema/table.html#renameColumn()">renameColumn()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Rename Column</dd>
+<dt><a href="doctrine/dbal/schema/schema.html#renameTable()">renameTable()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd>Rename a table</dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#renameTable()">renameTable()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Rename a given table to another name</dd>
+<dt><a href="doctrine/common/lexer.html#reset()">reset()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Resets the scanner</dd>
+<dt><a href="doctrine/common/lexer.html#resetPeek()">resetPeek()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Resets the peek pointer to 0</dd>
+<dt><a href="doctrine/common/lexer.html#resetPosition()">resetPosition()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Resets the lexer position on the input to the given position</dd>
+<dt><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html#resetQueries()">resetQueries()</a> - Method in class <a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/console/command/clearcache/resultcommand.html">ResultCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/clearcache/package-summary.html">Doctrine\ORM\Tools\Console\Command\ClearCache</a></dt>
+<dd>Command to clear the result cache of the various cache drivers.</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html">ResultSetMapping()</a> - Class in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>A ResultSetMapping describes how a result set of an SQL query maps to a Doctrine result.
+</dd>
+<dt><a href="doctrine/orm/query/parser.html#ResultVariable()">ResultVariable()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ResultVariable ::= identifier</dd>
+<dt><a href="doctrine/orm/internal/hydration/iterableresult.html#rewind()">rewind()</a> - Method in class <a href="doctrine/orm/internal/hydration/iterableresult.html">Doctrine\ORM\Internal\Hydration\IterableResult</a></dt>
+<dt><a href="doctrine/dbal/driver/connection.html#rollBack()">rollBack()</a> - Method in class <a href="doctrine/dbal/driver/connection.html">Doctrine\DBAL\Driver\Connection</a></dt>
+<dt><a href="doctrine/dbal/driver/pdomssql/connection.html#rollback()">rollback()</a> - Method in class <a href="doctrine/dbal/driver/pdomssql/connection.html">Doctrine\DBAL\Driver\PDOMsSql\Connection</a></dt>
+<dd>Performs the rollback.</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8connection.html#rollBack()">rollBack()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></dt>
+<dt><a href="doctrine/orm/entitymanager.html#rollback()">rollback()</a> - Method in class <a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></dt>
+<dd>Performs a rollback on the underlying database connection and closes the
+EntityManager as it may now be in a corrupted state.</dd>
+<dt><a href="doctrine/dbal/driver/oci8/oci8statement.html#rowCount()">rowCount()</a> - Method in class <a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/driver/statement.html#rowCount()">rowCount()</a> - Method in class <a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></dt>
+<dd>rowCount
+rowCount() returns the number of rows affected by the last DELETE, INSERT, or UPDATE statement 
+executed by the corresponding object.
+</dd>
+<dt><a href="doctrine/orm/tools/console/command/rundqlcommand.html">RunDqlCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/package-summary.html">Doctrine\ORM\Tools\Console\Command</a></dt>
+<dd>Command to execute DQL queries in a given EntityManager.</dd>
+<dt><a href="doctrine/dbal/tools/console/command/runsqlcommand.html">RunSqlCommand()</a> - Class in package <a href="doctrine/dbal/tools/console/command/package-summary.html">Doctrine\DBAL\Tools\Console\Command</a></dt>
+<dd>Task for executing arbitrary SQL that can come from a file or directly from
+the command line.</dd>
+</dl>
+<h1 id="letterS">S</h1>
+<dl>
+<dt><a href="doctrine/common/cache/abstractcache.html#save()">save()</a> - Method in class <a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/common/cache/cache.html#save()">save()</a> - Method in class <a href="doctrine/common/cache/cache.html">Doctrine\Common\Cache\Cache</a></dt>
+<dd>Puts data into the cache.</dd>
+<dt><a href="doctrine/orm/query/parser.html#ScalarExpression()">ScalarExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>ScalarExpression ::= SimpleArithmeticExpression | StringPrimary | DateTimePrimary |
+StateFieldPathExpression | BooleanPrimary | CaseExpression |
+EntityTypeExpression</dd>
+<dt><a href="doctrine/orm/internal/hydration/scalarhydrator.html">ScalarHydrator()</a> - Class in package <a href="doctrine/orm/internal/hydration/package-summary.html">Doctrine\ORM\Internal\Hydration</a></dt>
+<dd>Hydrator that produces flat, rectangular results of scalar data.
+</dd>
+<dt><a href="doctrine/orm/unitofwork.html#scheduleCollectionDeletion()">scheduleCollectionDeletion()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Schedules a complete collection for removal when this UnitOfWork commits.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#scheduleExtraUpdate()">scheduleExtraUpdate()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Schedules an extra update that will be executed immediately after the
+regular entity updates within the currently running commit cycle.
+</dd>
+<dt><a href="doctrine/orm/unitofwork.html#scheduleForDelete()">scheduleForDelete()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Schedules an entity for deletion.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#scheduleForDirtyCheck()">scheduleForDirtyCheck()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Schedules an entity for dirty-checking at commit-time.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#scheduleForInsert()">scheduleForInsert()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Schedules an entity for insertion into the database.
+</dd>
+<dt><a href="doctrine/orm/unitofwork.html#scheduleForUpdate()">scheduleForUpdate()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Schedules an entity for being updated.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#scheduleOrphanRemoval()">scheduleOrphanRemoval()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Schedules an orphaned entity for removal. </dd>
+<dt><a href="doctrine/dbal/schema/schema.html">Schema()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Object representation of a database schema</dd>
+<dt><a href="doctrine/dbal/schema/schemaconfig.html">SchemaConfig()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Configuration for a Schema</dd>
+<dt><a href="doctrine/dbal/schema/schemadiff.html">SchemaDiff()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Schema Diff</dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html">SchemaException()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dt><a href="doctrine/orm/tools/schematool.html">SchemaTool()</a> - Class in package <a href="doctrine/orm/tools/package-summary.html">Doctrine\ORM\Tools</a></dt>
+<dd>The SchemaTool is a tool to create/drop/update database schemas based on
+<tt>ClassMetadata</tt> class descriptors.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#select()">select()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Set the SELECT statement
+
+[php]
+$qb = $em->createQueryBuilder()
+->select('u', 'p')
+->from('User', 'u')
+->leftJoin('u.Phonenumbers', 'p');</dd>
+<dt><a href="doctrine/orm/query/expr/select.html">Select()</a> - Class in package <a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Expression class for building DQL select statements</dd>
+<dt><a href="doctrine/orm/query/parser.html#SelectClause()">SelectClause()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SelectClause ::= "SELECT" ["DISTINCT"] SelectExpression {"," SelectExpression}</dd>
+<dt><a href="doctrine/orm/query/ast/selectclause.html">SelectClause()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>SelectClause = "SELECT" ["DISTINCT"] SelectExpression {"," SelectExpression}</dd>
+<dt><a href="doctrine/orm/query/parser.html#SelectExpression()">SelectExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SelectExpression ::=
+IdentificationVariable | StateFieldPathExpression |
+(AggregateExpression | "(" Subselect ")" | ScalarExpression) [["AS"] AliasResultVariable]</dd>
+<dt><a href="doctrine/orm/query/ast/selectexpression.html">SelectExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>SelectExpression ::= IdentificationVariable ["." "*"] | StateFieldPathExpression |
+(AggregateExpression | "(" Subselect ")") [["AS"] FieldAliasIdentificationVariable]</dd>
+<dt><a href="doctrine/orm/query/ast/selectstatement.html">SelectStatement()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>SelectStatement = SelectClause FromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</dd>
+<dt><a href="doctrine/orm/query/parser.html#SelectStatement()">SelectStatement()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SelectStatement ::= SelectClause FromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</dd>
+<dt><a href="doctrine/orm/query/queryexception.html#semanticalError()">semanticalError()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/orm/query/parser.html#semanticalError()">semanticalError()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Generates a new semantical error.</dd>
+<dt><a href="doctrine/common/annotations/annotationexception.html#semanticalError()">semanticalError()</a> - Method in class <a href="doctrine/common/annotations/annotationexception.html">Doctrine\Common\Annotations\AnnotationException</a></dt>
+<dt><a href="doctrine/dbal/schema/sequence.html">Sequence()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Sequence Structure</dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#sequenceAlreadyExists()">sequenceAlreadyExists()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#sequenceDoesNotExist()">sequenceDoesNotExist()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/id/sequencegenerator.html">SequenceGenerator()</a> - Class in package <a href="doctrine/orm/id/package-summary.html">Doctrine\ORM\Id</a></dt>
+<dd>Represents an ID generator that uses a database sequence.</dd>
+<dt><a href="doctrine/orm/mapping/sequencegenerator.html">SequenceGenerator()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/id/sequenceidentitygenerator.html">SequenceIdentityGenerator()</a> - Class in package <a href="doctrine/orm/id/package-summary.html">Doctrine\ORM\Id</a></dt>
+<dt><a href="doctrine/orm/id/sequencegenerator.html#serialize()">serialize()</a> - Method in class <a href="doctrine/orm/id/sequencegenerator.html">Doctrine\ORM\Id\SequenceGenerator</a></dt>
+<dt><a href="doctrine/common/collections/arraycollection.html#set()">set()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Adds/sets an element in the collection at the index / with the specified key.
+</dd>
+<dt><a href="doctrine/common/collections/collection.html#set()">set()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Sets an element in the collection at the specified key/index.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#set()">set()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/querybuilder.html#set()">set()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Add a SET statement for a DQL UPDATE query
+
+[php]
+$qb = $em->createQueryBuilder()
+->update('User', 'u')
+->set('u.password', md5('password'))
+->where('u.id = ?');</dd>
+<dt><a href="doctrine/common/annotations/parser.html#setAnnotationNamespaceAlias()">setAnnotationNamespaceAlias()</a> - Method in class <a href="doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></dt>
+<dd>Sets an alias for an annotation namespace.</dd>
+<dt><a href="doctrine/common/annotations/annotationreader.html#setAnnotationNamespaceAlias()">setAnnotationNamespaceAlias()</a> - Method in class <a href="doctrine/common/annotations/annotationreader.html">Doctrine\Common\Annotations\AnnotationReader</a></dt>
+<dd>Sets an alias for an annotation namespace.</dd>
+<dt><a href="doctrine/orm/configuration.html#setAutoGenerateProxyClasses()">setAutoGenerateProxyClasses()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Sets a boolean flag that indicates whether proxy classes should always be regenerated
+during each script execution.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatafactory.html#setCacheDriver()">setCacheDriver()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatafactory.html">Doctrine\ORM\Mapping\ClassMetadataFactory</a></dt>
+<dd>Sets the cache driver used by the factory to cache ClassMetadata instances.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setChangeTrackingPolicy()">setChangeTrackingPolicy()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the change tracking policy used by this class.</dd>
+<dt><a href="doctrine/dbal/connection.html#setCharset()">setCharset()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Sets the given charset on the current connection.</dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#setClassToExtend()">setClassToExtend()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Set the name of the class the generated classes should extend from</dd>
+<dt><a href="doctrine/dbal/schema/column.html#setColumnDefinition()">setColumnDefinition()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/query/parser.html#setCustomOutputTreeWalker()">setCustomOutputTreeWalker()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Sets a custom tree walker that produces output.
+</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setCustomRepositoryClass()">setCustomRepositoryClass()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Registers a custom repository class for the entity class.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#setDefault()">setDefault()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/annotations/annotationreader.html#setDefaultAnnotationNamespace()">setDefaultAnnotationNamespace()</a> - Method in class <a href="doctrine/common/annotations/annotationreader.html">Doctrine\Common\Annotations\AnnotationReader</a></dt>
+<dd>Sets the default namespace that the AnnotationReader should assume for annotations
+with not fully qualified names.</dd>
+<dt><a href="doctrine/common/annotations/parser.html#setDefaultAnnotationNamespace()">setDefaultAnnotationNamespace()</a> - Method in class <a href="doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></dt>
+<dd>Sets the default namespace that is assumed for an annotation that does not
+define a namespace prefix.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#setDirty()">setDirty()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>Sets a boolean flag, indicating whether this collection is dirty.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setDiscriminatorColumn()">setDiscriminatorColumn()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the discriminator column definition.</dd>
+<dt><a href="doctrine/orm/query/resultsetmapping.html#setDiscriminatorColumn()">setDiscriminatorColumn()</a> - Method in class <a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></dt>
+<dd>Sets a discriminator column for an entity result or joined entity result.
+</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setDiscriminatorMap()">setDiscriminatorMap()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the discriminator values used by this class.
+</dd>
+<dt><a href="doctrine/orm/query.html#setDQL()">setDQL()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Sets a DQL query string.</dd>
+<dt><a href="doctrine/orm/tools/export/driver/annotationexporter.html#setEntityGenerator()">setEntityGenerator()</a> - Method in class <a href="doctrine/orm/tools/export/driver/annotationexporter.html">Doctrine\ORM\Tools\Export\Driver\AnnotationExporter</a></dt>
+<dt><a href="doctrine/orm/tools/export/classmetadataexporter.html#setEntityManager()">setEntityManager()</a> - Method in class <a href="doctrine/orm/tools/export/classmetadataexporter.html">Doctrine\ORM\Tools\Export\ClassMetadataExporter</a></dt>
+<dd>Optionally set the EntityManager instance to get the AnnotationDriver
+from instead of creating a new instance of the AnnotationDriver</dd>
+<dt><a href="doctrine/orm/tools/classmetadatareader.html#setEntityManager()">setEntityManager()</a> - Method in class <a href="doctrine/orm/tools/classmetadatareader.html">Doctrine\ORM\Tools\ClassMetadataReader</a></dt>
+<dd>Optionally set the EntityManager instance to get the AnnotationDriver
+from instead of creating a new instance of the AnnotationDriver</dd>
+<dt><a href="doctrine/orm/configuration.html#setEntityNamespaces()">setEntityNamespaces()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Set the entity alias map</dd>
+<dt><a href="doctrine/dbal/schema/schemaconfig.html#setExplicitForeignKeyIndexes()">setExplicitForeignKeyIndexes()</a> - Method in class <a href="doctrine/dbal/schema/schemaconfig.html">Doctrine\DBAL\Schema\SchemaConfig</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/export/driver/abstractexporter.html#setExtension()">setExtension()</a> - Method in class <a href="doctrine/orm/tools/export/driver/abstractexporter.html">Doctrine\ORM\Tools\Export\Driver\AbstractExporter</a></dt>
+<dd>Set the directory to output the mapping files to
+
+[php]
+$exporter = new YamlExporter($metadatas, __DIR__ . </dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#setExtension()">setExtension()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Set the extension to use when writing php files to disk</dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#setFieldValue()">setFieldValue()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Sets the specified field to the specified value on the given entity.</dd>
+<dt><a href="doctrine/common/classloader.html#setFileExtension()">setFileExtension()</a> - Method in class <a href="doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></dt>
+<dd>Sets the file extension of class files in the namespace of this class loader.</dd>
+<dt><a href="doctrine/orm/mapping/driver/annotationdriver.html#setFileExtension()">setFileExtension()</a> - Method in class <a href="doctrine/orm/mapping/driver/annotationdriver.html">Doctrine\ORM\Mapping\Driver\AnnotationDriver</a></dt>
+<dd>Set the file extension used to look for mapping files under</dd>
+<dt><a href="doctrine/orm/mapping/driver/abstractfiledriver.html#setFileExtension()">setFileExtension()</a> - Method in class <a href="doctrine/orm/mapping/driver/abstractfiledriver.html">Doctrine\ORM\Mapping\Driver\AbstractFileDriver</a></dt>
+<dd>Set the file extension used to look for mapping files under</dd>
+<dt><a href="doctrine/orm/querybuilder.html#setFirstResult()">setFirstResult()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Sets the position of the first result to retrieve (the "offset").</dd>
+<dt><a href="doctrine/orm/query.html#setFirstResult()">setFirstResult()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Sets the position of the first result to retrieve (the "offset").</dd>
+<dt><a href="doctrine/dbal/schema/column.html#setFixed()">setFixed()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#setGenerateAnnotations()">setGenerateAnnotations()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Set whether or not to generate annotations for the entity</dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#setGenerateStubMethods()">setGenerateStubMethods()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Set whether or not to generate stub methods for the entity</dd>
+<dt><a href="doctrine/orm/query.html#setHint()">setHint()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/abstractquery.html#setHint()">setHint()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Sets a query hint. </dd>
+<dt><a href="doctrine/orm/abstractquery.html#setHydrationMode()">setHydrationMode()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Defines the processing mode to be used during hydration / result set transformation.</dd>
+<dt><a href="doctrine/orm/query.html#setHydrationMode()">setHydrationMode()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setIdentifier()">setIdentifier()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>INTERNAL:
+Sets the mapped identifier/primary key fields of this class.
+</dd>
+<dt><a href="doctrine/orm/mapping/classmetadata.html#setIdentifierValues()">setIdentifierValues()</a> - Method in class <a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></dt>
+<dd>Populates the entity identifier of an entity.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setIdGenerator()">setIdGenerator()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the ID generator used to generate IDs for instances of this class.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setIdGeneratorType()">setIdGeneratorType()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the type of Id generator to use for the mapped class.</dd>
+<dt><a href="doctrine/dbal/schema/table.html#setIdGeneratorType()">setIdGeneratorType()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/classloader.html#setIncludePath()">setIncludePath()</a> - Method in class <a href="doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></dt>
+<dd>Sets the base include path for all class files in the namespace of this class loader.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setInheritanceType()">setInheritanceType()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the inheritance type used by the class and it's subclasses.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#setInitialized()">setInitialized()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>Sets the initialized flag of the collection, forcing it into that state.</dd>
+<dt><a href="doctrine/common/lexer.html#setInput()">setInput()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Inputs data to be tokenized</dd>
+<dt><a href="doctrine/dbal/schema/column.html#setLength()">setLength()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setLifecycleCallbacks()">setLifecycleCallbacks()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the lifecycle callbacks for entities of this class.
+</dd>
+<dt><a href="doctrine/dbal/schema/foreignkeyconstraint.html#setLocalTable()">setLocalTable()</a> - Method in class <a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/schemaconfig.html#setMaxIdentifierLength()">setMaxIdentifierLength()</a> - Method in class <a href="doctrine/dbal/schema/schemaconfig.html">Doctrine\DBAL\Schema\SchemaConfig</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/querybuilder.html#setMaxResults()">setMaxResults()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Sets the maximum number of results to retrieve (the "limit").</dd>
+<dt><a href="doctrine/orm/query.html#setMaxResults()">setMaxResults()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Sets the maximum number of results to retrieve (the "limit").</dd>
+<dt><a href="doctrine/common/cache/memcachecache.html#setMemcache()">setMemcache()</a> - Method in class <a href="doctrine/common/cache/memcachecache.html">Doctrine\Common\Cache\MemcacheCache</a></dt>
+<dd>Sets the memcache instance to use.</dd>
+<dt><a href="doctrine/orm/configuration.html#setMetadataCacheImpl()">setMetadataCacheImpl()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Sets the cache driver implementation that is used for metadata caching.</dd>
+<dt><a href="doctrine/orm/configuration.html#setMetadataDriverImpl()">setMetadataDriverImpl()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Sets the cache driver implementation that is used for metadata caching.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatafactory.html#setMetadataFor()">setMetadataFor()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatafactory.html">Doctrine\ORM\Mapping\ClassMetadataFactory</a></dt>
+<dd>Sets the metadata descriptor for a specific class.
+</dd>
+<dt><a href="doctrine/orm/tools/export/driver/abstractexporter.html#setMetadatas()">setMetadatas()</a> - Method in class <a href="doctrine/orm/tools/export/driver/abstractexporter.html">Doctrine\ORM\Tools\Export\Driver\AbstractExporter</a></dt>
+<dd>Set the array of ClassMetadataInfo instances to export</dd>
+<dt><a href="doctrine/common/cache/abstractcache.html#setNamespace()">setNamespace()</a> - Method in class <a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a></dt>
+<dd>Set the namespace to prefix all cache ids with.</dd>
+<dt><a href="doctrine/common/classloader.html#setNamespaceSeparator()">setNamespaceSeparator()</a> - Method in class <a href="doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></dt>
+<dd>Sets the namespace separator used by classes in the namespace of this class loader.</dd>
+<dt><a href="doctrine/orm/event/preupdateeventargs.html#setNewValue()">setNewValue()</a> - Method in class <a href="doctrine/orm/event/preupdateeventargs.html">Doctrine\ORM\Event\PreUpdateEventArgs</a></dt>
+<dd>Set the new value of this field.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#setNotnull()">setNotnull()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#setNumSpaces()">setNumSpaces()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Set the number of spaces the exported class should have</dd>
+<dt><a href="doctrine/dbal/schema/column.html#setOptions()">setOptions()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/unitofwork.html#setOriginalEntityData()">setOriginalEntityData()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/unitofwork.html#setOriginalEntityProperty()">setOriginalEntityProperty()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Sets a property value of the original data array of an entity.</dd>
+<dt><a href="doctrine/orm/tools/export/driver/abstractexporter.html#setOutputDir()">setOutputDir()</a> - Method in class <a href="doctrine/orm/tools/export/driver/abstractexporter.html">Doctrine\ORM\Tools\Export\Driver\AbstractExporter</a></dt>
+<dd>Set the directory to output the mapping files to
+
+[php]
+$exporter = new YamlExporter($metadatas);
+$exporter->setOutputDir(__DIR__ . </dd>
+<dt><a href="doctrine/orm/persistentcollection.html#setOwner()">setOwner()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>INTERNAL:
+Sets the collection's owning entity together with the AssociationMapping that
+describes the association between the owner and the elements of the collection.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#setParameter()">setParameter()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Sets a query parameter.
+</dd>
+<dt><a href="doctrine/orm/abstractquery.html#setParameter()">setParameter()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Sets a query parameter.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#setParameters()">setParameters()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Sets a collection of query parameters.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#setParameters()">setParameters()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Sets a collection of query parameters.
+</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setParentClasses()">setParentClasses()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the parent class names.
+</dd>
+<dt><a href="doctrine/dbal/schema/column.html#setPlatformOption()">setPlatformOption()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/column.html#setPlatformOptions()">setPlatformOptions()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/column.html#setPrecision()">setPrecision()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/table.html#setPrimaryKey()">setPrimaryKey()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd>Set Primary Key</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setPrimaryTable()">setPrimaryTable()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the primary table definition. </dd>
+<dt><a href="doctrine/orm/configuration.html#setProxyDir()">setProxyDir()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Sets the directory where Doctrine generates any necessary proxy class files.</dd>
+<dt><a href="doctrine/orm/configuration.html#setProxyNamespace()">setProxyNamespace()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Sets the namespace where proxy classes reside.</dd>
+<dt><a href="doctrine/orm/query.html#setQueryCacheDriver()">setQueryCacheDriver()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Defines a cache driver to be used for caching queries.</dd>
+<dt><a href="doctrine/orm/configuration.html#setQueryCacheImpl()">setQueryCacheImpl()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Sets the cache driver implementation that is used for the query cache (SQL cache).</dd>
+<dt><a href="doctrine/orm/query.html#setQueryCacheLifetime()">setQueryCacheLifetime()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Defines how long the query cache will be active before expire.</dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#setRegenerateEntityIfExists()">setRegenerateEntityIfExists()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Set whether or not to regenerate the entity if it exists</dd>
+<dt><a href="doctrine/orm/abstractquery.html#setResultCacheDriver()">setResultCacheDriver()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Defines a cache driver to be used for caching result sets.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#setResultCacheId()">setResultCacheId()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Set the result cache id to use to store the result set cache entry.
+</dd>
+<dt><a href="doctrine/orm/configuration.html#setResultCacheImpl()">setResultCacheImpl()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Sets the cache driver implementation that is used for query result caching.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#setResultCacheLifetime()">setResultCacheLifetime()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Defines how long the result cache will be active before expire.</dd>
+<dt><a href="doctrine/orm/query/parserresult.html#setResultSetMapping()">setResultSetMapping()</a> - Method in class <a href="doctrine/orm/query/parserresult.html">Doctrine\ORM\Query\ParserResult</a></dt>
+<dd>Sets the ResultSetMapping of the parsed query.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#setResultSetMapping()">setResultSetMapping()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Sets the ResultSetMapping that should be used for hydration.</dd>
+<dt><a href="doctrine/dbal/connection.html#setRollbackOnly()">setRollbackOnly()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Marks the current transaction so that the only possible
+outcome for the transaction to be rolled back.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#setScale()">setScale()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/table.html#setSchemaConfig()">setSchemaConfig()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setSequenceGeneratorDefinition()">setSequenceGeneratorDefinition()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the definition of the sequence ID generator for this class.
+</dd>
+<dt><a href="doctrine/orm/nativequery.html#setSQL()">setSQL()</a> - Method in class <a href="doctrine/orm/nativequery.html">Doctrine\ORM\NativeQuery</a></dt>
+<dd>Sets the SQL of the query.</dd>
+<dt><a href="doctrine/orm/query/parserresult.html#setSqlExecutor()">setSqlExecutor()</a> - Method in class <a href="doctrine/orm/query/parserresult.html">Doctrine\ORM\Query\ParserResult</a></dt>
+<dd>Sets the SQL executor that should be used for this ParserResult.</dd>
+<dt><a href="doctrine/dbal/configuration.html#setSQLLogger()">setSQLLogger()</a> - Method in class <a href="doctrine/dbal/configuration.html">Doctrine\DBAL\Configuration</a></dt>
+<dd>Sets the SQL logger to use. </dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#setSqlTableAlias()">setSqlTableAlias()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Forces the SqlWalker to use a specific alias for a table name, rather than
+generating an alias on its own.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setSubclasses()">setSubclasses()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the mapped subclasses of this class.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setTableName()">setTableName()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the name of the primary table the class is mapped to.</dd>
+<dt><a href="doctrine/dbal/connection.html#setTransactionIsolation()">setTransactionIsolation()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Sets the transaction isolation level.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#setType()">setType()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/column.html#setUnsigned()">setUnsigned()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#setUpdateEntityIfExists()">setUpdateEntityIfExists()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Set whether or not to try and update the entity if it already exists</dd>
+<dt><a href="doctrine/orm/configuration.html#setUseCExtension()">setUseCExtension()</a> - Method in class <a href="doctrine/orm/configuration.html">Doctrine\ORM\Configuration</a></dt>
+<dd>Sets a boolean flag that indicates whether Doctrine should make use of the
+C extension.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setVersioned()">setVersioned()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets whether this class is to be versioned for optimistic locking.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setVersionField()">setVersionField()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the name of the field that is to be used for versioning if this class is
+versioned for optimistic locking.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#setVersionMapping()">setVersionMapping()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Sets the version field mapping used for versioning. </dd>
+<dt><a href="doctrine/orm/mapping/onetomanymapping.html#shouldDeleteOrphans()">shouldDeleteOrphans()</a> - Method in class <a href="doctrine/orm/mapping/onetomanymapping.html">Doctrine\ORM\Mapping\OneToManyMapping</a></dt>
+<dd>Whether orphaned elements (removed from the collection) should be deleted.</dd>
+<dt><a href="doctrine/orm/query/ast/simplearithmeticexpression.html">SimpleArithmeticExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>SimpleArithmeticExpression ::= ArithmeticTerm {("+" | "-") ArithmeticTerm}</dd>
+<dt><a href="doctrine/orm/query/parser.html#SimpleArithmeticExpression()">SimpleArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SimpleArithmeticExpression ::= ArithmeticTerm {("+" | "-") ArithmeticTerm}</dd>
+<dt><a href="doctrine/orm/query/parser.html#SimpleConditionalExpression()">SimpleConditionalExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SimpleConditionalExpression ::=
+ComparisonExpression | BetweenExpression | LikeExpression |
+InExpression | NullComparisonExpression | ExistsExpression |
+EmptyCollectionComparisonExpression | CollectionMemberExpression</dd>
+<dt><a href="doctrine/orm/query/parser.html#SimpleEntityExpression()">SimpleEntityExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SimpleEntityExpression ::= IdentificationVariable | InputParameter</dd>
+<dt><a href="doctrine/orm/query/ast/simpleselectclause.html">SimpleSelectClause()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>SimpleSelectClause  ::= "SELECT" ["DISTINCT"] SimpleSelectExpression</dd>
+<dt><a href="doctrine/orm/query/parser.html#SimpleSelectClause()">SimpleSelectClause()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SimpleSelectClause ::= "SELECT" ["DISTINCT"] SimpleSelectExpression</dd>
+<dt><a href="doctrine/orm/query/ast/simpleselectexpression.html">SimpleSelectExpression()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>SimpleSelectExpression ::= StateFieldPathExpression | IdentificationVariable
+| (AggregateExpression [["AS"] FieldAliasIdentificationVariable])</dd>
+<dt><a href="doctrine/orm/query/parser.html#SimpleSelectExpression()">SimpleSelectExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SimpleSelectExpression ::= StateFieldPathExpression | IdentificationVariable | (AggregateExpression [["AS"] AliasResultVariable])</dd>
+<dt><a href="doctrine/orm/query/parser.html#SimpleStateFieldPathExpression()">SimpleStateFieldPathExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SimpleStateFieldPathExpression ::= IdentificationVariable "." StateField</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#singleIdNotAllowedOnCompositePrimaryKey()">singleIdNotAllowedOnCompositePrimaryKey()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/internal/hydration/singlescalarhydrator.html">SingleScalarHydrator()</a> - Class in package <a href="doctrine/orm/internal/hydration/package-summary.html">Doctrine\ORM\Internal\Hydration</a></dt>
+<dd>Hydrator that hydrates a single scalar value from the result set.</dd>
+<dt><a href="doctrine/orm/query/exec/singleselectexecutor.html">SingleSelectExecutor()</a> - Class in package <a href="doctrine/orm/query/exec/package-summary.html">Doctrine\ORM\Query\Exec</a></dt>
+<dd>Executor that executes the SQL statement for simple DQL SELECT statements.</dd>
+<dt><a href="doctrine/orm/query/exec/singletabledeleteupdateexecutor.html">SingleTableDeleteUpdateExecutor()</a> - Class in package <a href="doctrine/orm/query/exec/package-summary.html">Doctrine\ORM\Query\Exec</a></dt>
+<dd>Executor that executes the SQL statements for DQL DELETE/UPDATE statements on classes
+that are mapped to a single table.</dd>
+<dt><a href="doctrine/orm/persisters/singletablepersister.html">SingleTablePersister()</a> - Class in package <a href="doctrine/orm/persisters/package-summary.html">Doctrine\ORM\Persisters</a></dt>
+<dd>Persister for entities that participate in a hierarchy mapped with the
+SINGLE_TABLE strategy.</dd>
+<dt><a href="doctrine/orm/query/parser.html#SingleValuedAssociationPathExpression()">SingleValuedAssociationPathExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SingleValuedAssociationPathExpression ::= IdentificationVariable "." {SingleValuedAssociationField "."}* SingleValuedAssociationField</dd>
+<dt><a href="doctrine/orm/query/parser.html#SingleValuedPathExpression()">SingleValuedPathExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SingleValuedPathExpression ::= StateFieldPathExpression | SingleValuedAssociationPathExpression</dd>
+<dt><a href="doctrine/orm/unitofwork.html#size()">size()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Calculates the size of the UnitOfWork. </dd>
+<dt><a href="doctrine/orm/query/ast/functions/sizefunction.html">SizeFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"SIZE" "(" CollectionValuedPathExpression ")"</dd>
+<dt><a href="doctrine/common/lexer.html#skipUntil()">skipUntil()</a> - Method in class <a href="doctrine/common/lexer.html">Doctrine\Common\Lexer</a></dt>
+<dd>Tells the lexer to skip input tokens until it sees a token with the given value.</dd>
+<dt><a href="doctrine/dbal/types/smallinttype.html">SmallIntType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps a database SMALLINT to a PHP integer.</dd>
+<dt><a href="doctrine/orm/query/expr.html#some()">some()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a SOME() function expression with the given DQL subquery.</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html">SqlitePlatform()</a> - Class in package <a href="doctrine/dbal/platforms/package-summary.html">Doctrine\DBAL\Platforms</a></dt>
+<dd>The SqlitePlatform class describes the specifics and dialects of the SQLite
+database platform.</dd>
+<dt><a href="doctrine/dbal/schema/sqliteschemamanager.html">SqliteSchemaManager()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>SqliteSchemaManager</dd>
+<dt><a href="doctrine/dbal/logging/sqllogger.html">SQLLogger()</a> - Interface in package <a href="doctrine/dbal/logging/package-summary.html">Doctrine\DBAL\Logging</a></dt>
+<dd>Interface for SQL loggers.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html">SqlWalker()</a> - Class in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>The SqlWalker is a TreeWalker that walks over a DQL AST and constructs
+the corresponding SQL.</dd>
+<dt><a href="doctrine/orm/query/expr.html#sqrt()">sqrt()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a SQRT() function expression with the given argument.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/sqrtfunction.html">SqrtFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"SQRT" "(" SimpleArithmeticExpression ")"</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html">StandardEntityPersister()</a> - Class in package <a href="doctrine/orm/persisters/package-summary.html">Doctrine\ORM\Persisters</a></dt>
+<dd>A basic entity persister that maps an entity with no (mapped) inheritance to a single table
+in the relational database.</dd>
+<dt><a href="doctrine/orm/query/printer.html#startProduction()">startProduction()</a> - Method in class <a href="doctrine/orm/query/printer.html">Doctrine\ORM\Query\Printer</a></dt>
+<dd>Prints an opening parenthesis followed by production name and increases
+indentation level by one.
+</dd>
+<dt><a href="doctrine/orm/query/parser.html#StateFieldPathExpression()">StateFieldPathExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>StateFieldPathExpression ::= SimpleStateFieldPathExpression | SimpleStateFieldAssociationPathExpression</dd>
+<dt><a href="doctrine/dbal/statement.html">Statement()</a> - Class in package <a href="doctrine/dbal/package-summary.html">Doctrine\DBAL</a></dt>
+<dd>A thin wrapper around a Doctrine\DBAL\Driver\Statement that adds support
+for logging, DBAL mapping types, etc.</dd>
+<dt><a href="doctrine/dbal/driver/statement.html">Statement()</a> - Interface in package <a href="doctrine/dbal/driver/package-summary.html">Doctrine\DBAL\Driver</a></dt>
+<dd>Statement interface.
+</dd>
+<dt><a href="doctrine/orm/query/parser.html#StringExpression()">StringExpression()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>StringExpression ::= StringPrimary | "(" Subselect ")"</dd>
+<dt><a href="doctrine/orm/query/parser.html#StringPrimary()">StringPrimary()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>StringPrimary ::= StateFieldPathExpression | string | InputParameter | FunctionsReturningStrings | AggregateExpression</dd>
+<dt><a href="doctrine/dbal/types/stringtype.html">StringType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps an SQL VARCHAR to a PHP string.</dd>
+<dt><a href="doctrine/orm/query/parser.html#Subselect()">Subselect()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Subselect ::= SimpleSelectClause SubselectFromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</dd>
+<dt><a href="doctrine/orm/query/ast/subselect.html">Subselect()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>Subselect ::= SimpleSelectClause SubselectFromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]</dd>
+<dt><a href="doctrine/orm/query/parser.html#SubselectFromClause()">SubselectFromClause()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SubselectFromClause ::= "FROM" SubselectIdentificationVariableDeclaration {"," SubselectIdentificationVariableDeclaration}</dd>
+<dt><a href="doctrine/orm/query/ast/subselectfromclause.html">SubselectFromClause()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>SubselectFromClause ::= "FROM" SubselectIdentificationVariableDeclaration {"," SubselectIdentificationVariableDeclaration}</dd>
+<dt><a href="doctrine/orm/query/parser.html#SubselectIdentificationVariableDeclaration()">SubselectIdentificationVariableDeclaration()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>SubselectIdentificationVariableDeclaration ::= IdentificationVariableDeclaration | (AssociationPathExpression ["AS"] AliasIdentificationVariable)</dd>
+<dt><a href="doctrine/orm/query/expr.html#substring()">substring()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a SUBSTRING() function expression with the given arguments.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/substringfunction.html">SubstringFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"SUBSTRING" "(" StringPrimary "," SimpleArithmeticExpression "," SimpleArithmeticExpression ")"</dd>
+<dt><a href="doctrine/orm/query/expr.html#sum()">sum()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates a sum mathematical expression with the given arguments.
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsAlterTable()">supportsAlterTable()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#supportsAlterTable()">supportsAlterTable()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#supportsForeignKeyConstraints()">supportsForeignKeyConstraints()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>SQLite does support foreign key constraints, but only in CREATE TABLE statements...
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyConstraints()">supportsForeignKeyConstraints()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Does the platform supports foreign key constraints?</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Does this platform supports onUpdate in foreign key constraints?</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsForeignKeyOnUpdate()">supportsForeignKeyOnUpdate()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Does this platform supports onUpdate in foreign key constraints?</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsGettingAffectedRows()">supportsGettingAffectedRows()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Whether the platform supports getting the affected rows of a recent
+update/delete type query.</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#supportsIdentityColumns()">supportsIdentityColumns()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Whether the platform supports identity columns.
+</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#supportsIdentityColumns()">supportsIdentityColumns()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Whether the platform supports identity columns.
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsIdentityColumns()">supportsIdentityColumns()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Whether the platform supports identity columns.
+</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#supportsIdentityColumns()">supportsIdentityColumns()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Whether the platform supports identity columns.
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsIndexes()">supportsIndexes()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Whether the platform supports indexes.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsPrimaryConstraints()">supportsPrimaryConstraints()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Whether the platform supports primary key constraints.</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#supportsSavepoints()">supportsSavepoints()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Whether the platform supports savepoints. </dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsSavepoints()">supportsSavepoints()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Whether the platform supports savepoints.</dd>
+<dt><a href="doctrine/dbal/platforms/mysqlplatform.html#supportsSavepoints()">supportsSavepoints()</a> - Method in class <a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></dt>
+<dd>Whether the platform supports savepoints. </dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#supportsSchemas()">supportsSchemas()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Whether the platform supports database schemas.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsSchemas()">supportsSchemas()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Whether the platform supports database schemas.</dd>
+<dt><a href="doctrine/dbal/platforms/oracleplatform.html#supportsSequences()">supportsSequences()</a> - Method in class <a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></dt>
+<dd>Whether the platform supports sequences.</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsSequences()">supportsSequences()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Whether the platform supports sequences.</dd>
+<dt><a href="doctrine/dbal/platforms/postgresqlplatform.html#supportsSequences()">supportsSequences()</a> - Method in class <a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></dt>
+<dd>Whether the platform supports sequences.
+</dd>
+<dt><a href="doctrine/dbal/platforms/abstractplatform.html#supportsTransactions()">supportsTransactions()</a> - Method in class <a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a></dt>
+<dd>Whether the platform supports transactions.</dd>
+<dt><a href="doctrine/orm/query/queryexception.html#syntaxError()">syntaxError()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/common/annotations/annotationexception.html#syntaxError()">syntaxError()</a> - Method in class <a href="doctrine/common/annotations/annotationexception.html">Doctrine\Common\Annotations\AnnotationException</a></dt>
+<dt><a href="doctrine/orm/query/parser.html#syntaxError()">syntaxError()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>Generates a new syntax error.</dd>
+</dl>
+<h1 id="letterT">T</h1>
+<dl>
+<dt><a href="doctrine/dbal/schema/table.html">Table()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Object Representation of a table</dd>
+<dt><a href="doctrine/orm/mapping/table.html">Table()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#tableAlreadyExists()">tableAlreadyExists()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/tablediff.html">TableDiff()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Table Diff</dd>
+<dt><a href="doctrine/dbal/schema/schemaexception.html#tableDoesNotExist()">tableDoesNotExist()</a> - Method in class <a href="doctrine/dbal/schema/schemaexception.html">Doctrine\DBAL\Schema\SchemaException</a></dt>
+<dd></dd>
+<dt><a href="doctrine/orm/id/tablegenerator.html">TableGenerator()</a> - Class in package <a href="doctrine/orm/id/package-summary.html">Doctrine\ORM\Id</a></dt>
+<dd>Id generator that uses a single-row database table and a hi/lo algorithm.</dd>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#tableIdGeneratorNotImplemented()">tableIdGeneratorNotImplemented()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/common/util/inflector.html#tableize()">tableize()</a> - Method in class <a href="doctrine/common/util/inflector.html">Doctrine\Common\Util\Inflector</a></dt>
+<dd>Convert word in to the format for a Doctrine table name. </dd>
+<dt><a href="doctrine/orm/persistentcollection.html#takeSnapshot()">takeSnapshot()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>INTERNAL:
+Tells this collection to take a snapshot of its current state.</dd>
+<dt><a href="doctrine/dbal/types/texttype.html">TextType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps an SQL CLOB to a PHP string.</dd>
+<dt><a href="doctrine/dbal/types/timetype.html">TimeType()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>Type that maps an SQL TIME to a PHP DateTime object.</dd>
+<dt><a href="doctrine/dbal/schema/column.html#toArray()">toArray()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/collections/arraycollection.html#toArray()">toArray()</a> - Method in class <a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></dt>
+<dd>Gets the PHP array representation of this collection.</dd>
+<dt><a href="doctrine/common/collections/collection.html#toArray()">toArray()</a> - Method in class <a href="doctrine/common/collections/collection.html">Doctrine\Common\Collections\Collection</a></dt>
+<dd>Gets a native PHP array representation of the collection.</dd>
+<dt><a href="doctrine/orm/persistentcollection.html#toArray()">toArray()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/dbal/schema/schema.html#toDropSql()">toDropSql()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd>Return an array of necessary sql queries to drop the schema on the given platform.</dd>
+<dt><a href="doctrine/orm/tools/toolevents.html">ToolEvents()</a> - Class in package <a href="doctrine/orm/tools/package-summary.html">Doctrine\ORM\Tools</a></dt>
+<dt><a href="doctrine/orm/tools/toolsexception.html">ToolsException()</a> - Class in package <a href="doctrine/orm/tools/package-summary.html">Doctrine\ORM\Tools</a></dt>
+<dd>Base exception class for all ORM exceptions.</dd>
+<dt><a href="doctrine/dbal/schema/schemadiff.html#toSaveSql()">toSaveSql()</a> - Method in class <a href="doctrine/dbal/schema/schemadiff.html">Doctrine\DBAL\Schema\SchemaDiff</a></dt>
+<dd>The to save sql mode ensures that the following things don't happen:
+
+1. </dd>
+<dt><a href="doctrine/dbal/schema/schemadiff.html#toSql()">toSql()</a> - Method in class <a href="doctrine/dbal/schema/schemadiff.html">Doctrine\DBAL\Schema\SchemaDiff</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/schema.html#toSql()">toSql()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd>Return an array of necessary sql queries to create the schema on the given platform.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html">TreeWalker()</a> - Interface in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>Interface for walkers of DQL ASTs (abstract syntax trees).</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html">TreeWalkerAdapter()</a> - Class in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>An adapter implementation of the TreeWalker interface. </dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html">TreeWalkerChain()</a> - Class in package <a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></dt>
+<dd>Represents a chain of tree walkers that modify an AST and finally emit output.
+</dd>
+<dt><a href="doctrine/orm/query/expr.html#trim()">trim()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an instance of TRIM() function, with the given argument.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/trimfunction.html">TrimFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"TRIM" "(" [["LEADING" | "TRAILING" | "BOTH"] [char] "FROM"] StringPrimary ")"</dd>
+<dt><a href="doctrine/orm/unitofwork.html#tryGetById()">tryGetById()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>Tries to find an entity with the given identifier in the identity map of
+this UnitOfWork.</dd>
+<dt><a href="doctrine/orm/unitofwork.html#tryGetByIdHash()">tryGetByIdHash()</a> - Method in class <a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></dt>
+<dd>INTERNAL:
+Tries to get an entity by its identifier hash. </dd>
+<dt><a href="doctrine/dbal/schema/abstractschemamanager.html#tryMethod()">tryMethod()</a> - Method in class <a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a></dt>
+<dd>Try any method on the schema manager. </dd>
+<dt><a href="doctrine/dbal/types/type.html">Type()</a> - Class in package <a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></dt>
+<dd>The base class for so-called Doctrine mapping types.
+</dd>
+<dt><a href="doctrine/dbal/dbalexception.html#typeExists()">typeExists()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dt><a href="doctrine/dbal/dbalexception.html#typeNotFound()">typeNotFound()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+</dl>
+<h1 id="letterU">U</h1>
+<dl>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#udfLocate()">udfLocate()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#udfMod()">udfMod()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>User-defined function for Sqlite that implements MOD(a, b)</dd>
+<dt><a href="doctrine/dbal/platforms/sqliteplatform.html#udfSqrt()">udfSqrt()</a> - Method in class <a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></dt>
+<dd>User-defined function for Sqlite that is used with PDO::sqliteCreateFunction()</dd>
+<dt><a href="doctrine/orm/persisters/unionsubclasspersister.html">UnionSubclassPersister()</a> - Class in package <a href="doctrine/orm/persisters/package-summary.html">Doctrine\ORM\Persisters</a></dt>
+<dd>A basic entity persister that maps an entity with no (mapped) inheritance to a single table
+in the relational database.</dd>
+<dt><a href="doctrine/orm/mapping/uniqueconstraint.html">UniqueConstraint()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/orm/unitofwork.html">UnitOfWork()</a> - Class in package <a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></dt>
+<dd>The UnitOfWork is responsible for tracking changes to objects during an
+"object-level" transaction and for writing out changes to the database
+in the correct order.</dd>
+<dt><a href="doctrine/dbal/dbalexception.html#unknownColumnType()">unknownColumnType()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dt><a href="doctrine/dbal/dbalexception.html#unknownDriver()">unknownDriver()</a> - Method in class <a href="doctrine/dbal/dbalexception.html">Doctrine\DBAL\DBALException</a></dt>
+<dt><a href="doctrine/orm/ormexception.html#unknownEntityNamespace()">unknownEntityNamespace()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/orm/query/queryexception.html#unknownParameter()">unknownParameter()</a> - Method in class <a href="doctrine/orm/query/queryexception.html">Doctrine\ORM\Query\QueryException</a></dt>
+<dt><a href="doctrine/orm/ormexception.html#unrecognizedField()">unrecognizedField()</a> - Method in class <a href="doctrine/orm/ormexception.html">Doctrine\ORM\ORMException</a></dt>
+<dt><a href="doctrine/common/classloader.html#unregister()">unregister()</a> - Method in class <a href="doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></dt>
+<dd>Uninstalls this class loader on the SPL autoload stack.</dd>
+<dt><a href="doctrine/orm/id/sequencegenerator.html#unserialize()">unserialize()</a> - Method in class <a href="doctrine/orm/id/sequencegenerator.html">Doctrine\ORM\Id\SequenceGenerator</a></dt>
+<dt><a href="doctrine/orm/mapping/mappingexception.html#unsupportedOptimisticLockingType()">unsupportedOptimisticLockingType()</a> - Method in class <a href="doctrine/orm/mapping/mappingexception.html">Doctrine\ORM\Mapping\MappingException</a></dt>
+<dt><a href="doctrine/orm/persistentcollection.html#unwrap()">unwrap()</a> - Method in class <a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></dt>
+<dd>Retrieves the wrapped Collection instance.</dd>
+<dt><a href="doctrine/dbal/connection.html#update()">update()</a> - Method in class <a href="doctrine/dbal/connection.html">Doctrine\DBAL\Connection</a></dt>
+<dd>Executes an SQL UPDATE statement on a table.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#update()">update()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Construct a DQL UPDATE query
+
+[php]
+$qb = $em->createQueryBuilder()
+->update('User', 'u')
+->set('u.password', md5('password'))
+->where('u.id = ?');</dd>
+<dt><a href="doctrine/orm/persisters/joinedsubclasspersister.html#update()">update()</a> - Method in class <a href="doctrine/orm/persisters/joinedsubclasspersister.html">Doctrine\ORM\Persisters\JoinedSubclassPersister</a></dt>
+<dd>{@inheritdoc}</dd>
+<dt><a href="doctrine/orm/persisters/standardentitypersister.html#update()">update()</a> - Method in class <a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a></dt>
+<dd>Updates an entity.</dd>
+<dt><a href="doctrine/orm/persisters/abstractcollectionpersister.html#update()">update()</a> - Method in class <a href="doctrine/orm/persisters/abstractcollectionpersister.html">Doctrine\ORM\Persisters\AbstractCollectionPersister</a></dt>
+<dd>Updates the given collection, synchronizing it's state with the database
+by inserting, updating and deleting individual elements.</dd>
+<dt><a href="doctrine/orm/query/parser.html#UpdateClause()">UpdateClause()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>UpdateClause ::= "UPDATE" AbstractSchemaName ["AS"] AliasIdentificationVariable "SET" UpdateItem {"," UpdateItem}</dd>
+<dt><a href="doctrine/orm/query/ast/updateclause.html">UpdateClause()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>UpdateClause ::= "UPDATE" AbstractSchemaName [["AS"] AliasIdentificationVariable] "SET" UpdateItem {"," UpdateItem}</dd>
+<dt><a href="doctrine/orm/tools/console/command/schematool/updatecommand.html">UpdateCommand()</a> - Class in package <a href="doctrine/orm/tools/console/command/schematool/package-summary.html">Doctrine\ORM\Tools\Console\Command\SchemaTool</a></dt>
+<dd>Command to update the database schema for a set of classes based on their mappings.</dd>
+<dt><a href="doctrine/orm/query/parser.html#UpdateItem()">UpdateItem()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>UpdateItem ::= IdentificationVariable "." {StateField | SingleValuedAssociationField} "=" NewValue</dd>
+<dt><a href="doctrine/orm/query/ast/updateitem.html">UpdateItem()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>UpdateItem ::= [IdentificationVariable "."] {StateField | SingleValuedAssociationField} "=" NewValue
+NewValue ::= SimpleArithmeticExpression | StringPrimary | DatetimePrimary | BooleanPrimary |
+EnumPrimary | SimpleEntityExpression | "NULL"</dd>
+<dt><a href="doctrine/orm/tools/schematool.html#updateSchema()">updateSchema()</a> - Method in class <a href="doctrine/orm/tools/schematool.html">Doctrine\ORM\Tools\SchemaTool</a></dt>
+<dd>Updates the database schema of the given classes by comparing the ClassMetadata
+instances to the current database schema that is inspected.</dd>
+<dt><a href="doctrine/orm/query/ast/updatestatement.html">UpdateStatement()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>UpdateStatement = UpdateClause [WhereClause]</dd>
+<dt><a href="doctrine/orm/query/parser.html#UpdateStatement()">UpdateStatement()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>UpdateStatement ::= UpdateClause [WhereClause]</dd>
+<dt><a href="doctrine/orm/query/expr.html#upper()">upper()</a> - Method in class <a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></dt>
+<dd>Creates an UPPER() function expression with the given argument.</dd>
+<dt><a href="doctrine/orm/query/ast/functions/upperfunction.html">UpperFunction()</a> - Class in package <a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></dt>
+<dd>"UPPER" "(" StringPrimary ")"</dd>
+<dt><a href="doctrine/orm/query.html#useQueryCache()">useQueryCache()</a> - Method in class <a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></dt>
+<dd>Defines whether the query should make use of a query cache, if available.</dd>
+<dt><a href="doctrine/orm/abstractquery.html#useResultCache()">useResultCache()</a> - Method in class <a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a></dt>
+<dd>Set whether or not to cache the results of this query and if so, for
+how long and which ID to use for the cache entry.</dd>
+<dt><a href="doctrine/orm/mapping/classmetadatainfo.html#usesIdGenerator()">usesIdGenerator()</a> - Method in class <a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a></dt>
+<dd>Checks whether the mapped class uses an Id generator.</dd>
+<dt><a href="doctrine/orm/mapping/associationmapping.html#usesJoinTable()">usesJoinTable()</a> - Method in class <a href="doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a></dt>
+<dd>Whether the association uses a join table for the mapping.</dd>
+</dl>
+<h1 id="letterV">V</h1>
+<dl>
+<dt><a href="doctrine/orm/internal/hydration/iterableresult.html#valid()">valid()</a> - Method in class <a href="doctrine/orm/internal/hydration/iterableresult.html">Doctrine\ORM\Internal\Hydration\IterableResult</a></dt>
+<dd></dd>
+<dt><a href="doctrine/common/annotations/parser.html#Value()">Value()</a> - Method in class <a href="doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></dt>
+<dd>Value ::= PlainValue | FieldAssignment</dd>
+<dt><a href="doctrine/common/annotations/parser.html#Values()">Values()</a> - Method in class <a href="doctrine/common/annotations/parser.html">Doctrine\Common\Annotations\Parser</a></dt>
+<dd>Values ::= Array | Value {"," Value}</dd>
+<dt><a href="doctrine/orm/mapping/version.html">Version()</a> - Class in package <a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></dt>
+<dd>Annotations class</dd>
+<dt><a href="doctrine/common/version.html">Version()</a> - Class in package <a href="doctrine/common/package-summary.html">Doctrine\Common</a></dt>
+<dd>Class to store and retrieve the version of Doctrine</dd>
+<dt><a href="doctrine/dbal/schema/view.html">View()</a> - Class in package <a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></dt>
+<dd>Representation of a Database View</dd>
+<dt><a href="doctrine/dbal/schema/table.html#visit()">visit()</a> - Method in class <a href="doctrine/dbal/schema/table.html">Doctrine\DBAL\Schema\Table</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/schema.html#visit()">visit()</a> - Method in class <a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/column.html#visit()">visit()</a> - Method in class <a href="doctrine/dbal/schema/column.html">Doctrine\DBAL\Schema\Column</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/sequence.html#visit()">visit()</a> - Method in class <a href="doctrine/dbal/schema/sequence.html">Doctrine\DBAL\Schema\Sequence</a></dt>
+<dd></dd>
+<dt><a href="doctrine/dbal/schema/visitor/visitor.html">Visitor()</a> - Interface in package <a href="doctrine/dbal/schema/visitor/package-summary.html">Doctrine\DBAL\Schema\Visitor</a></dt>
+<dd>Schema Visitor used for Validation or Generation purposes.</dd>
+</dl>
+<h1 id="letterW">W</h1>
+<dl>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkAggregateExpression()">walkAggregateExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkAggregateExpression()">walkAggregateExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkAggregateExpression()">walkAggregateExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkAggregateExpression()">walkAggregateExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an AggregateExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkArithmeticExpression()">walkArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkArithmeticExpression()">walkArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkArithmeticExpression()">walkArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkArithmeticExpression()">walkArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an ArithmeticExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkArithmeticFactor()">walkArithmeticFactor()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkArithmeticFactor()">walkArithmeticFactor()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkArithmeticFactor()">walkArithmeticFactor()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkArithmeticFactor()">walkArithmeticFactor()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an ArithmeticFactor that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkArithmeticTerm()">walkArithmeticTerm()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkArithmeticTerm()">walkArithmeticTerm()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkArithmeticTerm()">walkArithmeticTerm()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkArithmeticTerm()">walkArithmeticTerm()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an ArithmeticTerm AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkBetweenExpression()">walkBetweenExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkBetweenExpression()">walkBetweenExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkBetweenExpression()">walkBetweenExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkBetweenExpression()">walkBetweenExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a BetweenExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkCollectionMemberExpression()">walkCollectionMemberExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkCollectionMemberExpression()">walkCollectionMemberExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkCollectionMemberExpression()">walkCollectionMemberExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkCollectionMemberExpression()">walkCollectionMemberExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a CollectionMemberExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkComparisonExpression()">walkComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkComparisonExpression()">walkComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkComparisonExpression()">walkComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkComparisonExpression()">walkComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a ComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkConditionalFactor()">walkConditionalFactor()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkConditionalFactor()">walkConditionalFactor()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkConditionalFactor()">walkConditionalFactor()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkConditionalFactor()">walkConditionalFactor()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a ConditionalFactor AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkConditionalTerm()">walkConditionalTerm()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkConditionalTerm()">walkConditionalTerm()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkConditionalTerm()">walkConditionalTerm()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkConditionalTerm()">walkConditionalTerm()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a ConditionalTerm AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkDeleteClause()">walkDeleteClause()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkDeleteClause()">walkDeleteClause()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkDeleteClause()">walkDeleteClause()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkDeleteClause()">walkDeleteClause()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a DeleteClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkDeleteStatement()">walkDeleteStatement()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkDeleteStatement()">walkDeleteStatement()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkDeleteStatement()">walkDeleteStatement()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkDeleteStatement()">walkDeleteStatement()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a DeleteStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkEmptyCollectionComparisonExpression()">walkEmptyCollectionComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an EmptyCollectionComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkExistsExpression()">walkExistsExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkExistsExpression()">walkExistsExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkExistsExpression()">walkExistsExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkExistsExpression()">walkExistsExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an ExistsExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkFromClause()">walkFromClause()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a FromClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkFromClause()">walkFromClause()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a FromClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkFromClause()">walkFromClause()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a FromClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkFromClause()">walkFromClause()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a FromClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkFunction()">walkFunction()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkFunction()">walkFunction()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkFunction()">walkFunction()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkFunction()">walkFunction()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a FunctionNode AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkGroupByClause()">walkGroupByClause()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkGroupByClause()">walkGroupByClause()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkGroupByClause()">walkGroupByClause()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkGroupByClause()">walkGroupByClause()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a GroupByClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkGroupByItem()">walkGroupByItem()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkGroupByItem()">walkGroupByItem()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkGroupByItem()">walkGroupByItem()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkGroupByItem()">walkGroupByItem()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a GroupByItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkHavingClause()">walkHavingClause()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a HavingClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkHavingClause()">walkHavingClause()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a HavingClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkHavingClause()">walkHavingClause()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a HavingClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkHavingClause()">walkHavingClause()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a HavingClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkIdentificationVariable()">walkIdentificationVariable()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an IdentificationVariable (no AST node associated), thereby generating the SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkInExpression()">walkInExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an InExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkInExpression()">walkInExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an InExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkInExpression()">walkInExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an InExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkInExpression()">walkInExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an InExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkInParameter()">walkInParameter()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkInputParameter()">walkInputParameter()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an InputParameter AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkInputParameter()">walkInputParameter()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an InputParameter AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkInputParameter()">walkInputParameter()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an InputParameter AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkInputParameter()">walkInputParameter()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an InputParameter AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkJoinVariableDeclaration()">walkJoinVariableDeclaration()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkJoinVariableDeclaration()">walkJoinVariableDeclaration()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkJoinVariableDeclaration()">walkJoinVariableDeclaration()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkJoinVariableDeclaration()">walkJoinVariableDeclaration()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a JoinVariableDeclaration AST node and creates the corresponding SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkLikeExpression()">walkLikeExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkLikeExpression()">walkLikeExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkLikeExpression()">walkLikeExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkLikeExpression()">walkLikeExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a LikeExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkLiteral()">walkLiteral()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkLiteral()">walkLiteral()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkLiteral()">walkLiteral()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkLiteral()">walkLiteral()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a literal that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkNullComparisonExpression()">walkNullComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkNullComparisonExpression()">walkNullComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkNullComparisonExpression()">walkNullComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkNullComparisonExpression()">walkNullComparisonExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a NullComparisonExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkOrderByClause()">walkOrderByClause()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkOrderByClause()">walkOrderByClause()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkOrderByClause()">walkOrderByClause()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkOrderByClause()">walkOrderByClause()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an OrderByClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkOrderByItem()">walkOrderByItem()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkOrderByItem()">walkOrderByItem()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkOrderByItem()">walkOrderByItem()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkOrderByItem()">walkOrderByItem()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an OrderByItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkPathExpression()">walkPathExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a PathExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkPathExpression()">walkPathExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an PathExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkPathExpression()">walkPathExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an PathExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkPathExpression()">walkPathExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an PathExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkQuantifiedExpression()">walkQuantifiedExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkQuantifiedExpression()">walkQuantifiedExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkQuantifiedExpression()">walkQuantifiedExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkQuantifiedExpression()">walkQuantifiedExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a QuantifiedExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkSelectClause()">walkSelectClause()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a SelectClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkSelectClause()">walkSelectClause()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a SelectClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkSelectClause()">walkSelectClause()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a SelectClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkSelectClause()">walkSelectClause()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a SelectClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkSelectExpression()">walkSelectExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a SelectExpression AST node and generates the corresponding SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkSelectExpression()">walkSelectExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a SelectExpression AST node and generates the corresponding SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkSelectExpression()">walkSelectExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a SelectExpression AST node and generates the corresponding SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkSelectExpression()">walkSelectExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a SelectExpression AST node and generates the corresponding SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkSelectStatement()">walkSelectStatement()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkSelectStatement()">walkSelectStatement()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkSelectStatement()">walkSelectStatement()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkSelectStatement()">walkSelectStatement()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a SelectStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkSimpleArithmeticExpression()">walkSimpleArithmeticExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an SimpleArithmeticExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkSimpleSelectClause()">walkSimpleSelectClause()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkSimpleSelectClause()">walkSimpleSelectClause()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkSimpleSelectClause()">walkSimpleSelectClause()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkSimpleSelectClause()">walkSimpleSelectClause()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a SimpleSelectClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkSimpleSelectExpression()">walkSimpleSelectExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkSimpleSelectExpression()">walkSimpleSelectExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkSimpleSelectExpression()">walkSimpleSelectExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkSimpleSelectExpression()">walkSimpleSelectExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a SimpleSelectExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkStateFieldPathExpression()">walkStateFieldPathExpression()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkStateFieldPathExpression()">walkStateFieldPathExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkStateFieldPathExpression()">walkStateFieldPathExpression()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkStateFieldPathExpression()">walkStateFieldPathExpression()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a StateFieldPathExpression AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkStringPrimary()">walkStringPrimary()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkStringPrimary()">walkStringPrimary()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkStringPrimary()">walkStringPrimary()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkStringPrimary()">walkStringPrimary()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a StringPrimary that represents an AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkSubselect()">walkSubselect()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a Subselect AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkSubselect()">walkSubselect()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a Subselect AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkSubselect()">walkSubselect()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a Subselect AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkSubselect()">walkSubselect()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a Subselect AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkSubselectFromClause()">walkSubselectFromClause()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkSubselectFromClause()">walkSubselectFromClause()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkSubselectFromClause()">walkSubselectFromClause()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkSubselectFromClause()">walkSubselectFromClause()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a SubselectFromClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkUpdateClause()">walkUpdateClause()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkUpdateClause()">walkUpdateClause()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkUpdateClause()">walkUpdateClause()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkUpdateClause()">walkUpdateClause()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an UpdateClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkUpdateItem()">walkUpdateItem()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkUpdateItem()">walkUpdateItem()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkUpdateItem()">walkUpdateItem()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkUpdateItem()">walkUpdateItem()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an UpdateItem AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkUpdateStatement()">walkUpdateStatement()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkUpdateStatement()">walkUpdateStatement()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkUpdateStatement()">walkUpdateStatement()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkUpdateStatement()">walkUpdateStatement()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down an UpdateStatement AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/sqlwalker.html#walkWhereClause()">walkWhereClause()</a> - Method in class <a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></dt>
+<dd>Walks down a WhereClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkeradapter.html#walkWhereClause()">walkWhereClause()</a> - Method in class <a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></dt>
+<dd>Walks down a WhereClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalker.html#walkWhereClause()">walkWhereClause()</a> - Method in class <a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></dt>
+<dd>Walks down a WhereClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/query/treewalkerchain.html#walkWhereClause()">walkWhereClause()</a> - Method in class <a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></dt>
+<dd>Walks down a WhereClause AST node, thereby generating the appropriate SQL.</dd>
+<dt><a href="doctrine/orm/querybuilder.html#where()">where()</a> - Method in class <a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></dt>
+<dd>Set and override any existing WHERE statements
+
+[php]
+$qb = $em->createQueryBuilder()
+->select('u')
+->from('User', 'u')
+->where('u.id = ?');
+
+You can optionally programatically build and/or expressions
+$qb = $em->createQueryBuilder();
+
+$or = $qb->expr()->orx();
+$or->add($qb->expr()->eq('u.id', 1));
+$or->add($qb->expr()->eq('u.id', 2));
+
+$qb->update('User', 'u')
+->set('u.password', md5('password'))
+->where($or);</dd>
+<dt><a href="doctrine/orm/query/parser.html#WhereClause()">WhereClause()</a> - Method in class <a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></dt>
+<dd>WhereClause ::= "WHERE" ConditionalExpression</dd>
+<dt><a href="doctrine/orm/query/ast/whereclause.html">WhereClause()</a> - Class in package <a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></dt>
+<dd>WhereClause ::= "WHERE" ConditionalExpression</dd>
+<dt><a href="doctrine/orm/tools/entitygenerator.html#writeEntityClass()">writeEntityClass()</a> - Method in class <a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></dt>
+<dd>Generated and write entity class to disk for the given ClassMetadataInfo instance</dd>
+<dt><a href="doctrine/dbal/platforms/mssqlplatform.html#writeLimitClause()">writeLimitClause()</a> - Method in class <a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></dt>
+<dd>Adds an adapter-specific LIMIT clause to the SELECT statement.
+</dd>
+</dl>
+<h1 id="letterX">X</h1>
+<dl>
+<dt><a href="doctrine/common/cache/xcachecache.html">XcacheCache()</a> - Class in package <a href="doctrine/common/cache/package-summary.html">Doctrine\Common\Cache</a></dt>
+<dd>Xcache cache driver.</dd>
+<dt><a href="doctrine/orm/mapping/driver/xmldriver.html">XmlDriver()</a> - Class in package <a href="doctrine/orm/mapping/driver/package-summary.html">Doctrine\ORM\Mapping\Driver</a></dt>
+<dd>XmlDriver is a metadata driver that enables mapping through XML files.</dd>
+<dt><a href="doctrine/orm/tools/export/driver/xmlexporter.html">XmlExporter()</a> - Class in package <a href="doctrine/orm/tools/export/driver/package-summary.html">Doctrine\ORM\Tools\Export\Driver</a></dt>
+<dd>ClassMetadata exporter for Doctrine XML mapping files</dd>
+</dl>
+<h1 id="letterY">Y</h1>
+<dl>
+<dt><a href="doctrine/orm/mapping/driver/yamldriver.html">YamlDriver()</a> - Class in package <a href="doctrine/orm/mapping/driver/package-summary.html">Doctrine\ORM\Mapping\Driver</a></dt>
+<dd>The YamlDriver reads the mapping metadata from yaml schema files.</dd>
+<dt><a href="doctrine/orm/tools/export/driver/yamlexporter.html">YamlExporter()</a> - Class in package <a href="doctrine/orm/tools/export/driver/package-summary.html">Doctrine\ORM\Tools\Export\Driver</a></dt>
+<dd>ClassMetadata exporter for Doctrine YAML mapping files</dd>
+</dl>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="overview-summary.html">Overview</a></li>
+<li>Namespace</li><li>Class</li><li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li class="active">Index</li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="index.html" target="_top">Frames</a>
+<a href="index-all.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/index.html b/lib/api/index.html
new file mode 100644
index 000000000..81217425e
--- /dev/null
+++ b/lib/api/index.html
@@ -0,0 +1,35 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="stylesheet.css">
+<link rel="start" href="overview-summary.html">
+
+<title>Doctrine</title>
+
+</head>
+		
+<frameset cols="20%,80%">
+
+<frameset rows="30%,70%">
+
+<frame src="overview-frame.html" name="packagelist">
+<frame src="allitems-frame.html" name="index">
+
+</frameset>
+
+<frame src="overview-summary.html" name="main">
+
+<noframes>
+    <body>
+        <h2>Frame Alert</h2>
+        <p>This document is designed to be viewed using frames. If you see this message, you are using a non-frame-capable browser.<br>
+        Link to <a href="overview-summary.html">Non-frame version</a>.</p>
+    </body>
+</noframes>
+
+</frameset></html>
\ No newline at end of file
diff --git a/lib/api/overview-frame.html b/lib/api/overview-frame.html
new file mode 100644
index 000000000..9022bd93e
--- /dev/null
+++ b/lib/api/overview-frame.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="stylesheet.css">
+<link rel="start" href="overview-summary.html">
+
+<title>Overview (Doctrine)</title>
+
+</head>
+<body id="frame">
+
+<h1>Doctrine</h1>
+
+<ul>
+<li><a href="allitems-frame.html" target="index">All Items</a></li>
+</ul>
+
+<h1>Namespaces</h1>
+
+<ul>
+<li><a href="doctrine/common/package-frame.html" target="index">Doctrine\Common</a></li>
+<li><a href="doctrine/common/annotations/package-frame.html" target="index">Doctrine\Common\Annotations</a></li>
+<li><a href="doctrine/common/cache/package-frame.html" target="index">Doctrine\Common\Cache</a></li>
+<li><a href="doctrine/common/collections/package-frame.html" target="index">Doctrine\Common\Collections</a></li>
+<li><a href="doctrine/common/util/package-frame.html" target="index">Doctrine\Common\Util</a></li>
+<li><a href="doctrine/dbal/package-frame.html" target="index">Doctrine\DBAL</a></li>
+<li><a href="doctrine/dbal/driver/package-frame.html" target="index">Doctrine\DBAL\Driver</a></li>
+<li><a href="doctrine/dbal/driver/oci8/package-frame.html" target="index">Doctrine\DBAL\Driver\OCI8</a></li>
+<li><a href="doctrine/dbal/driver/pdomssql/package-frame.html" target="index">Doctrine\DBAL\Driver\PDOMsSql</a></li>
+<li><a href="doctrine/dbal/driver/pdomysql/package-frame.html" target="index">Doctrine\DBAL\Driver\PDOMySql</a></li>
+<li><a href="doctrine/dbal/driver/pdooracle/package-frame.html" target="index">Doctrine\DBAL\Driver\PDOOracle</a></li>
+<li><a href="doctrine/dbal/driver/pdopgsql/package-frame.html" target="index">Doctrine\DBAL\Driver\PDOPgSql</a></li>
+<li><a href="doctrine/dbal/driver/pdosqlite/package-frame.html" target="index">Doctrine\DBAL\Driver\PDOSqlite</a></li>
+<li><a href="doctrine/dbal/event/package-frame.html" target="index">Doctrine\DBAL\Event</a></li>
+<li><a href="doctrine/dbal/event/listeners/package-frame.html" target="index">Doctrine\DBAL\Event\Listeners</a></li>
+<li><a href="doctrine/dbal/logging/package-frame.html" target="index">Doctrine\DBAL\Logging</a></li>
+<li><a href="doctrine/dbal/platforms/package-frame.html" target="index">Doctrine\DBAL\Platforms</a></li>
+<li><a href="doctrine/dbal/schema/package-frame.html" target="index">Doctrine\DBAL\Schema</a></li>
+<li><a href="doctrine/dbal/schema/visitor/package-frame.html" target="index">Doctrine\DBAL\Schema\Visitor</a></li>
+<li><a href="doctrine/dbal/tools/console/command/package-frame.html" target="index">Doctrine\DBAL\Tools\Console\Command</a></li>
+<li><a href="doctrine/dbal/tools/console/helper/package-frame.html" target="index">Doctrine\DBAL\Tools\Console\Helper</a></li>
+<li><a href="doctrine/dbal/types/package-frame.html" target="index">Doctrine\DBAL\Types</a></li>
+<li><a href="doctrine/orm/package-frame.html" target="index">Doctrine\ORM</a></li>
+<li><a href="doctrine/orm/event/package-frame.html" target="index">Doctrine\ORM\Event</a></li>
+<li><a href="doctrine/orm/id/package-frame.html" target="index">Doctrine\ORM\Id</a></li>
+<li><a href="doctrine/orm/internal/package-frame.html" target="index">Doctrine\ORM\Internal</a></li>
+<li><a href="doctrine/orm/internal/hydration/package-frame.html" target="index">Doctrine\ORM\Internal\Hydration</a></li>
+<li><a href="doctrine/orm/mapping/package-frame.html" target="index">Doctrine\ORM\Mapping</a></li>
+<li><a href="doctrine/orm/mapping/driver/package-frame.html" target="index">Doctrine\ORM\Mapping\Driver</a></li>
+<li><a href="doctrine/orm/persisters/package-frame.html" target="index">Doctrine\ORM\Persisters</a></li>
+<li><a href="doctrine/orm/proxy/package-frame.html" target="index">Doctrine\ORM\Proxy</a></li>
+<li><a href="doctrine/orm/query/package-frame.html" target="index">Doctrine\ORM\Query</a></li>
+<li><a href="doctrine/orm/query/ast/package-frame.html" target="index">Doctrine\ORM\Query\AST</a></li>
+<li><a href="doctrine/orm/query/ast/functions/package-frame.html" target="index">Doctrine\ORM\Query\AST\Functions</a></li>
+<li><a href="doctrine/orm/query/exec/package-frame.html" target="index">Doctrine\ORM\Query\Exec</a></li>
+<li><a href="doctrine/orm/query/expr/package-frame.html" target="index">Doctrine\ORM\Query\Expr</a></li>
+<li><a href="doctrine/orm/tools/package-frame.html" target="index">Doctrine\ORM\Tools</a></li>
+<li><a href="doctrine/orm/tools/console/package-frame.html" target="index">Doctrine\ORM\Tools\Console</a></li>
+<li><a href="doctrine/orm/tools/console/command/package-frame.html" target="index">Doctrine\ORM\Tools\Console\Command</a></li>
+<li><a href="doctrine/orm/tools/console/command/clearcache/package-frame.html" target="index">Doctrine\ORM\Tools\Console\Command\ClearCache</a></li>
+<li><a href="doctrine/orm/tools/console/command/schematool/package-frame.html" target="index">Doctrine\ORM\Tools\Console\Command\SchemaTool</a></li>
+<li><a href="doctrine/orm/tools/console/helper/package-frame.html" target="index">Doctrine\ORM\Tools\Console\Helper</a></li>
+<li><a href="doctrine/orm/tools/event/package-frame.html" target="index">Doctrine\ORM\Tools\Event</a></li>
+<li><a href="doctrine/orm/tools/export/package-frame.html" target="index">Doctrine\ORM\Tools\Export</a></li>
+<li><a href="doctrine/orm/tools/export/driver/package-frame.html" target="index">Doctrine\ORM\Tools\Export\Driver</a></li>
+</ul>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/overview-summary.html b/lib/api/overview-summary.html
new file mode 100644
index 000000000..7100e957f
--- /dev/null
+++ b/lib/api/overview-summary.html
@@ -0,0 +1,106 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="stylesheet.css">
+<link rel="start" href="overview-summary.html">
+
+<title>Overview (Doctrine)</title>
+
+</head>
+<body id="overview" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li class="active">Overview</li>
+<li>Namespace</li><li>Class</li><li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="index.html" target="_top">Frames</a>
+<a href="overview-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<h1>Doctrine: PHP Object-Relational Mapper</h1>
+
+<table class="title">
+<tr><th colspan="2" class="title">Namespaces</th></tr>
+<tr><td class="name"><a href="doctrine/common/package-summary.html">Doctrine\Common</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/common/annotations/package-summary.html">Doctrine\Common\Annotations</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/common/cache/package-summary.html">Doctrine\Common\Cache</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/common/collections/package-summary.html">Doctrine\Common\Collections</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/common/util/package-summary.html">Doctrine\Common\Util</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/package-summary.html">Doctrine\DBAL</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/driver/package-summary.html">Doctrine\DBAL\Driver</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/driver/oci8/package-summary.html">Doctrine\DBAL\Driver\OCI8</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/driver/pdomssql/package-summary.html">Doctrine\DBAL\Driver\PDOMsSql</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/driver/pdomysql/package-summary.html">Doctrine\DBAL\Driver\PDOMySql</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/driver/pdooracle/package-summary.html">Doctrine\DBAL\Driver\PDOOracle</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/driver/pdopgsql/package-summary.html">Doctrine\DBAL\Driver\PDOPgSql</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/driver/pdosqlite/package-summary.html">Doctrine\DBAL\Driver\PDOSqlite</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/event/package-summary.html">Doctrine\DBAL\Event</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/event/listeners/package-summary.html">Doctrine\DBAL\Event\Listeners</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/logging/package-summary.html">Doctrine\DBAL\Logging</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/platforms/package-summary.html">Doctrine\DBAL\Platforms</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/schema/package-summary.html">Doctrine\DBAL\Schema</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/schema/visitor/package-summary.html">Doctrine\DBAL\Schema\Visitor</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/tools/console/command/package-summary.html">Doctrine\DBAL\Tools\Console\Command</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/tools/console/helper/package-summary.html">Doctrine\DBAL\Tools\Console\Helper</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/dbal/types/package-summary.html">Doctrine\DBAL\Types</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/package-summary.html">Doctrine\ORM</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/event/package-summary.html">Doctrine\ORM\Event</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/id/package-summary.html">Doctrine\ORM\Id</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/internal/package-summary.html">Doctrine\ORM\Internal</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/internal/hydration/package-summary.html">Doctrine\ORM\Internal\Hydration</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/mapping/package-summary.html">Doctrine\ORM\Mapping</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/mapping/driver/package-summary.html">Doctrine\ORM\Mapping\Driver</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/persisters/package-summary.html">Doctrine\ORM\Persisters</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/proxy/package-summary.html">Doctrine\ORM\Proxy</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/query/package-summary.html">Doctrine\ORM\Query</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/query/ast/package-summary.html">Doctrine\ORM\Query\AST</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/query/ast/functions/package-summary.html">Doctrine\ORM\Query\AST\Functions</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/query/exec/package-summary.html">Doctrine\ORM\Query\Exec</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/query/expr/package-summary.html">Doctrine\ORM\Query\Expr</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/tools/package-summary.html">Doctrine\ORM\Tools</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/tools/console/package-summary.html">Doctrine\ORM\Tools\Console</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/tools/console/command/package-summary.html">Doctrine\ORM\Tools\Console\Command</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/tools/console/command/clearcache/package-summary.html">Doctrine\ORM\Tools\Console\Command\ClearCache</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/tools/console/command/schematool/package-summary.html">Doctrine\ORM\Tools\Console\Command\SchemaTool</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/tools/console/helper/package-summary.html">Doctrine\ORM\Tools\Console\Helper</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/tools/event/package-summary.html">Doctrine\ORM\Tools\Event</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/tools/export/package-summary.html">Doctrine\ORM\Tools\Export</a></td><td class="description"></td></tr>
+<tr><td class="name"><a href="doctrine/orm/tools/export/driver/package-summary.html">Doctrine\ORM\Tools\Export\Driver</a></td><td class="description"></td></tr>
+</table>
+
+<hr>
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li class="active">Overview</li>
+<li>Namespace</li><li>Class</li><li><a href="overview-tree.html">Tree</a></li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="index.html" target="_top">Frames</a>
+<a href="overview-summary.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/overview-tree.html b/lib/api/overview-tree.html
new file mode 100644
index 000000000..f28868994
--- /dev/null
+++ b/lib/api/overview-tree.html
@@ -0,0 +1,340 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+
+<html lang="en">
+<head>
+
+<meta name="generator" content="PHPDoctor 2RC4 (http://phpdoctor.sourceforge.net/)">
+<meta name="when" content="Wed, 14 Apr 2010 15:12:03 +0000">
+
+<link rel="stylesheet" type="text/css" href="stylesheet.css">
+<link rel="start" href="overview-summary.html">
+
+<title>Overview (Doctrine)</title>
+
+</head>
+<body id="tree" onload="parent.document.title=document.title;">
+
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="overview-summary.html">Overview</a></li>
+<li>Namespace</li><li>Class</li><li class="active">Tree</li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="index.html" target="_top">Frames</a>
+<a href="overview-tree.html" target="_top">No frames</a>
+</div>
+<h1>Class Hierarchy</h1><ul>
+<li><a href="doctrine/common/classloader.html">Doctrine\Common\ClassLoader</a></li>
+<li><a href="doctrine/common/eventargs.html">Doctrine\Common\EventArgs</a><ul>
+<li><a href="doctrine/dbal/event/connectioneventargs.html">Doctrine\DBAL\Event\ConnectionEventArgs</a></li>
+<li><a href="doctrine/orm/event/loadclassmetadataeventargs.html">Doctrine\ORM\Event\LoadClassMetadataEventArgs</a></li>
+</ul>
+</li>
+<li><a href="doctrine/common/eventmanager.html">Doctrine\Common\EventManager</a></li>
+<li><a href="doctrine/common/eventsubscriber.html">Doctrine\Common\EventSubscriber</a></li>
+<li><a href="doctrine/common/notifypropertychanged.html">Doctrine\Common\NotifyPropertyChanged</a></li>
+<li><a href="doctrine/common/propertychangedlistener.html">Doctrine\Common\PropertyChangedListener</a></li>
+<li><a href="doctrine/common/annotations/annotation.html">Doctrine\Common\Annotations\Annotation</a><ul>
+<li><a href="doctrine/orm/mapping/version.html">Doctrine\ORM\Mapping\Version</a></li>
+<li><a href="doctrine/orm/mapping/column.html">Doctrine\ORM\Mapping\Column</a></li>
+<li><a href="doctrine/orm/mapping/index.html">Doctrine\ORM\Mapping\Index</a></li>
+<li><a href="doctrine/orm/mapping/table.html">Doctrine\ORM\Mapping\Table</a></li>
+<li><a href="doctrine/orm/mapping/sequencegenerator.html">Doctrine\ORM\Mapping\SequenceGenerator</a></li>
+<li><a href="doctrine/orm/mapping/changetrackingpolicy.html">Doctrine\ORM\Mapping\ChangeTrackingPolicy</a></li>
+<li><a href="doctrine/orm/mapping/discriminatorcolumn.html">Doctrine\ORM\Mapping\DiscriminatorColumn</a></li>
+<li><a href="doctrine/orm/mapping/discriminatormap.html">Doctrine\ORM\Mapping\DiscriminatorMap</a></li>
+<li><a href="doctrine/orm/mapping/elementcollection.html">Doctrine\ORM\Mapping\ElementCollection</a></li>
+<li><a href="doctrine/orm/mapping/entity.html">Doctrine\ORM\Mapping\Entity</a></li>
+<li><a href="doctrine/orm/mapping/generatedvalue.html">Doctrine\ORM\Mapping\GeneratedValue</a></li>
+<li><a href="doctrine/orm/mapping/haslifecyclecallbacks.html">Doctrine\ORM\Mapping\HasLifecycleCallbacks</a></li>
+<li><a href="doctrine/orm/mapping/id.html">Doctrine\ORM\Mapping\Id</a></li>
+<li><a href="doctrine/orm/mapping/inheritancetype.html">Doctrine\ORM\Mapping\InheritanceType</a></li>
+<li><a href="doctrine/orm/mapping/joincolumn.html">Doctrine\ORM\Mapping\JoinColumn</a></li>
+<li><a href="doctrine/orm/mapping/joincolumns.html">Doctrine\ORM\Mapping\JoinColumns</a></li>
+<li><a href="doctrine/orm/mapping/jointable.html">Doctrine\ORM\Mapping\JoinTable</a></li>
+<li><a href="doctrine/orm/mapping/manytomany.html">Doctrine\ORM\Mapping\ManyToMany</a></li>
+<li><a href="doctrine/orm/mapping/manytoone.html">Doctrine\ORM\Mapping\ManyToOne</a></li>
+<li><a href="doctrine/orm/mapping/mappedsuperclass.html">Doctrine\ORM\Mapping\MappedSuperclass</a></li>
+<li><a href="doctrine/orm/mapping/onetomany.html">Doctrine\ORM\Mapping\OneToMany</a></li>
+<li><a href="doctrine/orm/mapping/onetoone.html">Doctrine\ORM\Mapping\OneToOne</a></li>
+<li><a href="doctrine/orm/mapping/postload.html">Doctrine\ORM\Mapping\PostLoad</a></li>
+<li><a href="doctrine/orm/mapping/postpersist.html">Doctrine\ORM\Mapping\PostPersist</a></li>
+<li><a href="doctrine/orm/mapping/postremove.html">Doctrine\ORM\Mapping\PostRemove</a></li>
+<li><a href="doctrine/orm/mapping/postupdate.html">Doctrine\ORM\Mapping\PostUpdate</a></li>
+<li><a href="doctrine/orm/mapping/prepersist.html">Doctrine\ORM\Mapping\PrePersist</a></li>
+<li><a href="doctrine/orm/mapping/preremove.html">Doctrine\ORM\Mapping\PreRemove</a></li>
+<li><a href="doctrine/orm/mapping/preupdate.html">Doctrine\ORM\Mapping\PreUpdate</a></li>
+<li><a href="doctrine/orm/mapping/uniqueconstraint.html">Doctrine\ORM\Mapping\UniqueConstraint</a></li>
+</ul>
+</li>
+<li><a href="doctrine/common/annotations/annotationreader.html">Doctrine\Common\Annotations\AnnotationReader</a></li>
+<li><a href="doctrine/orm/query/parser.html">Doctrine\ORM\Query\Parser</a></li>
+<li><a href="doctrine/common/cache/abstractcache.html">Doctrine\Common\Cache\AbstractCache</a><ul>
+<li><a href="doctrine/common/cache/apccache.html">Doctrine\Common\Cache\ApcCache</a></li>
+<li><a href="doctrine/common/cache/arraycache.html">Doctrine\Common\Cache\ArrayCache</a></li>
+<li><a href="doctrine/common/cache/memcachecache.html">Doctrine\Common\Cache\MemcacheCache</a></li>
+<li><a href="doctrine/common/cache/xcachecache.html">Doctrine\Common\Cache\XcacheCache</a></li>
+</ul>
+</li>
+<li><a href="doctrine/common/cache/cache.html">Doctrine\Common\Cache\Cache</a></li>
+<li><a href="doctrine/common/collections/arraycollection.html">Doctrine\Common\Collections\ArrayCollection</a></li>
+<li><a href="doctrine/common/util/debug.html">Doctrine\Common\Util\Debug</a></li>
+<li><a href="doctrine/common/util/inflector.html">Doctrine\Common\Util\Inflector</a></li>
+<li><a href="doctrine/orm/mapping/driver/driver.html">Doctrine\ORM\Mapping\Driver\Driver</a></li>
+<li><a href="doctrine/dbal/drivermanager.html">Doctrine\DBAL\DriverManager</a></li>
+<li><a href="doctrine/orm/events.html">Doctrine\ORM\Events</a></li>
+<li><a href="doctrine/dbal/driver/statement.html">Doctrine\DBAL\Driver\Statement</a></li>
+<li><a href="doctrine/dbal/driver/pdostatement.html">Doctrine\DBAL\Driver\PDOStatement</a></li>
+<li><a href="doctrine/dbal/driver/oci8/oci8connection.html">Doctrine\DBAL\Driver\OCI8\OCI8Connection</a></li>
+<li><a href="doctrine/dbal/driver/oci8/oci8statement.html">Doctrine\DBAL\Driver\OCI8\OCI8Statement</a></li>
+<li><a href="doctrine/dbal/event/listeners/mysqlsessioninit.html">Doctrine\DBAL\Event\Listeners\MysqlSessionInit</a></li>
+<li><a href="doctrine/dbal/event/listeners/oraclesessioninit.html">Doctrine\DBAL\Event\Listeners\OracleSessionInit</a></li>
+<li><a href="doctrine/dbal/logging/debugstack.html">Doctrine\DBAL\Logging\DebugStack</a></li>
+<li><a href="doctrine/dbal/logging/echosqllogger.html">Doctrine\DBAL\Logging\EchoSQLLogger</a></li>
+<li><a href="doctrine/dbal/logging/sqllogger.html">Doctrine\DBAL\Logging\SQLLogger</a></li>
+<li><a href="doctrine/dbal/platforms/abstractplatform.html">Doctrine\DBAL\Platforms\AbstractPlatform</a><ul>
+<li><a href="doctrine/dbal/platforms/mssqlplatform.html">Doctrine\DBAL\Platforms\MsSqlPlatform</a></li>
+<li><a href="doctrine/dbal/platforms/mysqlplatform.html">Doctrine\DBAL\Platforms\MySqlPlatform</a></li>
+<li><a href="doctrine/dbal/platforms/oracleplatform.html">Doctrine\DBAL\Platforms\OraclePlatform</a></li>
+<li><a href="doctrine/dbal/platforms/postgresqlplatform.html">Doctrine\DBAL\Platforms\PostgreSqlPlatform</a></li>
+<li><a href="doctrine/dbal/platforms/sqliteplatform.html">Doctrine\DBAL\Platforms\SqlitePlatform</a></li>
+</ul>
+</li>
+<li><a href="doctrine/dbal/schema/abstractasset.html">Doctrine\DBAL\Schema\AbstractAsset</a><ul>
+<li><a href="doctrine/dbal/schema/foreignkeyconstraint.html">Doctrine\DBAL\Schema\ForeignKeyConstraint</a></li>
+<li><a href="doctrine/dbal/schema/schema.html">Doctrine\DBAL\Schema\Schema</a></li>
+<li><a href="doctrine/dbal/schema/sequence.html">Doctrine\DBAL\Schema\Sequence</a></li>
+<li><a href="doctrine/dbal/schema/view.html">Doctrine\DBAL\Schema\View</a></li>
+</ul>
+</li>
+<li><a href="doctrine/dbal/schema/abstractschemamanager.html">Doctrine\DBAL\Schema\AbstractSchemaManager</a><ul>
+<li><a href="doctrine/dbal/schema/mssqlschemamanager.html">Doctrine\DBAL\Schema\MsSqlSchemaManager</a></li>
+<li><a href="doctrine/dbal/schema/mysqlschemamanager.html">Doctrine\DBAL\Schema\MySqlSchemaManager</a></li>
+<li><a href="doctrine/dbal/schema/oracleschemamanager.html">Doctrine\DBAL\Schema\OracleSchemaManager</a></li>
+<li><a href="doctrine/dbal/schema/postgresqlschemamanager.html">Doctrine\DBAL\Schema\PostgreSqlSchemaManager</a></li>
+<li><a href="doctrine/dbal/schema/sqliteschemamanager.html">Doctrine\DBAL\Schema\SqliteSchemaManager</a></li>
+</ul>
+</li>
+<li><a href="doctrine/dbal/schema/columndiff.html">Doctrine\DBAL\Schema\ColumnDiff</a></li>
+<li><a href="doctrine/dbal/schema/comparator.html">Doctrine\DBAL\Schema\Comparator</a></li>
+<li><a href="doctrine/dbal/schema/constraint.html">Doctrine\DBAL\Schema\Constraint</a></li>
+<li><a href="doctrine/dbal/schema/schemaconfig.html">Doctrine\DBAL\Schema\SchemaConfig</a></li>
+<li><a href="doctrine/dbal/schema/schemadiff.html">Doctrine\DBAL\Schema\SchemaDiff</a></li>
+<li><a href="doctrine/dbal/schema/tablediff.html">Doctrine\DBAL\Schema\TableDiff</a></li>
+<li><a href="doctrine/dbal/schema/visitor/createschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\CreateSchemaSqlCollector</a></li>
+<li><a href="doctrine/dbal/schema/visitor/dropschemasqlcollector.html">Doctrine\DBAL\Schema\Visitor\DropSchemaSqlCollector</a></li>
+<li><a href="doctrine/dbal/schema/visitor/fixschema.html">Doctrine\DBAL\Schema\Visitor\FixSchema</a></li>
+<li><a href="doctrine/dbal/schema/visitor/visitor.html">Doctrine\DBAL\Schema\Visitor\Visitor</a></li>
+<li><a href="doctrine/dbal/types/type.html">Doctrine\DBAL\Types\Type</a><ul>
+<li><a href="doctrine/dbal/types/arraytype.html">Doctrine\DBAL\Types\ArrayType</a></li>
+<li><a href="doctrine/dbal/types/biginttype.html">Doctrine\DBAL\Types\BigIntType</a></li>
+<li><a href="doctrine/dbal/types/booleantype.html">Doctrine\DBAL\Types\BooleanType</a></li>
+<li><a href="doctrine/dbal/types/datetimetype.html">Doctrine\DBAL\Types\DateTimeType</a></li>
+<li><a href="doctrine/dbal/types/datetype.html">Doctrine\DBAL\Types\DateType</a></li>
+<li><a href="doctrine/dbal/types/decimaltype.html">Doctrine\DBAL\Types\DecimalType</a></li>
+<li><a href="doctrine/dbal/types/integertype.html">Doctrine\DBAL\Types\IntegerType</a></li>
+<li><a href="doctrine/dbal/types/objecttype.html">Doctrine\DBAL\Types\ObjectType</a></li>
+<li><a href="doctrine/dbal/types/smallinttype.html">Doctrine\DBAL\Types\SmallIntType</a></li>
+<li><a href="doctrine/dbal/types/stringtype.html">Doctrine\DBAL\Types\StringType</a></li>
+<li><a href="doctrine/dbal/types/texttype.html">Doctrine\DBAL\Types\TextType</a></li>
+<li><a href="doctrine/dbal/types/timetype.html">Doctrine\DBAL\Types\TimeType</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/abstractquery.html">Doctrine\ORM\AbstractQuery</a><ul>
+<li><a href="doctrine/orm/nativequery.html">Doctrine\ORM\NativeQuery</a></li>
+<li><a href="doctrine/orm/query.html">Doctrine\ORM\Query</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/entitymanager.html">Doctrine\ORM\EntityManager</a></li>
+<li><a href="doctrine/orm/entityrepository.html">Doctrine\ORM\EntityRepository</a></li>
+<li><a href="doctrine/orm/persistentcollection.html">Doctrine\ORM\PersistentCollection</a></li>
+<li><a href="doctrine/orm/querybuilder.html">Doctrine\ORM\QueryBuilder</a></li>
+<li><a href="doctrine/orm/unitofwork.html">Doctrine\ORM\UnitOfWork</a></li>
+<li><a href="doctrine/orm/id/abstractidgenerator.html">Doctrine\ORM\Id\AbstractIdGenerator</a><ul>
+<li><a href="doctrine/orm/id/assignedgenerator.html">Doctrine\ORM\Id\AssignedGenerator</a></li>
+<li><a href="doctrine/orm/id/identitygenerator.html">Doctrine\ORM\Id\IdentityGenerator</a><ul>
+<li><a href="doctrine/orm/id/sequenceidentitygenerator.html">Doctrine\ORM\Id\SequenceIdentityGenerator</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/id/tablegenerator.html">Doctrine\ORM\Id\TableGenerator</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/internal/commitordercalculator.html">Doctrine\ORM\Internal\CommitOrderCalculator</a></li>
+<li><a href="doctrine/orm/internal/hydration/abstracthydrator.html">Doctrine\ORM\Internal\Hydration\AbstractHydrator</a><ul>
+<li><a href="doctrine/orm/internal/hydration/arrayhydrator.html">Doctrine\ORM\Internal\Hydration\ArrayHydrator</a></li>
+<li><a href="doctrine/orm/internal/hydration/objecthydrator.html">Doctrine\ORM\Internal\Hydration\ObjectHydrator</a></li>
+<li><a href="doctrine/orm/internal/hydration/scalarhydrator.html">Doctrine\ORM\Internal\Hydration\ScalarHydrator</a></li>
+<li><a href="doctrine/orm/internal/hydration/singlescalarhydrator.html">Doctrine\ORM\Internal\Hydration\SingleScalarHydrator</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/internal/hydration/iterableresult.html">Doctrine\ORM\Internal\Hydration\IterableResult</a></li>
+<li><a href="doctrine/orm/mapping/associationmapping.html">Doctrine\ORM\Mapping\AssociationMapping</a><ul>
+<li><a href="doctrine/orm/mapping/manytomanymapping.html">Doctrine\ORM\Mapping\ManyToManyMapping</a></li>
+<li><a href="doctrine/orm/mapping/onetomanymapping.html">Doctrine\ORM\Mapping\OneToManyMapping</a></li>
+<li><a href="doctrine/orm/mapping/onetoonemapping.html">Doctrine\ORM\Mapping\OneToOneMapping</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/mapping/classmetadatainfo.html">Doctrine\ORM\Mapping\ClassMetadataInfo</a><ul>
+<li><a href="doctrine/orm/mapping/classmetadata.html">Doctrine\ORM\Mapping\ClassMetadata</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/mapping/classmetadatafactory.html">Doctrine\ORM\Mapping\ClassMetadataFactory</a></li>
+<li><a href="doctrine/orm/query/expr/orderby.html">Doctrine\ORM\Query\Expr\OrderBy</a></li>
+<li><a href="doctrine/orm/mapping/driver/abstractfiledriver.html">Doctrine\ORM\Mapping\Driver\AbstractFileDriver</a><ul>
+<li><a href="doctrine/orm/mapping/driver/phpdriver.html">Doctrine\ORM\Mapping\Driver\PhpDriver</a></li>
+<li><a href="doctrine/orm/mapping/driver/xmldriver.html">Doctrine\ORM\Mapping\Driver\XmlDriver</a></li>
+<li><a href="doctrine/orm/mapping/driver/yamldriver.html">Doctrine\ORM\Mapping\Driver\YamlDriver</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/mapping/driver/annotationdriver.html">Doctrine\ORM\Mapping\Driver\AnnotationDriver</a></li>
+<li><a href="doctrine/orm/mapping/driver/databasedriver.html">Doctrine\ORM\Mapping\Driver\DatabaseDriver</a></li>
+<li><a href="doctrine/orm/mapping/driver/driverchain.html">Doctrine\ORM\Mapping\Driver\DriverChain</a></li>
+<li><a href="doctrine/orm/persisters/abstractcollectionpersister.html">Doctrine\ORM\Persisters\AbstractCollectionPersister</a><ul>
+<li><a href="doctrine/orm/persisters/elementcollectionpersister.html">Doctrine\ORM\Persisters\ElementCollectionPersister</a></li>
+<li><a href="doctrine/orm/persisters/manytomanypersister.html">Doctrine\ORM\Persisters\ManyToManyPersister</a></li>
+<li><a href="doctrine/orm/persisters/onetomanypersister.html">Doctrine\ORM\Persisters\OneToManyPersister</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/persisters/standardentitypersister.html">Doctrine\ORM\Persisters\StandardEntityPersister</a><ul>
+<li><a href="doctrine/orm/persisters/abstractentityinheritancepersister.html">Doctrine\ORM\Persisters\AbstractEntityInheritancePersister</a><ul>
+<li><a href="doctrine/orm/persisters/joinedsubclasspersister.html">Doctrine\ORM\Persisters\JoinedSubclassPersister</a></li>
+<li><a href="doctrine/orm/persisters/singletablepersister.html">Doctrine\ORM\Persisters\SingleTablePersister</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/persisters/unionsubclasspersister.html">Doctrine\ORM\Persisters\UnionSubclassPersister</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/proxy/proxy.html">Doctrine\ORM\Proxy\Proxy</a></li>
+<li><a href="doctrine/orm/proxy/proxyfactory.html">Doctrine\ORM\Proxy\ProxyFactory</a></li>
+<li><a href="doctrine/orm/query/expr.html">Doctrine\ORM\Query\Expr</a></li>
+<li><a href="doctrine/orm/query/parserresult.html">Doctrine\ORM\Query\ParserResult</a></li>
+<li><a href="doctrine/orm/query/printer.html">Doctrine\ORM\Query\Printer</a></li>
+<li><a href="doctrine/orm/query/resultsetmapping.html">Doctrine\ORM\Query\ResultSetMapping</a></li>
+<li><a href="doctrine/orm/query/sqlwalker.html">Doctrine\ORM\Query\SqlWalker</a></li>
+<li><a href="doctrine/orm/query/treewalker.html">Doctrine\ORM\Query\TreeWalker</a></li>
+<li><a href="doctrine/orm/query/treewalkeradapter.html">Doctrine\ORM\Query\TreeWalkerAdapter</a></li>
+<li><a href="doctrine/orm/query/treewalkerchain.html">Doctrine\ORM\Query\TreeWalkerChain</a></li>
+<li><a href="doctrine/orm/query/ast/node.html">Doctrine\ORM\Query\AST\Node</a><ul>
+<li><a href="doctrine/orm/query/ast/aggregateexpression.html">Doctrine\ORM\Query\AST\AggregateExpression</a></li>
+<li><a href="doctrine/orm/query/ast/arithmeticexpression.html">Doctrine\ORM\Query\AST\ArithmeticExpression</a></li>
+<li><a href="doctrine/orm/query/ast/arithmeticfactor.html">Doctrine\ORM\Query\AST\ArithmeticFactor</a></li>
+<li><a href="doctrine/orm/query/ast/arithmeticterm.html">Doctrine\ORM\Query\AST\ArithmeticTerm</a></li>
+<li><a href="doctrine/orm/query/ast/betweenexpression.html">Doctrine\ORM\Query\AST\BetweenExpression</a></li>
+<li><a href="doctrine/orm/query/ast/collectionmemberexpression.html">Doctrine\ORM\Query\AST\CollectionMemberExpression</a></li>
+<li><a href="doctrine/orm/query/ast/comparisonexpression.html">Doctrine\ORM\Query\AST\ComparisonExpression</a></li>
+<li><a href="doctrine/orm/query/ast/conditionalexpression.html">Doctrine\ORM\Query\AST\ConditionalExpression</a></li>
+<li><a href="doctrine/orm/query/ast/conditionalfactor.html">Doctrine\ORM\Query\AST\ConditionalFactor</a></li>
+<li><a href="doctrine/orm/query/ast/conditionalprimary.html">Doctrine\ORM\Query\AST\ConditionalPrimary</a></li>
+<li><a href="doctrine/orm/query/ast/conditionalterm.html">Doctrine\ORM\Query\AST\ConditionalTerm</a></li>
+<li><a href="doctrine/orm/query/ast/deleteclause.html">Doctrine\ORM\Query\AST\DeleteClause</a></li>
+<li><a href="doctrine/orm/query/ast/deletestatement.html">Doctrine\ORM\Query\AST\DeleteStatement</a></li>
+<li><a href="doctrine/orm/query/ast/emptycollectioncomparisonexpression.html">Doctrine\ORM\Query\AST\EmptyCollectionComparisonExpression</a></li>
+<li><a href="doctrine/orm/query/ast/existsexpression.html">Doctrine\ORM\Query\AST\ExistsExpression</a></li>
+<li><a href="doctrine/orm/query/ast/fromclause.html">Doctrine\ORM\Query\AST\FromClause</a></li>
+<li><a href="doctrine/orm/query/ast/groupbyclause.html">Doctrine\ORM\Query\AST\GroupByClause</a></li>
+<li><a href="doctrine/orm/query/ast/havingclause.html">Doctrine\ORM\Query\AST\HavingClause</a></li>
+<li><a href="doctrine/orm/query/ast/identificationvariabledeclaration.html">Doctrine\ORM\Query\AST\IdentificationVariableDeclaration</a></li>
+<li><a href="doctrine/orm/query/ast/inexpression.html">Doctrine\ORM\Query\AST\InExpression</a></li>
+<li><a href="doctrine/orm/query/ast/indexby.html">Doctrine\ORM\Query\AST\IndexBy</a></li>
+<li><a href="doctrine/orm/query/ast/inputparameter.html">Doctrine\ORM\Query\AST\InputParameter</a></li>
+<li><a href="doctrine/orm/query/ast/joinassociationpathexpression.html">Doctrine\ORM\Query\AST\JoinAssociationPathExpression</a></li>
+<li><a href="doctrine/orm/query/ast/joinvariabledeclaration.html">Doctrine\ORM\Query\AST\JoinVariableDeclaration</a></li>
+<li><a href="doctrine/orm/query/ast/likeexpression.html">Doctrine\ORM\Query\AST\LikeExpression</a></li>
+<li><a href="doctrine/orm/query/ast/nullcomparisonexpression.html">Doctrine\ORM\Query\AST\NullComparisonExpression</a></li>
+<li><a href="doctrine/orm/query/ast/orderbyclause.html">Doctrine\ORM\Query\AST\OrderByClause</a></li>
+<li><a href="doctrine/orm/query/ast/orderbyitem.html">Doctrine\ORM\Query\AST\OrderByItem</a></li>
+<li><a href="doctrine/orm/query/ast/partialobjectexpression.html">Doctrine\ORM\Query\AST\PartialObjectExpression</a></li>
+<li><a href="doctrine/orm/query/ast/pathexpression.html">Doctrine\ORM\Query\AST\PathExpression</a></li>
+<li><a href="doctrine/orm/query/ast/quantifiedexpression.html">Doctrine\ORM\Query\AST\QuantifiedExpression</a></li>
+<li><a href="doctrine/orm/query/ast/rangevariabledeclaration.html">Doctrine\ORM\Query\AST\RangeVariableDeclaration</a></li>
+<li><a href="doctrine/orm/query/ast/selectclause.html">Doctrine\ORM\Query\AST\SelectClause</a></li>
+<li><a href="doctrine/orm/query/ast/selectexpression.html">Doctrine\ORM\Query\AST\SelectExpression</a></li>
+<li><a href="doctrine/orm/query/ast/selectstatement.html">Doctrine\ORM\Query\AST\SelectStatement</a></li>
+<li><a href="doctrine/orm/query/ast/simplearithmeticexpression.html">Doctrine\ORM\Query\AST\SimpleArithmeticExpression</a></li>
+<li><a href="doctrine/orm/query/ast/simpleselectclause.html">Doctrine\ORM\Query\AST\SimpleSelectClause</a></li>
+<li><a href="doctrine/orm/query/ast/simpleselectexpression.html">Doctrine\ORM\Query\AST\SimpleSelectExpression</a></li>
+<li><a href="doctrine/orm/query/ast/subselect.html">Doctrine\ORM\Query\AST\Subselect</a></li>
+<li><a href="doctrine/orm/query/ast/subselectfromclause.html">Doctrine\ORM\Query\AST\SubselectFromClause</a></li>
+<li><a href="doctrine/orm/query/ast/updateclause.html">Doctrine\ORM\Query\AST\UpdateClause</a></li>
+<li><a href="doctrine/orm/query/ast/updateitem.html">Doctrine\ORM\Query\AST\UpdateItem</a></li>
+<li><a href="doctrine/orm/query/ast/updatestatement.html">Doctrine\ORM\Query\AST\UpdateStatement</a></li>
+<li><a href="doctrine/orm/query/ast/whereclause.html">Doctrine\ORM\Query\AST\WhereClause</a></li>
+<li><a href="doctrine/orm/query/ast/functions/functionnode.html">Doctrine\ORM\Query\AST\Functions\FunctionNode</a><ul>
+<li><a href="doctrine/orm/query/ast/functions/absfunction.html">Doctrine\ORM\Query\AST\Functions\AbsFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/concatfunction.html">Doctrine\ORM\Query\AST\Functions\ConcatFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/currentdatefunction.html">Doctrine\ORM\Query\AST\Functions\CurrentDateFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/currenttimefunction.html">Doctrine\ORM\Query\AST\Functions\CurrentTimeFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/currenttimestampfunction.html">Doctrine\ORM\Query\AST\Functions\CurrentTimestampFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/lengthfunction.html">Doctrine\ORM\Query\AST\Functions\LengthFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/locatefunction.html">Doctrine\ORM\Query\AST\Functions\LocateFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/lowerfunction.html">Doctrine\ORM\Query\AST\Functions\LowerFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/modfunction.html">Doctrine\ORM\Query\AST\Functions\ModFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/sizefunction.html">Doctrine\ORM\Query\AST\Functions\SizeFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/sqrtfunction.html">Doctrine\ORM\Query\AST\Functions\SqrtFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/substringfunction.html">Doctrine\ORM\Query\AST\Functions\SubstringFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/trimfunction.html">Doctrine\ORM\Query\AST\Functions\TrimFunction</a></li>
+<li><a href="doctrine/orm/query/ast/functions/upperfunction.html">Doctrine\ORM\Query\AST\Functions\UpperFunction</a></li>
+</ul>
+</li>
+</ul>
+</li>
+<li><a href="doctrine/orm/query/expr/join.html">Doctrine\ORM\Query\Expr\Join</a></li>
+<li><a href="doctrine/orm/query/exec/abstractsqlexecutor.html">Doctrine\ORM\Query\Exec\AbstractSqlExecutor</a><ul>
+<li><a href="doctrine/orm/query/exec/multitabledeleteexecutor.html">Doctrine\ORM\Query\Exec\MultiTableDeleteExecutor</a></li>
+<li><a href="doctrine/orm/query/exec/multitableupdateexecutor.html">Doctrine\ORM\Query\Exec\MultiTableUpdateExecutor</a></li>
+<li><a href="doctrine/orm/query/exec/singleselectexecutor.html">Doctrine\ORM\Query\Exec\SingleSelectExecutor</a></li>
+<li><a href="doctrine/orm/query/exec/singletabledeleteupdateexecutor.html">Doctrine\ORM\Query\Exec\SingleTableDeleteUpdateExecutor</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/query/expr/base.html">Doctrine\ORM\Query\Expr\Base</a><ul>
+<li><a href="doctrine/orm/query/expr/literal.html">Doctrine\ORM\Query\Expr\Literal</a></li>
+<li><a href="doctrine/orm/query/expr/andx.html">Doctrine\ORM\Query\Expr\Andx</a></li>
+<li><a href="doctrine/orm/query/expr/groupby.html">Doctrine\ORM\Query\Expr\GroupBy</a></li>
+<li><a href="doctrine/orm/query/expr/orx.html">Doctrine\ORM\Query\Expr\Orx</a></li>
+<li><a href="doctrine/orm/query/expr/select.html">Doctrine\ORM\Query\Expr\Select</a></li>
+</ul>
+</li>
+<li><a href="doctrine/orm/query/expr/comparison.html">Doctrine\ORM\Query\Expr\Comparison</a></li>
+<li><a href="doctrine/orm/query/expr/from.html">Doctrine\ORM\Query\Expr\From</a></li>
+<li><a href="doctrine/orm/query/expr/func.html">Doctrine\ORM\Query\Expr\Func</a></li>
+<li><a href="doctrine/orm/query/expr/math.html">Doctrine\ORM\Query\Expr\Math</a></li>
+<li><a href="doctrine/orm/tools/classmetadatareader.html">Doctrine\ORM\Tools\ClassMetadataReader</a></li>
+<li><a href="doctrine/orm/tools/convertdoctrine1schema.html">Doctrine\ORM\Tools\ConvertDoctrine1Schema</a></li>
+<li><a href="doctrine/orm/tools/entitygenerator.html">Doctrine\ORM\Tools\EntityGenerator</a></li>
+<li><a href="doctrine/orm/tools/schematool.html">Doctrine\ORM\Tools\SchemaTool</a></li>
+<li><a href="doctrine/orm/tools/toolevents.html">Doctrine\ORM\Tools\ToolEvents</a></li>
+<li><a href="doctrine/orm/tools/export/classmetadataexporter.html">Doctrine\ORM\Tools\Export\ClassMetadataExporter</a></li>
+<li><a href="doctrine/orm/tools/export/driver/abstractexporter.html">Doctrine\ORM\Tools\Export\Driver\AbstractExporter</a><ul>
+<li><a href="doctrine/orm/tools/export/driver/annotationexporter.html">Doctrine\ORM\Tools\Export\Driver\AnnotationExporter</a></li>
+<li><a href="doctrine/orm/tools/export/driver/phpexporter.html">Doctrine\ORM\Tools\Export\Driver\PhpExporter</a></li>
+<li><a href="doctrine/orm/tools/export/driver/xmlexporter.html">Doctrine\ORM\Tools\Export\Driver\XmlExporter</a></li>
+<li><a href="doctrine/orm/tools/export/driver/yamlexporter.html">Doctrine\ORM\Tools\Export\Driver\YamlExporter</a></li>
+</ul>
+</li>
+</ul>
+<div class="header">
+<h1>Doctrine</h1>
+<ul>
+<li><a href="overview-summary.html">Overview</a></li>
+<li>Namespace</li><li>Class</li><li class="active">Tree</li>
+<li><a href="deprecated-list.html">Deprecated</a></li>
+<li><a href="index-all.html">Index</a></li>
+</ul>
+</div>
+
+<div class="small_links">
+<a href="index.html" target="_top">Frames</a>
+<a href="overview-tree.html" target="_top">No frames</a>
+</div>
+<hr>
+
+<p id="footer">This document was generated by <a href="http://peej.github.com/phpdoctor/">PHPDoctor: The PHP Documentation Creator</a></p>
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/lib/api/stylesheet.css b/lib/api/stylesheet.css
new file mode 100644
index 000000000..ec7982d39
--- /dev/null
+++ b/lib/api/stylesheet.css
@@ -0,0 +1,216 @@
+* {
+    margin: 0;
+    padding: 0;
+}
+
+body {
+	font-family: "Times New Roman", Times, serif;
+	margin: 0px;
+	padding: 10px;
+	font-size: 100%;
+    background-color: #fff;
+    color: #000;
+}
+
+a {
+    color: #00f;
+}
+
+a:visited {
+    color: #518;
+}
+
+table {
+    width: 100%;
+    margin: 10px 0;
+    border-collapse: collapse;
+}
+
+table, th, td {
+    border: 2px solid #999;
+}
+
+th {
+    padding: 2px 4px;
+    background-color: #ccf;
+    text-align: left;
+    font-size: 140%;
+}
+
+td {
+    padding: 2px 4px;
+}
+
+td p {
+    padding: 0;
+    margin: 0;
+}
+
+hr, p, dl, ul, ol, h1, h2, h3, h4, h5, h6 {
+    margin: 5px 0;
+}
+
+dt {
+    font-weight: bold;
+}
+
+dd {
+    margin-left: 40px;
+}
+
+ul, ol {
+    margin-left: 30px;
+}
+
+p {
+    margin-left: 10px;
+}
+
+h1 {
+    font-size: 140%;
+    font-family: Arial, Helvetica, sans-serif;
+}
+
+h2 {
+    font-size: 120%;
+    font-family: Arial, Helvetica, sans-serif;
+}
+
+/* page header */
+
+div.header {
+    width: 100%;
+    font-family: Arial, Helvetica, sans-serif;
+    background-color: #eef;
+    margin: 0 0 10px;
+    padding: 4px 0;
+}
+
+div.header h1 {
+    float: right;
+    font-size: 100%;
+    font-style: italic;
+    padding: 0 4px;
+    margin: 0;
+}
+
+div.header ul {
+    list-style: none;
+    margin: 0;
+}
+
+div.header ul li {
+    display: inline;
+    font-size: 100%;
+    font-weight: bold;
+    padding: 0 4px;
+}
+
+div.header ul li.active {
+    background-color: #00008c;
+    color: #fff;
+}
+
+div.header ul li a:visited {
+    color: #000;
+}
+
+/* small links */
+
+div.small_links {
+    text-transform: uppercase;
+    font-size: 65%;
+    font-family: Arial, Helvetica, sans-serif;
+    margin: 8px;
+}
+
+/* footer */
+
+p#footer {
+	font-size: 80%;
+}
+
+/* frames */
+
+#frame h1 {
+    font-size: 120%;
+}
+
+#frame h2 {
+    font-size: 100%;
+}
+
+#frame ul {
+    list-style: none;
+    margin-left: 10px;
+}
+
+/* definition writer */
+
+div.qualifiedName {
+    font-size: 80%;
+    font-weight: bold;
+    margin: 10px 0 0;
+}
+
+div.location {
+    font-size: 80%;
+	float: right;
+}
+
+#definition h1 {
+    margin: 0 0 10px;
+    font-family: "Times New Roman", Times, serif;
+}
+
+#definition h2 {
+    border: 2px solid #999;
+    padding: 2px;
+    background-color: #ccf;
+    text-align: left;
+    font-size: 140%;
+    font-family: "Times New Roman", Times, serif;
+}
+
+pre.tree {
+    margin: 10px 0;
+}
+
+table.inherit th {
+    background-color: #eef;
+    font-size: 120%;
+}
+
+p.signature, div.comment {
+    margin: 10px 0;
+}
+
+code.signature {
+    display: block;
+    margin: 10px 0;
+}
+
+div.details {
+    margin: 10px 0 10px 20px;
+}
+
+td.type {
+    text-align: right;
+    vertical-align: top;
+    font-family: monospace;
+}
+
+td p.name {
+    font-family: monospace;
+}
+
+td p.description {
+    margin: 2px 0 0 20px;
+}
+
+/* tree */
+
+#tree ul ul {
+    margin-top: 0;
+    margin-bottom: 0;
+}
\ No newline at end of file

From d150f8a6f734b5a0c7dc5d97a8c3eb6fe8f5a438 Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Wed, 14 Apr 2010 11:21:39 -0400
Subject: [PATCH 10/15] Fixing issue with 4 spaces being hardcoded and not
 replaced with the configured amount of spaces

---
 lib/Doctrine/ORM/Tools/EntityGenerator.php | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/lib/Doctrine/ORM/Tools/EntityGenerator.php b/lib/Doctrine/ORM/Tools/EntityGenerator.php
index c8957041a..b8c4d5002 100644
--- a/lib/Doctrine/ORM/Tools/EntityGenerator.php
+++ b/lib/Doctrine/ORM/Tools/EntityGenerator.php
@@ -98,7 +98,7 @@ class EntityGenerator
  */
 public function <methodName>()
 {
-    return $this-><fieldName>;
+<spaces>return $this-><fieldName>;
 }';
 
     private static $_setMethodTemplate =
@@ -109,7 +109,7 @@ public function <methodName>()
  */
 public function <methodName>(<methodTypeHint>$<variableName>)
 {
-    $this-><fieldName> = $<variableName>;
+<spaces>$this-><fieldName> = $<variableName>;
 }';
 
     private static $_addMethodTemplate =
@@ -120,7 +120,7 @@ public function <methodName>(<methodTypeHint>$<variableName>)
  */
 public function <methodName>(<methodTypeHint>$<variableName>)
 {
-    $this-><fieldName>[] = $<variableName>;
+<spaces>$this-><fieldName>[] = $<variableName>;
 }';
 
     private static $_lifecycleCallbackMethodTemplate =
@@ -129,7 +129,7 @@ public function <methodName>(<methodTypeHint>$<variableName>)
  */
 public function <methodName>()
 {
-    // Add your code here
+<spaces>// Add your code here
 }';
 
     /**
@@ -192,7 +192,8 @@ public function <methodName>()
             '<use>',
             '<entityAnnotation>',
             '<entityClassName>',
-            '<entityBody>'
+            '<entityBody>',
+            '<spaces>'
         );
 
         $replacements = array(
@@ -200,7 +201,8 @@ public function <methodName>()
             $this->_generateEntityUse($metadata),
             $this->_generateEntityDocBlock($metadata),
             $this->_generateEntityClassName($metadata),
-            $this->_generateEntityBody($metadata)
+            $this->_generateEntityBody($metadata),
+            $this->_spaces
         );
 
         return str_replace($placeHolders, $replacements, self::$_classTemplate);

From 3afc8f794aeb5f9a7e53d73874521d4c824f23f9 Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Wed, 14 Apr 2010 14:17:09 -0400
Subject: [PATCH 11/15] Throw exception when entity generator is not set

---
 lib/Doctrine/ORM/Tools/Export/Driver/AnnotationExporter.php | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lib/Doctrine/ORM/Tools/Export/Driver/AnnotationExporter.php b/lib/Doctrine/ORM/Tools/Export/Driver/AnnotationExporter.php
index 1ba0d2e7f..254905eec 100644
--- a/lib/Doctrine/ORM/Tools/Export/Driver/AnnotationExporter.php
+++ b/lib/Doctrine/ORM/Tools/Export/Driver/AnnotationExporter.php
@@ -49,6 +49,9 @@ class AnnotationExporter extends AbstractExporter
      */
     public function exportClassMetadata(ClassMetadataInfo $metadata)
     {
+        if ( ! $this->_entityGenerator) {
+            throw new \RuntimeException('For the AnnotationExporter you must set an EntityGenerator instance with the setEntityGenerator() method.');
+        }
         $this->_entityGenerator->setGenerateAnnotations(true);
         $this->_entityGenerator->setGenerateStubMethods(false);
         $this->_entityGenerator->setRegenerateEntityIfExists(false);

From ac4e33d0560166f40c75fc769ef8e493bfcafb3f Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Wed, 14 Apr 2010 14:17:55 -0400
Subject: [PATCH 12/15] Fixing issue with EntityGenerator spaces

---
 lib/Doctrine/ORM/Tools/EntityGenerator.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/lib/Doctrine/ORM/Tools/EntityGenerator.php b/lib/Doctrine/ORM/Tools/EntityGenerator.php
index b8c4d5002..b8a47c64d 100644
--- a/lib/Doctrine/ORM/Tools/EntityGenerator.php
+++ b/lib/Doctrine/ORM/Tools/EntityGenerator.php
@@ -192,8 +192,7 @@ public function <methodName>()
             '<use>',
             '<entityAnnotation>',
             '<entityClassName>',
-            '<entityBody>',
-            '<spaces>'
+            '<entityBody>'
         );
 
         $replacements = array(
@@ -201,11 +200,11 @@ public function <methodName>()
             $this->_generateEntityUse($metadata),
             $this->_generateEntityDocBlock($metadata),
             $this->_generateEntityClassName($metadata),
-            $this->_generateEntityBody($metadata),
-            $this->_spaces
+            $this->_generateEntityBody($metadata)
         );
 
-        return str_replace($placeHolders, $replacements, self::$_classTemplate);
+        $code = str_replace($placeHolders, $replacements, self::$_classTemplate);
+        return str_replace('<spaces>', $this->_spaces, $code);
     }
 
     /**
@@ -220,9 +219,10 @@ public function <methodName>()
         $currentCode = file_get_contents($path);
 
         $body = $this->_generateEntityBody($metadata);
+        $body = str_replace('<spaces>', $this->_spaces, $body);
         $last = strrpos($currentCode, '}');
 
-        return substr($currentCode, 0, $last) . $body . '}';
+        return substr($currentCode, 0, $last) . $body . "\n}";
     }
 
     /**

From 146b22a1a57f0da75068d430337d06a34e2f2d7e Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Wed, 14 Apr 2010 14:18:10 -0400
Subject: [PATCH 13/15] Making 2nd argument of getExporter() optional again

---
 lib/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php b/lib/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php
index c86b9113e..2b528a2c2 100644
--- a/lib/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php
+++ b/lib/Doctrine/ORM/Tools/Export/ClassMetadataExporter.php
@@ -63,7 +63,7 @@ class ClassMetadataExporter
      * @param string $source    The directory where the exporter will export to
      * @return AbstractExporter $exporter
      */
-    public function getExporter($type, $dest)
+    public function getExporter($type, $dest = null)
     {
         if ( ! isset(self::$_exporterDrivers[$type])) {
             throw ExportException::invalidExporterDriverType($type);

From 32a81f09d1b96f4286edbd7cfa2dbb05a4e7169b Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Wed, 14 Apr 2010 14:32:47 -0400
Subject: [PATCH 14/15] Fixing generate-repositories command so it works again
 after migration to Symfony console

---
 .../Command/GenerateRepositoriesCommand.php   | 26 ++++++++++++++-----
 1 file changed, 20 insertions(+), 6 deletions(-)

diff --git a/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php b/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php
index 9c1477fcd..5410c08b4 100644
--- a/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php
+++ b/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php
@@ -40,12 +40,12 @@ use Symfony\Components\Console\Input\InputArgument,
  */
 class GenerateRepositoriesCommand extends Console\Command\Command
 {
-    private static $_template =
+    protected static $_template =
 '<?php
 
 namespace <namespace>;
 
-use \Doctrine\ORM\EntityRepository;
+use Doctrine\ORM\EntityRepository;
 
 /**
  * <className>
@@ -103,7 +103,7 @@ EOT
             );
         }
 
-        if ( count($metadatas)) {
+        if (count($metadatas)) {
             $numRepositories = 0;
 
             foreach ($metadatas as $metadata) {
@@ -112,7 +112,7 @@ EOT
                         sprintf('Processing repository "<info>%s</info>"', $metadata->customRepositoryClassName) . PHP_EOL
                     );
 
-                    $this->_generateRepositoryClass($metadata, $destPath);
+                    $this->_writeRepositoryClass($metadata, $destPath);
 
                     $numRepositories++;
                 }
@@ -129,9 +129,23 @@ EOT
         }
     }
 
-    private function _generateRepositoryClass($metadata, $destPath)
+    protected function _generateRepositoryClass($metadata)
     {
-        $code = $this->_generateRepositoryClass($metadata->customRepositoryClassName);
+        fullClassName = $metadata->customRepositoryClassName;
+        $namespace = substr($fullClassName, 0, strrpos($fullClassName, '\\'));
+        $className = substr($fullClassName, strrpos($fullClassName, '\\') + 1, strlen($fullClassName));
+
+        $variables = array(
+            '<namespace>' => $namespace,
+            '<className>' => $className
+        );
+        $code = str_replace(array_keys($variables), array_values($variables), self::$_template);
+        return $code;
+    }
+
+    protected function _writeRepositoryClass($metadata, $destPath)
+    {
+        $code = $this->_generateRepositoryClass($metadata);
 
         $path = $destPath . DIRECTORY_SEPARATOR
               . str_replace('\\', \DIRECTORY_SEPARATOR, $metadata->customRepositoryClassName) . '.php';

From 4d758035cc28359529f8d40fd9c975218baec730 Mon Sep 17 00:00:00 2001
From: "Jonathan H. Wage" <jonwage@gmail.com>
Date: Wed, 14 Apr 2010 15:19:48 -0400
Subject: [PATCH 15/15] Extracting repository generation code to standalone
 class so it can be re-used

---
 .../Command/GenerateRepositoriesCommand.php   | 52 +-----------
 .../ORM/Tools/EntityRepositoryGenerator.php   | 81 +++++++++++++++++++
 2 files changed, 85 insertions(+), 48 deletions(-)
 create mode 100644 lib/Doctrine/ORM/Tools/EntityRepositoryGenerator.php

diff --git a/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php b/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php
index 5410c08b4..f417ee0f9 100644
--- a/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php
+++ b/lib/Doctrine/ORM/Tools/Console/Command/GenerateRepositoriesCommand.php
@@ -24,7 +24,8 @@ namespace Doctrine\ORM\Tools\Console\Command;
 use Symfony\Components\Console\Input\InputArgument,
     Symfony\Components\Console\Input\InputOption,
     Symfony\Components\Console,
-    Doctrine\ORM\Tools\Console\MetadataFilter;
+    Doctrine\ORM\Tools\Console\MetadataFilter,
+    Doctrine\ORM\Tools\EntityRepositoryGenerator;
 
 /**
  * Command to generate repository classes for mapping information.
@@ -40,23 +41,6 @@ use Symfony\Components\Console\Input\InputArgument,
  */
 class GenerateRepositoriesCommand extends Console\Command\Command
 {
-    protected static $_template =
-'<?php
-
-namespace <namespace>;
-
-use Doctrine\ORM\EntityRepository;
-
-/**
- * <className>
- *
- * This class was generated by the Doctrine ORM. Add your own custom
- * repository methods below.
- */
-class <className> extends EntityRepository
-{
-}';
-
     /**
      * @see Console\Command\Command
      */
@@ -105,6 +89,7 @@ EOT
 
         if (count($metadatas)) {
             $numRepositories = 0;
+            $generator = new EntityRepositoryGenerator();
 
             foreach ($metadatas as $metadata) {
                 if ($metadata->customRepositoryClassName) {
@@ -112,7 +97,7 @@ EOT
                         sprintf('Processing repository "<info>%s</info>"', $metadata->customRepositoryClassName) . PHP_EOL
                     );
 
-                    $this->_writeRepositoryClass($metadata, $destPath);
+                    $generator->writeEntityRepositoryClass($metadata->customRepositoryClassName, $destPath);
 
                     $numRepositories++;
                 }
@@ -128,33 +113,4 @@ EOT
             $output->write('No Metadata Classes to process.' . PHP_EOL);
         }
     }
-
-    protected function _generateRepositoryClass($metadata)
-    {
-        fullClassName = $metadata->customRepositoryClassName;
-        $namespace = substr($fullClassName, 0, strrpos($fullClassName, '\\'));
-        $className = substr($fullClassName, strrpos($fullClassName, '\\') + 1, strlen($fullClassName));
-
-        $variables = array(
-            '<namespace>' => $namespace,
-            '<className>' => $className
-        );
-        $code = str_replace(array_keys($variables), array_values($variables), self::$_template);
-        return $code;
-    }
-
-    protected function _writeRepositoryClass($metadata, $destPath)
-    {
-        $code = $this->_generateRepositoryClass($metadata);
-
-        $path = $destPath . DIRECTORY_SEPARATOR
-              . str_replace('\\', \DIRECTORY_SEPARATOR, $metadata->customRepositoryClassName) . '.php';
-        $dir = dirname($path);
-
-        if ( ! is_dir($dir)) {
-            mkdir($dir, 0777, true);
-        }
-
-        file_put_contents($path, $code);
-    }
 }
\ No newline at end of file
diff --git a/lib/Doctrine/ORM/Tools/EntityRepositoryGenerator.php b/lib/Doctrine/ORM/Tools/EntityRepositoryGenerator.php
new file mode 100644
index 000000000..82c18035e
--- /dev/null
+++ b/lib/Doctrine/ORM/Tools/EntityRepositoryGenerator.php
@@ -0,0 +1,81 @@
+<?php
+/*
+ *  $Id$
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * This software consists of voluntary contributions made by many individuals
+ * and is licensed under the LGPL. For more information, see
+ * <http://www.doctrine-project.org>.
+ */
+
+namespace Doctrine\ORM\Tools;
+
+/**
+ * Class to generate entity repository classes
+ *
+ * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
+ * @link    www.doctrine-project.org
+ * @since   2.0
+ * @version $Revision$
+ * @author  Benjamin Eberlei <kontakt@beberlei.de>
+ * @author  Guilherme Blanco <guilhermeblanco@hotmail.com>
+ * @author  Jonathan Wage <jonwage@gmail.com>
+ * @author  Roman Borschel <roman@code-factory.org>
+ */
+class EntityRepositoryGenerator
+{
+    protected static $_template =
+'<?php
+
+namespace <namespace>;
+
+use Doctrine\ORM\EntityRepository;
+
+/**
+ * <className>
+ *
+ * This class was generated by the Doctrine ORM. Add your own custom
+ * repository methods below.
+ */
+class <className> extends EntityRepository
+{
+}';
+
+    public function generateEntityRepositoryClass($fullClassName)
+    {
+        $namespace = substr($fullClassName, 0, strrpos($fullClassName, '\\'));
+        $className = substr($fullClassName, strrpos($fullClassName, '\\') + 1, strlen($fullClassName));
+
+        $variables = array(
+            '<namespace>' => $namespace,
+            '<className>' => $className
+        );
+        return str_replace(array_keys($variables), array_values($variables), self::$_template);
+    }
+
+    public function writeEntityRepositoryClass($fullClassName, $outputDirectory)
+    {
+        $code = $this->generateEntityRepositoryClass($fullClassName);
+
+        $path = $outputDirectory . DIRECTORY_SEPARATOR
+              . str_replace('\\', \DIRECTORY_SEPARATOR, $fullClassName) . '.php';
+        $dir = dirname($path);
+
+        if ( ! is_dir($dir)) {
+            mkdir($dir, 0777, true);
+        }
+
+        file_put_contents($path, $code);
+    }
+}
\ No newline at end of file