1 /* 2 * This file is a part of CAST project. 3 * (c) Copyright 2007, AGH University of Science & Technology 4 * https://caribou.iisg.agh.edu.pl/trac/cast 5 * 6 * Licensed under the Eclipse Public License, Version 1.0 (the "License"). 7 * You may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * http://www.eclipse.org/legal/epl-v10.html 10 */ 11 /* 12 * File: UseTemplateWizardStrategy.java 13 * Created: 2009-09-10 14 * Author: entrop 15 * $Id$ 16 */ 17 18 package pl.edu.agh.cast.importer.wizard.strategy; 19 20 import org.eclipse.jface.wizard.Wizard; 21 22 import pl.edu.agh.cast.importer.wizard.page.AbstractImportWizardPage; 23 24 /** 25 * Use template wizard strategy. 26 * 27 * @author AGH CAST Team 28 */ 29 public class UseTemplateWizardStrategy implements IImportWizardStrategy { 30 31 /** 32 * {@inheritDoc} 33 * 34 * @see pl.edu.agh.cast.importer.wizard.strategy.IImportWizardStrategy#addPages(org.eclipse.jface.wizard.Wizard) 35 */ 36 @Override 37 public void addPages(Wizard wizard) { 38 // TODO Auto-generated method stub 39 40 } 41 42 /** 43 * {@inheritDoc} 44 * 45 * @see pl.edu.agh.cast.importer.wizard.strategy.IImportWizardStrategy# 46 * getNextPage(pl.edu.agh.cast.importer.wizard.page.AbstractImportWizardPage) 47 */ 48 @Override 49 public AbstractImportWizardPage getNextPage(AbstractImportWizardPage current) { 50 // TODO Auto-generated method stub 51 return null; 52 } 53 54 /** 55 * {@inheritDoc} 56 * 57 * @see pl.edu.agh.cast.importer.wizard.strategy.IImportWizardStrategy#canFinishWizard() 58 */ 59 @Override 60 public boolean canFinishWizard() { 61 // TODO Auto-generated method stub 62 return false; 63 } 64 65 /** 66 * {@inheritDoc} 67 * 68 * @see pl.edu.agh.cast.importer.wizard.strategy.IImportWizardStrategy#performFinish() 69 */ 70 @Override 71 public boolean performFinish() { 72 // TODO Auto-generated method stub 73 return false; 74 } 75 76 }