buildframework/helium/sf/java/legacy/tests/scenarii/property/feature.ant.xml
changeset 628 7c4a911dc066
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/buildframework/helium/sf/java/legacy/tests/scenarii/property/feature.ant.xml	Fri Aug 13 14:59:05 2010 +0300
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+============================================================================ 
+Name        : feature.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:
+
+============================================================================
+-->
+<project name="test-properties" xmlns:au="antlib:org.apache.ant.antunit" xmlns:hlm="http://www.nokia.com/helium">
+    <description>Helium Antlib logger unittests.</description>
+    
+    <!-- Set to true to enable feature
+    @type boolean
+    @editable required
+    @scope private
+    -->
+    <property name="feature.enabled" value="true"/>
+    
+    <!-- Set to true to enable feature - deprecated: Start using feature.enabled property
+    @type boolean
+    @editable required
+    @scope public
+    @deprecated since 11.0 
+    -->
+    <property name="enable.feature" value="true"/>
+    
+    <!--* @property internal.abc.enabled 
+    Set to true to true to run targets.
+    @type boolean
+    @editable required
+    @scope private
+    -->
+    
+    <!--* @property internal.bla.enabled 
+    Set to true to true to run targets - deprecated: Start using internal.abc.enabled property.
+    @type boolean
+    @editable required
+    @scope public
+    @deprecated since 6.0 
+    -->
+    
+    <target name="temp">
+        <echo>Inside the temp target</echo>
+    </target>
+        
+    
+
+</project>