plugins/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/FlickrProjectDetailsWizardPage.java
changeset 473 8e8aed9adb99
parent 472 bd9f2d7c64a6
child 474 e2f461f0a9e0
--- a/plugins/org.symbian.tools.wrttools/src/org/symbian/tools/wrttools/wizards/FlickrProjectDetailsWizardPage.java	Mon Aug 23 10:30:05 2010 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,49 +0,0 @@
-/**
- * Copyright (c) 2009 Symbian Foundation 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:
- * Symbian Foundation - initial contribution.
- * Contributors:
- * Description:
- * Overview:
- * Details:
- * Platforms/Drives/Compatibility:
- * Assumptions/Requirement/Pre-requisites:
- * Failures and causes:
- */
-package org.symbian.tools.wrttools.wizards;
-
-import org.eclipse.core.databinding.DataBindingContext;
-import org.eclipse.swt.widgets.Composite;
-
-public class FlickrProjectDetailsWizardPage extends WRTProjectFilesWizardPage {
-
-    public FlickrProjectDetailsWizardPage(WizardContext context,
-            DataBindingContext bindingContext) {
-        super(context, bindingContext);
-    }
-
-    @Override
-    protected void addTemplateControls(Composite root) {
-        context.getExtensions().put("flickrUrl",
-                "http://flickr.com/photos/symbianfoundation");
-        context.createLabel(root, "Flickr URL:");
-        context.createTextForExt(root, "flickrUrl", "Flickr URL",
-                bindingContext, this);
-        context.createLabel(root, "");
-        context.createLabel(root, "");
-
-    }
-
-    public static final class Factory implements IWizardPageFactory {
-        public WRTProjectFilesWizardPage createPage(WizardContext context,
-                DataBindingContext bindingContext) {
-            return new FlickrProjectDetailsWizardPage(context, bindingContext);
-        }
-    }
-}