summaryrefslogtreecommitdiffstats
path: root/src/interfaces
diff options
context:
space:
mode:
authorKore Nordmann <github@kore-nordmann.de>2007-06-12 12:32:55 +0000
committerKore Nordmann <github@kore-nordmann.de>2007-06-12 12:32:55 +0000
commit99117b7f9eb39a6d77eededce51a4d0aa895cc5b (patch)
tree9b42094ef2a5e5bbc3b300febc45113ba408d5f6 /src/interfaces
parent9292a36e53780d9daf6f367d44d386fd98f08b40 (diff)
downloadzetacomponents-graph-99117b7f9eb39a6d77eededce51a4d0aa895cc5b.zip
zetacomponents-graph-99117b7f9eb39a6d77eededce51a4d0aa895cc5b.tar.gz
- Fixed version tag in docblocks
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/axis_label_renderer.php1
-rw-r--r--src/interfaces/chart.php10
-rw-r--r--src/interfaces/dataset_property.php1
-rw-r--r--src/interfaces/driver.php1
-rw-r--r--src/interfaces/element.php1
-rw-r--r--src/interfaces/palette.php1
-rw-r--r--src/interfaces/radar_renderer.php1
-rw-r--r--src/interfaces/renderer.php1
8 files changed, 15 insertions, 2 deletions
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
OpenPOWER on IntegriCloud