buildframework/helium/sf/java/antdata/tests/data/test_project_scopes.ant.xml
changeset 628 7c4a911dc066
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
       
     1 <!-- 
       
     2 ============================================================================ 
       
     3 Name        : test_project.ant.xml 
       
     4 Part of     : Helium AntLib
       
     5 
       
     6 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     7 All rights reserved.
       
     8 This component and the accompanying materials are made available
       
     9 under the terms of the License "Eclipse Public License v1.0"
       
    10 which accompanies this distribution, and is available
       
    11 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    12 
       
    13 Initial Contributors:
       
    14 Nokia Corporation - initial contribution.
       
    15 
       
    16 Contributors:
       
    17 
       
    18 Description:
       
    19 
       
    20 ============================================================================
       
    21 -->
       
    22 <!-- 
       
    23 This project is part of the tests package...
       
    24         
       
    25 @package tests
       
    26 -->
       
    27 <project name="test_project" default="check-target">
       
    28     
       
    29     <!-- This is a property comment summary.
       
    30     @scope public
       
    31     -->
       
    32     <property name="property.public" value="value1"/>
       
    33     
       
    34     <!-- This is a property comment summary.
       
    35     @scope private
       
    36     -->
       
    37     <property name="property.private" value="value2"/>
       
    38 
       
    39     
       
    40     <!--* @property user.defined.property.public
       
    41 
       
    42     @scope public
       
    43     -->
       
    44     
       
    45     <!--* @property user.defined.property.private
       
    46 
       
    47     @scope private
       
    48     -->
       
    49     
       
    50     <target name="fubar">
       
    51         <!-- This is a property comment summary.
       
    52         @scope public
       
    53         -->
       
    54         <property name="nested.property.public" value="value1"/>
       
    55         
       
    56         <!-- This is a property comment summary.
       
    57         @scope private
       
    58         -->
       
    59         <property name="nested.property.private" value="value2"/>
       
    60         
       
    61         <!-- This is a property comment summary.
       
    62         -->
       
    63         <property name="nested.property.undefined_scope" value="value3"/>
       
    64     </target>
       
    65 
       
    66 </project>
       
    67 
       
    68 
       
    69