2008-05-06 13:41:22 +00:00
|
|
|
<?php
|
2008-02-11 17:08:22 +00:00
|
|
|
/*
|
|
|
|
* 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
|
2009-02-07 17:02:13 +00:00
|
|
|
* <http://www.doctrine-project.org>.
|
2008-02-11 17:08:22 +00:00
|
|
|
*/
|
2008-02-03 21:29:57 +00:00
|
|
|
|
2009-01-22 19:38:10 +00:00
|
|
|
namespace Doctrine\ORM\Mapping;
|
2008-05-30 12:09:24 +00:00
|
|
|
|
2010-03-29 13:20:41 +00:00
|
|
|
use ReflectionClass, ReflectionProperty;
|
|
|
|
|
2008-02-03 21:29:57 +00:00
|
|
|
/**
|
2009-07-30 15:16:02 +00:00
|
|
|
* A <tt>ClassMetadata</tt> instance holds all the object-relational mapping metadata
|
|
|
|
* of an entity and it's associations.
|
2011-12-01 10:00:26 -05:00
|
|
|
*
|
2009-07-25 16:52:19 +00:00
|
|
|
* Once populated, ClassMetadata instances are usually cached in a serialized form.
|
2008-02-03 21:29:57 +00:00
|
|
|
*
|
2009-05-14 10:03:09 +00:00
|
|
|
* <b>IMPORTANT NOTE:</b>
|
|
|
|
*
|
|
|
|
* 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).
|
|
|
|
*
|
2008-02-24 20:31:49 +00:00
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
2009-10-05 05:42:30 +00:00
|
|
|
* @author Jonathan H. Wage <jonwage@gmail.com>
|
2008-03-26 11:10:45 +00:00
|
|
|
* @since 2.0
|
2008-02-03 21:29:57 +00:00
|
|
|
*/
|
2012-01-02 21:32:18 +01:00
|
|
|
class ClassMetadata extends ClassMetadataInfo
|
2008-05-06 13:41:22 +00:00
|
|
|
{
|
2009-07-20 12:05:19 +00:00
|
|
|
}
|