blob: 849acb55cfc8dd4a978c56380b3577111c8554e4 [file] [log] [blame]
cbatemanb4aa4092009-02-11 17:30:17 +00001/*******************************************************************************
2 * Copyright (c) 2001, 2009 Oracle Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Oracle Corporation - initial API and implementation
10 *******************************************************************************/
11
12package org.eclipse.jst.pagedesigner.editors;
13
14import org.eclipse.core.resources.IFile;
15import org.eclipse.ui.views.properties.IPropertySheetPage;
16
17/**
18 * Abstract class that should be extended to provide a property sheet page
19 * factory.
20 *
21 * @author cbateman
22 *
23 */
24public abstract class AbstractPropertySheetPageFactory implements
25 IPropertySheetPageFactory
26{
27
28 /* (non-Javadoc)
29 * @see org.eclipse.jst.pagedesigner.editors.IPropertySheetPageFactory#createPage(org.eclipse.core.resources.IFile)
30 */
31 public abstract IPropertySheetPage createPage(IFile file);
32}