git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
75 lines
1.8 KiB
PHP
75 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* An extended reflection/documentation class for class properties
|
|
*
|
|
* This class extends the reflectionProperty class by also parsing the
|
|
* comment for javadoc compatible @tags and by providing help
|
|
* functions to generate a WSDL file. The class might also
|
|
* be used to generate a phpdoc on the fly
|
|
*
|
|
*@author KnowledgeTree Team
|
|
*@package Webservice
|
|
*@version Version 0.9
|
|
*@extends reflectionProperty
|
|
*/
|
|
class IPReflectionProperty extends reflectionProperty {
|
|
/** @var string Classname to whom this property belongs */
|
|
public $classname;
|
|
|
|
/** @var string Type description of the property */
|
|
public $type = "";
|
|
|
|
/** @var boolean Determens if the property is a private property */
|
|
public $isPrivate = false;
|
|
|
|
/** @var string */
|
|
public $description;
|
|
|
|
/** @var boolean */
|
|
public $optional = false;
|
|
|
|
/** @var boolean */
|
|
public $autoincrement = false;
|
|
|
|
/** @var string */
|
|
public $fullDescription = "";
|
|
|
|
/** @var string */
|
|
public $smallDescription = "";
|
|
|
|
/** @var string */
|
|
public $name = null;
|
|
|
|
/** @var string */
|
|
private $comment = null;
|
|
|
|
/**
|
|
* constructor. will initiate the commentParser
|
|
*
|
|
* @param string Class name
|
|
* @param string Property name
|
|
* @return void
|
|
*/
|
|
public function __construct($class, $property){
|
|
$this->classname = $class;
|
|
parent::__construct($class, $property);
|
|
$this->parseComment();
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param $annotationName String the annotation name
|
|
* @param $annotationClass String the annotation class
|
|
* @return void
|
|
*/
|
|
public function getAnnotation($annotationName, $annotationClass = null){
|
|
return IPPhpDoc::getAnnotation($this->comment, $annotationName, $annotationClass);
|
|
}
|
|
|
|
private function parseComment(){
|
|
// No getDocComment available for properties in php 5.0.3 :(
|
|
$this->comment = $this->getDocComment();
|
|
new IPReflectionCommentParser($this->comment, $this);
|
|
}
|
|
}
|
|
?>
|