buildframework/helium/sf/java/antdata/tests/data/test_project_scopes.ant.xml
author lorewang
Wed, 01 Dec 2010 16:05:36 +0800
changeset 715 e0739b8406dd
parent 628 7c4a911dc066
permissions -rw-r--r--
Specify extenal tool with path

<!-- 
============================================================================ 
Name        : test_project.ant.xml 
Part of     : Helium AntLib

Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
All rights reserved.
This component and the accompanying materials are made available
under the terms of the License "Eclipse Public License v1.0"
which accompanies this distribution, and is available
at the URL "http://www.eclipse.org/legal/epl-v10.html".

Initial Contributors:
Nokia Corporation - initial contribution.

Contributors:

Description:

============================================================================
-->
<!-- 
This project is part of the tests package...
        
@package tests
-->
<project name="test_project" default="check-target">
    
    <!-- This is a property comment summary.
    @scope public
    -->
    <property name="property.public" value="value1"/>
    
    <!-- This is a property comment summary.
    @scope private
    -->
    <property name="property.private" value="value2"/>

    
    <!--* @property user.defined.property.public

    @scope public
    -->
    
    <!--* @property user.defined.property.private

    @scope private
    -->
    
    <target name="fubar">
        <!-- This is a property comment summary.
        @scope public
        -->
        <property name="nested.property.public" value="value1"/>
        
        <!-- This is a property comment summary.
        @scope private
        -->
        <property name="nested.property.private" value="value2"/>
        
        <!-- This is a property comment summary.
        -->
        <property name="nested.property.undefined_scope" value="value3"/>
    </target>

</project>