plugins/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/NewRSSReaderApplicationWizardPage.java
changeset 474 e2f461f0a9e0
equal deleted inserted replaced
473:8e8aed9adb99 474:e2f461f0a9e0
       
     1 /**
       
     2  * Copyright (c) 2010 Symbian Foundation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of the License "Eclipse Public License v1.0"
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Symbian Foundation - initial contribution.
       
    11  * Contributors:
       
    12  * Description:
       
    13  * Overview:
       
    14  * Details:
       
    15  * Platforms/Drives/Compatibility:
       
    16  * Assumptions/Requirement/Pre-requisites:
       
    17  * Failures and causes:
       
    18  */
       
    19 package org.symbian.tools.wrttools.wizards;
       
    20 
       
    21 import org.eclipse.swt.widgets.Composite;
       
    22 
       
    23 public class NewRSSReaderApplicationWizardPage extends NewWrtAppTemplatePage {
       
    24 
       
    25     public NewRSSReaderApplicationWizardPage() {
       
    26         super("RssFiles", "RSS Application Settings", "Customize your RSS reader application project");
       
    27     }
       
    28 
       
    29     @Override
       
    30     protected void addTemplateControls(Composite root) {
       
    31         createLabel(root, "Feed URL:");
       
    32         createText(root, "feedUrl", "feed URL", bindingContext);
       
    33         createLabel(root, "Feed Name:");
       
    34         createText(root, "feedName", "feed name", bindingContext);
       
    35         createLabel(root, "");
       
    36         createLabel(root, "");
       
    37     }
       
    38 }