blob: 8327f1bcbb455ec7c5de428a7c663443455df98f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2016 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.ruby.internal.ui.infoviews;
import org.eclipse.dltk.ruby.core.RubyNature;
import org.eclipse.dltk.ruby.internal.ui.RubyUI;
import org.eclipse.dltk.ui.infoviews.AbstractDocumentationView;
import org.eclipse.jface.preference.IPreferenceStore;
public class RubyDocumentationView extends AbstractDocumentationView {
@Override
protected IPreferenceStore getPreferenceStore() {
return RubyUI.getDefault().getPreferenceStore();
}
@Override
protected String getNature() {
return RubyNature.NATURE_ID;
}
}