blob: d29d21344e01d47e2a2ceea78472bcc3f36f9791 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.examples.runtime.diagram.logic.internal.preferences;
import org.eclipse.gmf.examples.runtime.diagram.logic.internal.LogicDiagramPlugin;
import org.eclipse.gmf.runtime.diagram.ui.preferences.ConnectionsPreferencePage;
/**
* The connections preference page used for the Logic Diagram preferences.
*
* @author cmahoney
*/
public class LogicConnectionsPreferencePage
extends ConnectionsPreferencePage {
/**
* Creates a new instance.
*/
public LogicConnectionsPreferencePage() {
super();
setPreferenceStore(LogicDiagramPlugin.getInstance()
.getPreferenceStore());
}
}