diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-06-12 12:32:55 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-06-12 12:32:55 +0000 |
commit | 99117b7f9eb39a6d77eededce51a4d0aa895cc5b (patch) | |
tree | 9b42094ef2a5e5bbc3b300febc45113ba408d5f6 | |
parent | 9292a36e53780d9daf6f367d44d386fd98f08b40 (diff) | |
download | zetacomponents-graph-99117b7f9eb39a6d77eededce51a4d0aa895cc5b.zip zetacomponents-graph-99117b7f9eb39a6d77eededce51a4d0aa895cc5b.tar.gz |
- Fixed version tag in docblocks
102 files changed, 136 insertions, 56 deletions
diff --git a/src/axis/date.php b/src/axis/date.php index bb588b4..42a3bca 100644 --- a/src/axis/date.php +++ b/src/axis/date.php @@ -26,6 +26,7 @@ * Format of date string * Like http://php.net/date * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/axis/labeled.php b/src/axis/labeled.php index 691679d..d48b3f3 100644 --- a/src/axis/labeled.php +++ b/src/axis/labeled.php @@ -14,6 +14,7 @@ * @property float $labelCount * Define count of displayed labels on the axis * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/axis/logarithmic.php b/src/axis/logarithmic.php index a697a2d..9079200 100644 --- a/src/axis/logarithmic.php +++ b/src/axis/logarithmic.php @@ -30,6 +30,7 @@ * @property-read float $maxValue * Maximum value to display on this axis. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/axis/numeric.php b/src/axis/numeric.php index 563bb1d..fcdc7c4 100644 --- a/src/axis/numeric.php +++ b/src/axis/numeric.php @@ -24,6 +24,7 @@ * @property-read float $maxValue * Maximum value to display on this axis. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/charts/bar.php b/src/charts/bar.php index 32ff49c..7c030ce 100644 --- a/src/charts/bar.php +++ b/src/charts/bar.php @@ -52,6 +52,7 @@ * $chart->legend->position = ezcGraph::RIGHT; * </code> * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/charts/line.php b/src/charts/line.php index 4ba9c52..d04611d 100644 --- a/src/charts/line.php +++ b/src/charts/line.php @@ -52,6 +52,7 @@ * $chart->legend->position = ezcGraph::RIGHT; * </code> * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/charts/pie.php b/src/charts/pie.php index 4d616c8..e346569 100644 --- a/src/charts/pie.php +++ b/src/charts/pie.php @@ -43,6 +43,7 @@ * $chart->legend->position = ezcGraph::RIGHT; * </code> * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/charts/radar.php b/src/charts/radar.php index c5e7064..9460a0f 100644 --- a/src/charts/radar.php +++ b/src/charts/radar.php @@ -52,6 +52,7 @@ * $chart->legend->position = ezcGraph::RIGHT; * </code> * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/colors/color.php b/src/colors/color.php index b16d1ad..0f7664b 100644 --- a/src/colors/color.php +++ b/src/colors/color.php @@ -24,6 +24,7 @@ * @property integer $alpha * Alpha RGBA value of color. * + * @version //autogentag// * @package Graph */ class ezcGraphColor extends ezcBaseOptions diff --git a/src/colors/linear_gradient.php b/src/colors/linear_gradient.php index 72716b5..54def3a 100644 --- a/src/colors/linear_gradient.php +++ b/src/colors/linear_gradient.php @@ -22,6 +22,7 @@ * @property ezcGraphColor $endColor * Ending color of the gradient. * + * @version //autogentag// * @package Graph */ class ezcGraphLinearGradient extends ezcGraphColor diff --git a/src/colors/radial_gradient.php b/src/colors/radial_gradient.php index 9e63a8d..8d43bbd 100644 --- a/src/colors/radial_gradient.php +++ b/src/colors/radial_gradient.php @@ -26,6 +26,7 @@ * @property ezcGraphColor $endColor * Ending color of the gradient. * + * @version //autogentag// * @package Graph */ class ezcGraphRadialGradient extends ezcGraphColor diff --git a/src/data_container/base.php b/src/data_container/base.php index 7e6bba2..41b666b 100644 --- a/src/data_container/base.php +++ b/src/data_container/base.php @@ -11,6 +11,7 @@ * Container class for datasets used by the chart classes. Implements usefull * interfaces for convenient access to the datasets. * + * @version //autogentag// * @package Graph */ diff --git a/src/data_container/single.php b/src/data_container/single.php index b47af49..6c16bb0 100644 --- a/src/data_container/single.php +++ b/src/data_container/single.php @@ -11,6 +11,7 @@ * Container class for datasets, which ensures, that only one dataset is used. * Needed for pie charts which can only display one dataset. * + * @version //autogentag// * @package Graph */ diff --git a/src/datasets/array.php b/src/datasets/array.php index ee7f0df..25e01c4 100644 --- a/src/datasets/array.php +++ b/src/datasets/array.php @@ -10,6 +10,7 @@ /** * Dataset class which receives arrays and use them as a base for datasets. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/datasets/average.php b/src/datasets/average.php index c58a6af..e2f701e 100644 --- a/src/datasets/average.php +++ b/src/datasets/average.php @@ -16,6 +16,7 @@ * @property int $resolution * Resolution used to draw line in graph * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/datasets/base.php b/src/datasets/base.php index 277146e..e51e97e 100644 --- a/src/datasets/base.php +++ b/src/datasets/base.php @@ -24,6 +24,7 @@ * @property string $url * URL associated with datapoint * + * @version //autogentag// * @package Graph * @access private */ diff --git a/src/datasets/numeric.php b/src/datasets/numeric.php index f59b111..c57f307 100644 --- a/src/datasets/numeric.php +++ b/src/datasets/numeric.php @@ -22,6 +22,7 @@ * @property int $resolution * Steps used to draw line in graph * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/datasets/property/boolean.php b/src/datasets/property/boolean.php index f3af43d..66207f6 100644 --- a/src/datasets/property/boolean.php +++ b/src/datasets/property/boolean.php @@ -10,6 +10,7 @@ /** * Class for integer properties of datasets * + * @version //autogentag// * @package Graph */ class ezcGraphDataSetBooleanProperty extends ezcGraphDataSetProperty diff --git a/src/datasets/property/color.php b/src/datasets/property/color.php index b80fb4b..ecc7008 100644 --- a/src/datasets/property/color.php +++ b/src/datasets/property/color.php @@ -10,6 +10,7 @@ /** * Class for color properties of datasets * + * @version //autogentag// * @package Graph */ class ezcGraphDataSetColorProperty extends ezcGraphDataSetProperty diff --git a/src/datasets/property/integer.php b/src/datasets/property/integer.php index 4e06032..2e58a77 100644 --- a/src/datasets/property/integer.php +++ b/src/datasets/property/integer.php @@ -10,6 +10,7 @@ /** * Class for integer properties of datasets * + * @version //autogentag// * @package Graph */ class ezcGraphDataSetIntProperty extends ezcGraphDataSetProperty diff --git a/src/datasets/property/string.php b/src/datasets/property/string.php index d07a5fa..d48cbcc 100644 --- a/src/datasets/property/string.php +++ b/src/datasets/property/string.php @@ -10,6 +10,7 @@ /** * Class for string properties of datasets * + * @version //autogentag// * @package Graph */ class ezcGraphDataSetStringProperty extends ezcGraphDataSetProperty diff --git a/src/driver/flash.php b/src/driver/flash.php index 74de773..d8b10ec 100644 --- a/src/driver/flash.php +++ b/src/driver/flash.php @@ -10,6 +10,7 @@ /** * Driver to create Flash4 (SWF) files as graph output. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/driver/gd.php b/src/driver/gd.php index a3bea95..7fb1677 100644 --- a/src/driver/gd.php +++ b/src/driver/gd.php @@ -16,6 +16,7 @@ * ext/gd. It is possible to use Free Type 2, native TTF and PostScript Type 1 * fonts. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/driver/svg.php b/src/driver/svg.php index 81e2aed..573097c 100644 --- a/src/driver/svg.php +++ b/src/driver/svg.php @@ -10,6 +10,7 @@ /** * Extension of the basic Driver package to utilize the SVGlib. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/driver/verbose.php b/src/driver/verbose.php index d13307d..64c8138 100644 --- a/src/driver/verbose.php +++ b/src/driver/verbose.php @@ -11,6 +11,7 @@ /** * Extension of the basic Driver package to utilize the SVGlib. * + * @version //autogentag// * @package Graph * @access private */ diff --git a/src/element/axis.php b/src/element/axis.php index 0362481..f5eba04 100644 --- a/src/element/axis.php +++ b/src/element/axis.php @@ -43,6 +43,7 @@ * reformatted label. * string function( label, step ) * + * @version //autogentag// * @package Graph */ abstract class ezcGraphChartElementAxis extends ezcGraphChartElement diff --git a/src/element/background.php b/src/element/background.php index 834a569..0aef4ba 100644 --- a/src/element/background.php +++ b/src/element/background.php @@ -34,6 +34,7 @@ * @property int $repeat * Defines how the background image gets repeated * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/element/legend.php b/src/element/legend.php index 8cf7473..cab5ec9 100644 --- a/src/element/legend.php +++ b/src/element/legend.php @@ -24,6 +24,7 @@ * @property int $spacing * Space between labels elements in pixel. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/element/text.php b/src/element/text.php index 478501e..cae5e89 100644 --- a/src/element/text.php +++ b/src/element/text.php @@ -13,6 +13,7 @@ * @property float $maxHeight * Maximum percent of bounding used to display the text. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/exceptions/date_parsing.php b/src/exceptions/date_parsing.php index 2771ed6..9407d62 100644 --- a/src/exceptions/date_parsing.php +++ b/src/exceptions/date_parsing.php @@ -3,7 +3,7 @@ * File containing the ezcGraphErrorParsingDateException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * could not be parsed. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphErrorParsingDateException extends ezcGraphException { diff --git a/src/exceptions/exception.php b/src/exceptions/exception.php index ba8ef1f..ea64cdd 100644 --- a/src/exceptions/exception.php +++ b/src/exceptions/exception.php @@ -3,7 +3,7 @@ * Base exception for the Graph package. * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * General exception container for the Graph component. * * @package Graph - * @version //autogen// + * @version //autogentag// */ abstract class ezcGraphException extends ezcBaseException { diff --git a/src/exceptions/flash_bitmap_boundings.php b/src/exceptions/flash_bitmap_boundings.php index 939a827..b158ec9 100644 --- a/src/exceptions/flash_bitmap_boundings.php +++ b/src/exceptions/flash_bitmap_boundings.php @@ -3,7 +3,7 @@ * File containing the ezcGraphFlashBitmapBoundingsException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * when an image does not have the requested size. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphFlashBitmapBoundingsException extends ezcGraphException { diff --git a/src/exceptions/flash_bitmap_type.php b/src/exceptions/flash_bitmap_type.php index b596787..1e0e850 100644 --- a/src/exceptions/flash_bitmap_type.php +++ b/src/exceptions/flash_bitmap_type.php @@ -3,7 +3,7 @@ * File containing the ezcGraphFlashBitmapTypeException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * all other image types. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphFlashBitmapTypeException extends ezcGraphException { diff --git a/src/exceptions/font_rendering.php b/src/exceptions/font_rendering.php index 33c531c..d9dbe4c 100644 --- a/src/exceptions/font_rendering.php +++ b/src/exceptions/font_rendering.php @@ -3,7 +3,7 @@ * File containing the ezcGraphFontRenderingException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * minimum font size in the desinated bounding box. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphFontRenderingException extends ezcGraphException { diff --git a/src/exceptions/font_type.php b/src/exceptions/font_type.php index a5aef55..e4b0770 100644 --- a/src/exceptions/font_type.php +++ b/src/exceptions/font_type.php @@ -3,7 +3,7 @@ * File containing the ezcGraphUnknownFontTypeException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -11,7 +11,7 @@ * Exception thrown if font type is unknown or not supported. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphUnknownFontTypeException extends ezcGraphException { diff --git a/src/exceptions/incompatible_driver.php b/src/exceptions/incompatible_driver.php index c1ea924..8e386bc 100644 --- a/src/exceptions/incompatible_driver.php +++ b/src/exceptions/incompatible_driver.php @@ -3,7 +3,7 @@ * File containing the ezcGraphToolsIncompatibleDriverException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * graph tools. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphToolsIncompatibleDriverException extends ezcGraphException { diff --git a/src/exceptions/invalid_data.php b/src/exceptions/invalid_data.php index 950f397..c5901ab 100644 --- a/src/exceptions/invalid_data.php +++ b/src/exceptions/invalid_data.php @@ -3,7 +3,7 @@ * File containing the ezcGraphInvalidDataException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * for some reason. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphInvalidDataException extends ezcGraphException { diff --git a/src/exceptions/invalid_data_source.php b/src/exceptions/invalid_data_source.php index 9ed9e42..efc05c9 100644 --- a/src/exceptions/invalid_data_source.php +++ b/src/exceptions/invalid_data_source.php @@ -3,7 +3,7 @@ * File containing the ezcGraphInvalidArrayDataSourceException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * data set. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphInvalidArrayDataSourceException extends ezcGraphException { diff --git a/src/exceptions/invalid_dimensions.php b/src/exceptions/invalid_dimensions.php index 19b493b..5f20676 100644 --- a/src/exceptions/invalid_dimensions.php +++ b/src/exceptions/invalid_dimensions.php @@ -3,7 +3,7 @@ * File containing the ezcGraphMatrixInvalidDimensionsException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * matrix dimensions. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphMatrixInvalidDimensionsException extends ezcGraphException { diff --git a/src/exceptions/invalid_display_type.php b/src/exceptions/invalid_display_type.php index 40214d1..41c8dca 100644 --- a/src/exceptions/invalid_display_type.php +++ b/src/exceptions/invalid_display_type.php @@ -3,7 +3,7 @@ * File containing the ezcGraphInvalidDisplayTypeException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -11,7 +11,7 @@ * Exception thrown when an unsupported data type is set for the current chart. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphInvalidDisplayTypeException extends ezcGraphException { diff --git a/src/exceptions/invalid_font.php b/src/exceptions/invalid_font.php index 23d61d9..e9cc436 100644 --- a/src/exceptions/invalid_font.php +++ b/src/exceptions/invalid_font.php @@ -3,7 +3,7 @@ * File containing the ezcGraphInvalidFontTypeException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -11,7 +11,7 @@ * Exception thrown if font type cannot be rendered with one driver. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphInvalidFontTypeException extends ezcGraphException { diff --git a/src/exceptions/invalid_id.php b/src/exceptions/invalid_id.php index dc7f995..fa83852 100644 --- a/src/exceptions/invalid_id.php +++ b/src/exceptions/invalid_id.php @@ -3,7 +3,7 @@ * File containing the ezcGraphSvgDriverInvalidIdException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * elements in. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphSvgDriverInvalidIdException extends ezcGraphException { diff --git a/src/exceptions/invalid_image_file.php b/src/exceptions/invalid_image_file.php index 3a55aa6..f45cabf 100644 --- a/src/exceptions/invalid_image_file.php +++ b/src/exceptions/invalid_image_file.php @@ -3,7 +3,7 @@ * File containing the ezcGraphInvalidImageFileException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -11,7 +11,7 @@ * Exception thrown when a file can not be used as a image file. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphInvalidImageFileException extends ezcGraphException { diff --git a/src/exceptions/invalid_keys.php b/src/exceptions/invalid_keys.php index 7dde875..8dfd51d 100644 --- a/src/exceptions/invalid_keys.php +++ b/src/exceptions/invalid_keys.php @@ -3,7 +3,7 @@ * File containing the ezcGraphDatasetAverageInvalidKeysException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * datasets. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphDatasetAverageInvalidKeysException extends ezcGraphException { diff --git a/src/exceptions/no_data.php b/src/exceptions/no_data.php index 0be9ccd..3260c77 100644 --- a/src/exceptions/no_data.php +++ b/src/exceptions/no_data.php @@ -3,7 +3,7 @@ * File containing the ezcGraphNoDataException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -11,7 +11,7 @@ * Exception shown, when trying to render a chart without assigning any data. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphNoDataException extends ezcGraphException { diff --git a/src/exceptions/no_such_data.php b/src/exceptions/no_such_data.php index de9f554..627c672 100644 --- a/src/exceptions/no_such_data.php +++ b/src/exceptions/no_such_data.php @@ -3,7 +3,7 @@ * File containing the ezcGraphNoSuchDataException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -11,7 +11,7 @@ * Exception shown, when trying to access not existing data in datasets. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphNoSuchDataException extends ezcGraphException { diff --git a/src/exceptions/no_such_dataset.php b/src/exceptions/no_such_dataset.php index a96c961..c731026 100644 --- a/src/exceptions/no_such_dataset.php +++ b/src/exceptions/no_such_dataset.php @@ -3,7 +3,7 @@ * File containing the ezcGraphNoSuchDataSetException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -11,7 +11,7 @@ * Exception thrown when trying to access a non exising dataset. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphNoSuchDataSetException extends ezcGraphException { diff --git a/src/exceptions/no_such_element.php b/src/exceptions/no_such_element.php index 9798221..6285e8e 100644 --- a/src/exceptions/no_such_element.php +++ b/src/exceptions/no_such_element.php @@ -3,7 +3,7 @@ * File containing the ezcGraphNoSuchElementException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -11,7 +11,7 @@ * Exception thrown when trying to access a non existing chart element. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphNoSuchElementException extends ezcGraphException { diff --git a/src/exceptions/not_rendered.php b/src/exceptions/not_rendered.php index b95d780..fcbce05 100644 --- a/src/exceptions/not_rendered.php +++ b/src/exceptions/not_rendered.php @@ -3,7 +3,7 @@ * File containing the ezcGraphToolsNotRenderedException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * requires information only available in rendered charts. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphToolsNotRenderedException extends ezcGraphException { diff --git a/src/exceptions/out_of_boundings.php b/src/exceptions/out_of_boundings.php index c090c6e..768fdf0 100644 --- a/src/exceptions/out_of_boundings.php +++ b/src/exceptions/out_of_boundings.php @@ -3,7 +3,7 @@ * File containing the ezcGraphMatrixOutOfBoundingsException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * the matrix. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphMatrixOutOfBoundingsException extends ezcGraphException { diff --git a/src/exceptions/out_of_logarithmical_boundings.php b/src/exceptions/out_of_logarithmical_boundings.php index c129337..641850d 100644 --- a/src/exceptions/out_of_logarithmical_boundings.php +++ b/src/exceptions/out_of_logarithmical_boundings.php @@ -3,7 +3,7 @@ * File containing the ezcGraphOutOfLogithmicalBoundingsException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * logarithmical scaled axis. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphOutOfLogithmicalBoundingsException extends ezcGraphException { diff --git a/src/exceptions/reducement_failed.php b/src/exceptions/reducement_failed.php index fb5e649..8a1e6f2 100644 --- a/src/exceptions/reducement_failed.php +++ b/src/exceptions/reducement_failed.php @@ -3,7 +3,7 @@ * File containing the ezcGraphReducementFailedException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * failed because the shape was already too small. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphReducementFailedException extends ezcGraphException { diff --git a/src/exceptions/too_many_datasets.php b/src/exceptions/too_many_datasets.php index 95e0ac6..c14d929 100644 --- a/src/exceptions/too_many_datasets.php +++ b/src/exceptions/too_many_datasets.php @@ -3,7 +3,7 @@ * File containing the ezcGraphTooManyDataSetsExceptions class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * container. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphTooManyDataSetsExceptions extends ezcGraphException { diff --git a/src/exceptions/unknown_color_definition.php b/src/exceptions/unknown_color_definition.php index b424478..437e14f 100644 --- a/src/exceptions/unknown_color_definition.php +++ b/src/exceptions/unknown_color_definition.php @@ -3,7 +3,7 @@ * File containing the ezcGraphUnknownColorDefinitionException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * ezcGraphColor. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphUnknownColorDefinitionException extends ezcGraphException { diff --git a/src/exceptions/unregular_steps.php b/src/exceptions/unregular_steps.php index 7c67b5c..19f15d4 100644 --- a/src/exceptions/unregular_steps.php +++ b/src/exceptions/unregular_steps.php @@ -3,7 +3,7 @@ * File containing the ezcGraphUnregularStepsException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * unregular step sizes. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphUnregularStepsException extends ezcGraphException { diff --git a/src/exceptions/unsupported_image_type.php b/src/exceptions/unsupported_image_type.php index 086ef0f..a51d373 100644 --- a/src/exceptions/unsupported_image_type.php +++ b/src/exceptions/unsupported_image_type.php @@ -3,7 +3,7 @@ * File containing the ezcGraphGdDriverUnsupportedImageTypeException class * * @package Graph - * @version //autogen// + * @version //autogentag// * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ @@ -12,7 +12,7 @@ * be used in the gd driver. * * @package Graph - * @version //autogen// + * @version //autogentag// */ class ezcGraphGdDriverUnsupportedImageTypeException extends ezcGraphException { diff --git a/src/graph.php b/src/graph.php index e9421b7..6653533 100644 --- a/src/graph.php +++ b/src/graph.php @@ -10,6 +10,7 @@ /** * Base options class for all eZ components. * + * @version //autogentag// * @package Graph */ class ezcGraph diff --git a/src/interfaces/axis_label_renderer.php b/src/interfaces/axis_label_renderer.php index 73793af..e58d913 100644 --- a/src/interfaces/axis_label_renderer.php +++ b/src/interfaces/axis_label_renderer.php @@ -31,6 +31,7 @@ * @property int $labelPadding * Padding of labels. * + * @version //autogentag// * @package Graph */ abstract class ezcGraphAxisLabelRenderer extends ezcBaseOptions diff --git a/src/interfaces/chart.php b/src/interfaces/chart.php index c7cf2b4..96a44b1 100644 --- a/src/interfaces/chart.php +++ b/src/interfaces/chart.php @@ -11,6 +11,7 @@ * Class to represent a complete chart. * * @package Graph + * @version //autogentag// */ abstract class ezcGraphChart { @@ -271,9 +272,12 @@ abstract class ezcGraphChart * Creates basic visual chart elements from the chart to be processed by * the renderer. * + * @param int $width + * @param int $height + * @param string $file * @return void */ - abstract public function render( $widht, $height, $file = null ); + abstract public function render( $width, $height, $file = null ); /** * Renders this chart to direct output @@ -281,9 +285,11 @@ abstract class ezcGraphChart * Does the same as ezcGraphChart::render(), but renders directly to * output and not into a file. * + * @param int $width + * @param int $height * @return void */ - abstract public function renderToOutput( $widht, $height ); + abstract public function renderToOutput( $width, $height ); } ?> diff --git a/src/interfaces/dataset_property.php b/src/interfaces/dataset_property.php index 0550f85..7fd7d52 100644 --- a/src/interfaces/dataset_property.php +++ b/src/interfaces/dataset_property.php @@ -10,6 +10,7 @@ /** * Abstract class for properties of datasets * + * @version //autogentag// * @package Graph */ abstract class ezcGraphDataSetProperty implements ArrayAccess diff --git a/src/interfaces/driver.php b/src/interfaces/driver.php index 69aa161..84ea403 100644 --- a/src/interfaces/driver.php +++ b/src/interfaces/driver.php @@ -10,6 +10,7 @@ /** * Abstract class to be extended for ezcGraph output drivers. * + * @version //autogentag// * @package Graph */ abstract class ezcGraphDriver diff --git a/src/interfaces/element.php b/src/interfaces/element.php index fc734d4..b2523d5 100644 --- a/src/interfaces/element.php +++ b/src/interfaces/element.php @@ -40,6 +40,7 @@ * @property-read ezcGraphBoundings $boundings * Boundings of this elements. * + * @version //autogentag// * @package Graph */ abstract class ezcGraphChartElement extends ezcBaseOptions diff --git a/src/interfaces/palette.php b/src/interfaces/palette.php index 76517e4..40a2365 100644 --- a/src/interfaces/palette.php +++ b/src/interfaces/palette.php @@ -10,6 +10,7 @@ /** * Abstract class to contain pallet definitions * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/interfaces/radar_renderer.php b/src/interfaces/radar_renderer.php index a8978d1..f959ef0 100644 --- a/src/interfaces/radar_renderer.php +++ b/src/interfaces/radar_renderer.php @@ -12,6 +12,7 @@ * Interface which adds the methods required for rendering radar charts to a * renderer * + * @version //autogentag// * @package Graph */ interface ezcGraphRadarRenderer diff --git a/src/interfaces/renderer.php b/src/interfaces/renderer.php index a9908f5..5cdc60f 100644 --- a/src/interfaces/renderer.php +++ b/src/interfaces/renderer.php @@ -12,6 +12,7 @@ * Abstract class to transform the basic chart components. To be extended by * three- and twodimensional renderers. * + * @version //autogentag// * @package Graph */ abstract class ezcGraphRenderer diff --git a/src/math/boundings.php b/src/math/boundings.php index d7bbaee..a8f474f 100644 --- a/src/math/boundings.php +++ b/src/math/boundings.php @@ -14,6 +14,7 @@ * Currently only works with plane rectangular boundings, should be enhanced by * rotated rectangular boundings. * + * @version //autogentag// * @package Graph * @access private */ diff --git a/src/math/matrix.php b/src/math/matrix.php index 32cbef2..2fa142b 100644 --- a/src/math/matrix.php +++ b/src/math/matrix.php @@ -11,6 +11,7 @@ /** * Provides a genereic matrix class with basic math operations * + * @version //autogentag// * @package Graph * @access private */ diff --git a/src/math/polynom.php b/src/math/polynom.php index ea678b8..5266191 100644 --- a/src/math/polynom.php +++ b/src/math/polynom.php @@ -10,6 +10,7 @@ /** * Provides a class for generic operations on polynoms * + * @version //autogentag// * @package Graph */ class ezcGraphPolynom diff --git a/src/math/rotation.php b/src/math/rotation.php index cfd9866..c3f3181 100644 --- a/src/math/rotation.php +++ b/src/math/rotation.php @@ -11,6 +11,7 @@ /** * Class to create rotation matrices from given rotation and center point * + * @version //autogentag// * @package Graph * @access private */ diff --git a/src/math/transformation.php b/src/math/transformation.php index 642684b..7f45d41 100644 --- a/src/math/transformation.php +++ b/src/math/transformation.php @@ -12,6 +12,7 @@ * Class defining transformations like scaling and rotation by a * 3x3 transformation matrix for |R^2 * + * @version //autogentag// * @package Graph * @access private */ diff --git a/src/math/translation.php b/src/math/translation.php index 04fe642..8c2b5a6 100644 --- a/src/math/translation.php +++ b/src/math/translation.php @@ -11,6 +11,7 @@ /** * Class creating translation matrices from given movements * + * @version //autogentag// * @package Graph * @access private */ diff --git a/src/math/vector.php b/src/math/vector.php index 6397c31..0fe26fe 100644 --- a/src/math/vector.php +++ b/src/math/vector.php @@ -11,6 +11,7 @@ /** * Represents two dimensional vectors * + * @version //autogentag// * @package Graph * @access private */ diff --git a/src/options/chart.php b/src/options/chart.php index feec4cb..075a852 100644 --- a/src/options/chart.php +++ b/src/options/chart.php @@ -17,6 +17,7 @@ * @property int $font * Font used in the graph. * + * @version //autogentag// * @package Graph */ class ezcGraphChartOptions extends ezcBaseOptions diff --git a/src/options/driver.php b/src/options/driver.php index b967192..97cfebe 100644 --- a/src/options/driver.php +++ b/src/options/driver.php @@ -25,6 +25,7 @@ * @property string $autoShortenStringPostFix * String to append to shortened strings, if there is enough space * + * @version //autogentag// * @package Graph */ abstract class ezcGraphDriverOptions extends ezcBaseOptions diff --git a/src/options/flash_driver.php b/src/options/flash_driver.php index e4fed61..ecf66fe 100644 --- a/src/options/flash_driver.php +++ b/src/options/flash_driver.php @@ -17,6 +17,7 @@ * Resolution for circles, until I understand how to draw ellipses * with SWFShape::curveTo() * + * @version //autogentag// * @package Graph */ class ezcGraphFlashDriverOptions extends ezcGraphDriverOptions diff --git a/src/options/font.php b/src/options/font.php index 80040c3..7ce1529 100644 --- a/src/options/font.php +++ b/src/options/font.php @@ -46,6 +46,7 @@ * Color of text shadow. If false the inverse color of the text * color will be used. * + * @version //autogentag// * @package Graph */ class ezcGraphFontOptions extends ezcBaseOptions diff --git a/src/options/gd_driver.php b/src/options/gd_driver.php index 8235bd8..2a3f10a 100644 --- a/src/options/gd_driver.php +++ b/src/options/gd_driver.php @@ -29,6 +29,7 @@ * Degree step used to interpolate round image primitives by * polygons for image maps * + * @version //autogentag// * @package Graph */ class ezcGraphGdDriverOptions extends ezcGraphDriverOptions diff --git a/src/options/line_chart.php b/src/options/line_chart.php index 5e884f0..8b52261 100644 --- a/src/options/line_chart.php +++ b/src/options/line_chart.php @@ -26,6 +26,7 @@ * If true, it adds lines to highlight the values position on the * axis. * + * @version //autogentag// * @package Graph */ class ezcGraphLineChartOptions extends ezcGraphChartOptions diff --git a/src/options/pie_chart.php b/src/options/pie_chart.php index c975bf9..de7b12d 100644 --- a/src/options/pie_chart.php +++ b/src/options/pie_chart.php @@ -30,6 +30,7 @@ * Caption for values summarized because they are lower then the * configured tresh hold. * + * @version //autogentag// * @package Graph */ class ezcGraphPieChartOptions extends ezcGraphChartOptions diff --git a/src/options/radar_chart.php b/src/options/radar_chart.php index a163035..3daf3f8 100644 --- a/src/options/radar_chart.php +++ b/src/options/radar_chart.php @@ -26,6 +26,7 @@ * If true, it adds lines to highlight the values position on the * axis. * + * @version //autogentag// * @package Graph */ class ezcGraphRadarChartOptions extends ezcGraphChartOptions diff --git a/src/options/renderer.php b/src/options/renderer.php index 695a5f6..60ff7eb 100644 --- a/src/options/renderer.php +++ b/src/options/renderer.php @@ -52,6 +52,7 @@ * @property float $pieChartGleamBorder * Do not draw gleam on an outer border of this size. * + * @version //autogentag// * @package Graph */ class ezcGraphRendererOptions extends ezcGraphChartOptions diff --git a/src/options/renderer_2d.php b/src/options/renderer_2d.php index f38a948..6a9530f 100644 --- a/src/options/renderer_2d.php +++ b/src/options/renderer_2d.php @@ -17,6 +17,7 @@ * @property float $pieChartShadowColor * Color used for pie chart shadows. * + * @version //autogentag// * @package Graph */ class ezcGraphRenderer2dOptions extends ezcGraphRendererOptions diff --git a/src/options/renderer_3d.php b/src/options/renderer_3d.php index 8cda494..dd6cd8e 100644 --- a/src/options/renderer_3d.php +++ b/src/options/renderer_3d.php @@ -37,6 +37,7 @@ * @property float $barChartGleam * Transparancy for gleam on bar charts * + * @version //autogentag// * @package Graph */ class ezcGraphRenderer3dOptions extends ezcGraphRendererOptions diff --git a/src/options/svg_driver.php b/src/options/svg_driver.php index 9007252..0b9b0be 100644 --- a/src/options/svg_driver.php +++ b/src/options/svg_driver.php @@ -52,6 +52,7 @@ * @property string $linkCursor * CSS value for cursor property used for linked SVG elements * + * @version //autogentag// * @package Graph */ class ezcGraphSvgDriverOptions extends ezcGraphDriverOptions diff --git a/src/palette/black.php b/src/palette/black.php index 6f25e67..75c3ad0 100644 --- a/src/palette/black.php +++ b/src/palette/black.php @@ -11,6 +11,7 @@ * Dark color pallet for ezcGraph based on Tango style guidelines at * http://tango-project.org/Generic_Icon_Theme_Guidelines * + * @version //autogentag// * @package Graph */ class ezcGraphPaletteBlack extends ezcGraphPalette diff --git a/src/palette/ez.php b/src/palette/ez.php index b8b4090..7984d84 100644 --- a/src/palette/ez.php +++ b/src/palette/ez.php @@ -10,6 +10,7 @@ /** * Color pallet for ezcGraph based on eZ color scheme * + * @version //autogentag// * @package Graph */ class ezcGraphPaletteEz extends ezcGraphPalette diff --git a/src/palette/ez_blue.php b/src/palette/ez_blue.php index f630832..7d3d178 100644 --- a/src/palette/ez_blue.php +++ b/src/palette/ez_blue.php @@ -10,6 +10,7 @@ /** * Light blue color pallet for ezcGraph based on blue eZ colors * + * @version //autogentag// * @package Graph */ class ezcGraphPaletteEzBlue extends ezcGraphPalette diff --git a/src/palette/ez_green.php b/src/palette/ez_green.php index d962f7d..b1cc91a 100644 --- a/src/palette/ez_green.php +++ b/src/palette/ez_green.php @@ -10,6 +10,7 @@ /** * Light green color pallet for ezcGraph based on green eZ colors * + * @version //autogentag// * @package Graph */ class ezcGraphPaletteEzGreen extends ezcGraphPalette diff --git a/src/palette/ez_red.php b/src/palette/ez_red.php index cdb7c2f..34f4fd4 100644 --- a/src/palette/ez_red.php +++ b/src/palette/ez_red.php @@ -10,6 +10,7 @@ /** * Light red color pallet for ezcGraph based on red eZ colors * + * @version //autogentag// * @package Graph */ class ezcGraphPaletteEzRed extends ezcGraphPalette diff --git a/src/palette/tango.php b/src/palette/tango.php index e17a7d0..d163b89 100644 --- a/src/palette/tango.php +++ b/src/palette/tango.php @@ -11,6 +11,7 @@ * Light color pallet for ezcGraph based on Tango style guidelines at * http://tango-project.org/Generic_Icon_Theme_Guidelines * + * @version //autogentag// * @package Graph */ class ezcGraphPaletteTango extends ezcGraphPalette diff --git a/src/renderer/2d.php b/src/renderer/2d.php index 2fdda9b..6be4956 100644 --- a/src/renderer/2d.php +++ b/src/renderer/2d.php @@ -11,6 +11,7 @@ /** * Class to transform chart primitives into image primitives * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/renderer/3d.php b/src/renderer/3d.php index 02c56c8..d9771b5 100644 --- a/src/renderer/3d.php +++ b/src/renderer/3d.php @@ -11,6 +11,7 @@ /** * Class to transform chart primitives into image primitives * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/renderer/axis_label_boxed.php b/src/renderer/axis_label_boxed.php index ff19e5c..442e677 100644 --- a/src/renderer/axis_label_boxed.php +++ b/src/renderer/axis_label_boxed.php @@ -12,6 +12,7 @@ * Renders axis labels centered between two axis steps like normally used for * bar charts. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/renderer/axis_label_centered.php b/src/renderer/axis_label_centered.php index 79553ca..2ccc2b8 100644 --- a/src/renderer/axis_label_centered.php +++ b/src/renderer/axis_label_centered.php @@ -16,6 +16,7 @@ * crossed by the other axis which would result in an unreadable * label. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/renderer/axis_label_exact.php b/src/renderer/axis_label_exact.php index 27ec112..233eb01 100644 --- a/src/renderer/axis_label_exact.php +++ b/src/renderer/axis_label_exact.php @@ -16,6 +16,7 @@ * than all other values, to not interfere with the arrow head of * the axis. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/renderer/axis_label_none.php b/src/renderer/axis_label_none.php index a3302be..4cea5f5 100644 --- a/src/renderer/axis_label_none.php +++ b/src/renderer/axis_label_none.php @@ -11,6 +11,7 @@ /** * Renders axis labels like known from charts drawn in analysis * + * @version //autogentag// * @package Graph */ class ezcGraphAxisNoLabelRenderer extends ezcGraphAxisLabelRenderer diff --git a/src/renderer/axis_label_radar.php b/src/renderer/axis_label_radar.php index bc4d783..938c34e 100644 --- a/src/renderer/axis_label_radar.php +++ b/src/renderer/axis_label_radar.php @@ -14,6 +14,7 @@ * @property float $lastStep * Position of last step on the axis to calculate the grid. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/renderer/axis_label_rotated.php b/src/renderer/axis_label_rotated.php index e9f14a1..1567ea2 100644 --- a/src/renderer/axis_label_rotated.php +++ b/src/renderer/axis_label_rotated.php @@ -15,6 +15,7 @@ * @property float $angle * Angle of labels on axis in degrees. * + * @version //autogentag// * @package Graph * @mainclass */ diff --git a/src/structs/context.php b/src/structs/context.php index cdef482..6640d67 100644 --- a/src/structs/context.php +++ b/src/structs/context.php @@ -10,6 +10,7 @@ /** * Struct to represent the context of a renderer operation * + * @version //autogentag// * @package Graph */ class ezcGraphContext extends ezcBaseStruct diff --git a/src/structs/coordinate.php b/src/structs/coordinate.php index 7231228..f29f407 100644 --- a/src/structs/coordinate.php +++ b/src/structs/coordinate.php @@ -10,6 +10,7 @@ /** * Represents coordinates in two dimensional catesian coordinate system. * + * @version //autogentag// * @package Graph */ class ezcGraphCoordinate extends ezcBaseStruct diff --git a/src/structs/step.php b/src/structs/step.php index 3dafef6..1838bfa 100644 --- a/src/structs/step.php +++ b/src/structs/step.php @@ -10,6 +10,7 @@ /** * Represents a single step on the axis * + * @version //autogentag// * @package Graph */ class ezcGraphAxisStep diff --git a/src/tools.php b/src/tools.php index a3edeb1..8050a01 100644 --- a/src/tools.php +++ b/src/tools.php @@ -10,6 +10,7 @@ /** * Toolkit for several operation with graphs * + * @version //autogentag// * @package Graph * @mainclass */ |