Package com.googlecode.goclipse.ui.preferences

Source Code of com.googlecode.goclipse.ui.preferences.GoEditorSmartTypingPreferencePage

/*******************************************************************************
* Copyright (c) 2014, 2014 Bruno Medeiros and other Contributors.
* 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:
*     Bruno Medeiros - initial API and implementation
*******************************************************************************/
package com.googlecode.goclipse.ui.preferences;


import melnorme.lang.ide.ui.LangUIPlugin;
import melnorme.lang.ide.ui.preferences.AbstractPreferencesComponentPrefPage;
import melnorme.lang.ide.ui.preferences.IPreferencesBlock;
import melnorme.lang.ide.ui.preferences.LangEditorSmartTypingConfigurationBlock;


public class GoEditorSmartTypingPreferencePage extends AbstractPreferencesComponentPrefPage {
 
  public GoEditorSmartTypingPreferencePage() {
    super(LangUIPlugin.getInstance().getPreferenceStore());
  }
 
  @Override
  protected void setDescription() {
    setDescription(null);
  }
 
  @Override
  protected IPreferencesBlock createPreferencesComponent() {
    return new LangEditorSmartTypingConfigurationBlock(this);
  }
 
  @Override
  protected String getHelpId() {
    return null;
  }
 
}
TOP

Related Classes of com.googlecode.goclipse.ui.preferences.GoEditorSmartTypingPreferencePage

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.