UML diagram
With Dia you can associate comments with classes, attributes,
methods and methods parameters. GENERATE_DOC_TAGS parameter from configuration
file dia-uml2php5.conf.xsl allow the plugin to generate comments in the source
code if its set to ON (default). In this case, UML2PHP5 will generate phpDocumentor's tags
@var, @access, @param and @return associated with attributes,
methods and methods parameters.
Support by UML2PHP5
| Constraint |
Supported |
| Generate comments |
YES |
| Generate @var, @access, @param and @return tags |
YES |
File: ProcesseurXslt.class.php
<?php
class ProcesseurXslt {
protected $XML;
protected $XSLFile;
public function __construct($xml, $xsl) {
}
public final function getResult() {
}
}
?>