preferenceinitializer.java
来自「papyrus插件MARTE例子,uml建模」· Java 代码 · 共 34 行
JAVA
34 行
package com.thalesgroup.cheddar.MARTE2cheddar.preferences;import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer;import org.eclipse.jface.preference.IPreferenceStore;import com.thalesgroup.cheddar.MARTE2cheddar.Activator;/** * * Class used to initialize default preference values. * <copyright> * Thales MARTE to Cheddar (Copyright (c) THALES 2007 All rights reserved) is free software; you can redistribute itand/or modify * it under the terms of the Eclipse Public License as published in http://www.eclipse.org/legal/epl-v10.html * * Thales MARTE to Cheddar is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Eclipse Public License for more details. * </copyright> * @author Nicolas Vienne */public class PreferenceInitializer extends AbstractPreferenceInitializer { /* * (non-Javadoc) * * @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences() */ public void initializeDefaultPreferences() { @SuppressWarnings("unused") IPreferenceStore store = Activator.getDefault() .getPreferenceStore(); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?