/****************************************************************************** * 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.RulerGridPreferencePage; /** * The Ruler and Grid preference page used for the Logic Diagram preferences. * * @author cmahoney */ public class LogicRulerGridPreferencePage extends RulerGridPreferencePage { /** * Creates a new instance and initializes the preference store. */ public LogicRulerGridPreferencePage() { super(); setPreferenceStore(LogicDiagramPlugin.getInstance().getPreferenceStore()); } }