blob: 38985102b72c8cf24d863afbf9637b602bc1281b [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2013 CEA LIST.
*
*
* 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:
* CEA LIST- Initial API and implementation
* Nizar GUEDIDI (CEA LIST)- modification
*
****************************************************************************/
package org.eclipse.papyrus.sysml.diagram.requirement.preferences;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.papyrus.sysml.diagram.requirement.provider.ElementTypes;
public class ContainmentLinkPreferencePage extends RequirementDiagramLinkPreferencePage {
/** Constant key to access preferences */
protected static String prefKey = ElementTypes.DIAGRAM_ID + "_ContainmentLink"; //$NON-NLS-1$
/** Default constructor */
public ContainmentLinkPreferencePage() {
super();
setPreferenceKey(ElementTypes.DIAGRAM_ID + "_ContainmentLink"); //$NON-NLS-1$
}
/**
* Initialize defaults using a specified {@link IPreferenceStore}
*
* @param store
* the preference store.
*/
public static void initDefaults(IPreferenceStore store) {
// Start of user code custom default initializations
// End of user code
}
}