blob: 099ad179aea46ff6e35d8b8ea070fcbde2a50f68 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.runtime.preferences;
/**
* Abstract class used to aid in default preference value initialization.
* Clients who extend the <code>org.eclipse.core.runtime.preferences</code>
* extension point are able to specify a class within an <code>initializer</code>
* element.
*
* @since 3.0
*/
public abstract class AbstractPreferenceInitializer {
/**
* Default constructor for the class.
*/
public AbstractPreferenceInitializer() {
super();
}
/**
* TODO
*/
public abstract void initializeDefaultPreferences();
}