diff -r 000000000000 -r 61163b28edca sftemplateswizard/com.nokia.s60tools.symbianfoundationtemplates/src/com/nokia/s60tools/symbianfoundationtemplates/ui/wizards/s60/classwizards/MClassWizard.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sftemplateswizard/com.nokia.s60tools.symbianfoundationtemplates/src/com/nokia/s60tools/symbianfoundationtemplates/ui/wizards/s60/classwizards/MClassWizard.java Tue Jan 12 13:17:53 2010 -0600 @@ -0,0 +1,44 @@ +/* +* 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 "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: +* +*/ +package com.nokia.s60tools.symbianfoundationtemplates.ui.wizards.s60.classwizards; + +import org.eclipse.jface.viewers.IStructuredSelection; +import org.eclipse.ui.IWorkbench; + +import com.nokia.s60tools.symbianfoundationtemplates.ui.wizards.s60.S60TemplatePageType; +import com.nokia.s60tools.symbianfoundationtemplates.ui.wizards.s60.S60TemplateWizard; + +/** + * M class wizard. + * + */ +public class MClassWizard extends S60TemplateWizard { + private final static S60TemplatePageType pageType = S60TemplatePageType.M_CLASS_PAGE; + + public MClassWizard() { + super(pageType.getImage()); + } + @Override + public void addPages() { + addPage(new ClassPage(pageType)); + } + + @Override + public void init(IWorkbench workbench, IStructuredSelection selection) { + setWindowTitle(pageType.getTitle()); + } +}