List of usage examples for org.eclipse.jface.preference PreferenceNode subclass-usage
From source file com.elphel.vdt.ui.options.ContextPreferenceNode.java
public class ContextPreferenceNode extends PreferenceNode { private Context context; public ContextPreferenceNode(String id, Context context) { this(id, null, context);
From source file com.elphel.vdt.ui.options.PackageInstallNode.java
public class PackageInstallNode extends PreferenceNode { private PackageContext context; public PackageInstallNode(String id, ImageDescriptor image, PackageContext context) { super(id, context.getLabel(), image, PackageInstallPage.class.getName());
From source file com.elphel.vdt.ui.options.ToolInstallNode.java
public class ToolInstallNode extends PreferenceNode { private Tool tool; public ToolInstallNode(String id, ImageDescriptor image, Tool tool) { // super(id, tool.getLabel(), image, ToolInstallPage.class.getName());
From source file gov.redhawk.internal.ui.preferences.PlotPreferenceNode.java
/** * */ public class PlotPreferenceNode extends PreferenceNode implements IComparableContribution { public PlotPreferenceNode(String id, IPreferencePage preferencePage) {
From source file org.eclipse.birt.report.designer.internal.ui.dialogs.StylePreferenceNode.java
/** * */ public class StylePreferenceNode extends PreferenceNode {
From source file org.eclipse.gmf.runtime.diagram.ui.internal.dialogs.sortfilter.SortFilterRootPreferenceNode.java
/**
* Extended to provide access from the <code>PreferenceNode</code> to the <code>
* PreferenceDialog</code>.
*
* @author jcorchis
*/
From source file org.eclipse.ui.internal.preferences.WorkbenchPreferenceExpressionNode.java
/** * @since 3.4 * @author Jan Diederich */ public class WorkbenchPreferenceExpressionNode extends PreferenceNode implements IPluginContribution {
From source file org.eclipsetrader.ui.PriorityPreferenceNode.java
public class PriorityPreferenceNode extends PreferenceNode implements IComparableContribution { private int priority; public PriorityPreferenceNode(String id, int priority) { super(id);
From source file org.fipro.e4.service.preferences.ContributedPreferenceNode.java
/**
* Specialization of {@link PreferenceNode} that overrides
* {@link PreferenceNode#createPage()} to support {@link IPreferencePage}
* creation for contributed pages from other bundles. Otherwise the page
* instance creation will fail because of ClassNotFoundExceptions.
*/
From source file org.mailster.gui.prefs.widgets.ExtendedPreferenceNode.java
/**
* Extends {@link PreferenceNode} to support easy handling of different icons in
* the {@link TreeViewer} and {@link PreferencePage} of a JFace
* {@link PreferenceDialog}. This class changes the original behaviour to that
* effect that the icon of a {@link PreferencePage} stays untouched and has to
* be set in the implementing class itself.