From 91de75500ffc36aa01a7a5c9b27bc5e8f740468c Mon Sep 17 00:00:00 2001 From: Steven Watanabe Date: Thu, 5 Apr 2012 14:41:47 +0000 Subject: [PATCH] Add a synopsis to abstract-target [SVN r77781] --- v2/doc/src/abstract-target.xml | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/v2/doc/src/abstract-target.xml b/v2/doc/src/abstract-target.xml index 252253054..dad53380c 100644 --- a/v2/doc/src/abstract-target.xml +++ b/v2/doc/src/abstract-target.xml @@ -13,6 +13,17 @@ Base class for all abstract targets. + +class abstract-target { + rule __init__ ( name : project ) + rule name ( ) + rule project ( ) + rule location ( ) + rule full-name ( ) + rule generate ( property-set ) +} + + Classes derived from abstract-target: @@ -31,19 +42,19 @@ - rule __init__ ( name : project-target ) + rule __init__ ( name : project ) - name + name - Name of the target in Jamfile. + The name of the target in the Jamfile. - + - project-target + project - The project target to which this one belongs. + The project to which this target belongs. @@ -65,7 +76,7 @@ Abstract Target rule project ( ) - Returns the project for this target. + Returns the project for this target. @@ -74,7 +85,7 @@ Abstract Target rule location ( ) - Return the location where the target was declared. + Returns the location where the target was declared.