buildframework/helium/sf/java/antdata/tests/data/test_project_scopes.ant.xml
changeset 628 7c4a911dc066
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/buildframework/helium/sf/java/antdata/tests/data/test_project_scopes.ant.xml	Fri Aug 13 14:59:05 2010 +0300
@@ -0,0 +1,69 @@
+<!-- 
+============================================================================ 
+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>
+
+
+