class StaticReflectionClass

Hierarchy

Expanded class hierarchy of StaticReflectionClass

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Reflection/StaticReflectionClass.php, line 25

Namespace

Doctrine\Common\Reflection
View source
class StaticReflectionClass extends ReflectionClass {

  /**
   * The static reflection parser object.
   *
   * @var StaticReflectionParser
   */
  private $staticReflectionParser;
  public function __construct(StaticReflectionParser $staticReflectionParser) {
    $this->staticReflectionParser = $staticReflectionParser;
  }
  public function getName() {
    return $this->staticReflectionParser
      ->getClassName();
  }
  public function getDocComment() {
    return $this->staticReflectionParser
      ->getDocComment();
  }
  public function getNamespaceName() {
    return $this->staticReflectionParser
      ->getNamespaceName();
  }
  public function getUseStatements() {
    return $this->staticReflectionParser
      ->getUseStatements();
  }
  public function getMethod($name) {
    return $this->staticReflectionParser
      ->getReflectionMethod($name);
  }
  public function getProperty($name) {
    return $this->staticReflectionParser
      ->getReflectionProperty($name);
  }
  public static function export($argument, $return = false) {
    throw new ReflectionException('Method not implemented');
  }
  public function getConstant($name) {
    throw new ReflectionException('Method not implemented');
  }
  public function getConstants() {
    throw new ReflectionException('Method not implemented');
  }
  public function getConstructor() {
    throw new ReflectionException('Method not implemented');
  }
  public function getDefaultProperties() {
    throw new ReflectionException('Method not implemented');
  }
  public function getEndLine() {
    throw new ReflectionException('Method not implemented');
  }
  public function getExtension() {
    throw new ReflectionException('Method not implemented');
  }
  public function getExtensionName() {
    throw new ReflectionException('Method not implemented');
  }
  public function getFileName() {
    throw new ReflectionException('Method not implemented');
  }
  public function getInterfaceNames() {
    throw new ReflectionException('Method not implemented');
  }
  public function getInterfaces() {
    throw new ReflectionException('Method not implemented');
  }
  public function getMethods($filter = NULL) {
    throw new ReflectionException('Method not implemented');
  }
  public function getModifiers() {
    throw new ReflectionException('Method not implemented');
  }
  public function getParentClass() {
    throw new ReflectionException('Method not implemented');
  }
  public function getProperties($filter = NULL) {
    throw new ReflectionException('Method not implemented');
  }
  public function getShortName() {
    throw new ReflectionException('Method not implemented');
  }
  public function getStartLine() {
    throw new ReflectionException('Method not implemented');
  }
  public function getStaticProperties() {
    throw new ReflectionException('Method not implemented');
  }
  public function getStaticPropertyValue($name, $default = '') {
    throw new ReflectionException('Method not implemented');
  }
  public function getTraitAliases() {
    throw new ReflectionException('Method not implemented');
  }
  public function getTraitNames() {
    throw new ReflectionException('Method not implemented');
  }
  public function getTraits() {
    throw new ReflectionException('Method not implemented');
  }
  public function hasConstant($name) {
    throw new ReflectionException('Method not implemented');
  }
  public function hasMethod($name) {
    throw new ReflectionException('Method not implemented');
  }
  public function hasProperty($name) {
    throw new ReflectionException('Method not implemented');
  }
  public function implementsInterface($interface) {
    throw new ReflectionException('Method not implemented');
  }
  public function inNamespace() {
    throw new ReflectionException('Method not implemented');
  }
  public function isAbstract() {
    throw new ReflectionException('Method not implemented');
  }
  public function isCloneable() {
    throw new ReflectionException('Method not implemented');
  }
  public function isFinal() {
    throw new ReflectionException('Method not implemented');
  }
  public function isInstance($object) {
    throw new ReflectionException('Method not implemented');
  }
  public function isInstantiable() {
    throw new ReflectionException('Method not implemented');
  }
  public function isInterface() {
    throw new ReflectionException('Method not implemented');
  }
  public function isInternal() {
    throw new ReflectionException('Method not implemented');
  }
  public function isIterateable() {
    throw new ReflectionException('Method not implemented');
  }
  public function isSubclassOf($class) {
    throw new ReflectionException('Method not implemented');
  }
  public function isTrait() {
    throw new ReflectionException('Method not implemented');
  }
  public function isUserDefined() {
    throw new ReflectionException('Method not implemented');
  }
  public function newInstance($args) {
    throw new ReflectionException('Method not implemented');
  }
  public function newInstanceArgs(array $args = array()) {
    throw new ReflectionException('Method not implemented');
  }
  public function newInstanceWithoutConstructor() {
    throw new ReflectionException('Method not implemented');
  }
  public function setStaticPropertyValue($name, $value) {
    throw new ReflectionException('Method not implemented');
  }
  public function __toString() {
    throw new ReflectionException('Method not implemented');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
StaticReflectionClass::$staticReflectionParser private property The static reflection parser object.
StaticReflectionClass::export public static function
StaticReflectionClass::getConstant public function
StaticReflectionClass::getConstants public function
StaticReflectionClass::getConstructor public function
StaticReflectionClass::getDefaultProperties public function
StaticReflectionClass::getDocComment public function
StaticReflectionClass::getEndLine public function
StaticReflectionClass::getExtension public function
StaticReflectionClass::getExtensionName public function
StaticReflectionClass::getFileName public function
StaticReflectionClass::getInterfaceNames public function
StaticReflectionClass::getInterfaces public function
StaticReflectionClass::getMethod public function
StaticReflectionClass::getMethods public function
StaticReflectionClass::getModifiers public function
StaticReflectionClass::getName public function
StaticReflectionClass::getNamespaceName public function
StaticReflectionClass::getParentClass public function
StaticReflectionClass::getProperties public function
StaticReflectionClass::getProperty public function
StaticReflectionClass::getShortName public function
StaticReflectionClass::getStartLine public function
StaticReflectionClass::getStaticProperties public function
StaticReflectionClass::getStaticPropertyValue public function
StaticReflectionClass::getTraitAliases public function
StaticReflectionClass::getTraitNames public function
StaticReflectionClass::getTraits public function
StaticReflectionClass::getUseStatements public function
StaticReflectionClass::hasConstant public function
StaticReflectionClass::hasMethod public function
StaticReflectionClass::hasProperty public function
StaticReflectionClass::implementsInterface public function
StaticReflectionClass::inNamespace public function
StaticReflectionClass::isAbstract public function
StaticReflectionClass::isCloneable public function
StaticReflectionClass::isFinal public function
StaticReflectionClass::isInstance public function
StaticReflectionClass::isInstantiable public function
StaticReflectionClass::isInterface public function
StaticReflectionClass::isInternal public function
StaticReflectionClass::isIterateable public function
StaticReflectionClass::isSubclassOf public function
StaticReflectionClass::isTrait public function
StaticReflectionClass::isUserDefined public function
StaticReflectionClass::newInstance public function
StaticReflectionClass::newInstanceArgs public function
StaticReflectionClass::newInstanceWithoutConstructor public function
StaticReflectionClass::setStaticPropertyValue public function
StaticReflectionClass::__construct public function
StaticReflectionClass::__toString public function