Example usage for org.eclipse.jface.preference ListEditor subclass-usage

List of usage examples for org.eclipse.jface.preference ListEditor subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.preference ListEditor subclass-usage.

Usage

From source file au.gov.ga.earthsci.core.proxy.NonProxyHostsListEditor.java

/**
 * {@link ListEditor} subclass which allows editing of the non-proxy hosts field
 * (which is delimited by the pipe '|' character).
 * 
 * @author Michael de Hoog (michael.dehoog@ga.gov.au)
 */

From source file byke.preferences.PatternExcludeListEditor.java

public class PatternExcludeListEditor extends ListEditor {
    protected PatternExcludeListEditor(String name, String labelText, Composite parent) {
        init(name, labelText);
        createControl(parent);
    }

From source file ch.elexis.core.ui.preferences.inputs.StringListFieldEditor.java

public class StringListFieldEditor extends ListEditor {
    String title, message;

    /**
     * create a new StringList
     * 

From source file ch.elexis.core.ui.preferences.SidebarPreferences.java

class Perspektivenliste extends ListEditor {
    public Perspektivenliste(String name, String input, Composite parent) {
        super(name, input, parent);
    }

    @Override

From source file ch.elexis.preferences.inputs.StringListFieldEditor.java

public class StringListFieldEditor extends ListEditor {
    String title, message;

    /**
     * create a new StringList
     * 

From source file ch.elexis.preferences.SidebarPreferences.java

class Perspektivenliste extends ListEditor {
    public Perspektivenliste(String name, String input, Composite parent) {
        super(name, input, parent);
    }

    @Override

From source file com.agynamix.platform.frontend.preferences.NetworkAddressListFieldEditor.java

/**
 * A field editor to edit directory paths.
 */
public class NetworkAddressListFieldEditor extends ListEditor {

    /**

From source file com.google.eclipse.mechanic.plugin.ui.DirectoryOrUrlEditor.java

/**
 * An editor that lets the user select either a URL resource or
 * directory path. Adding a path uses a filesystem-aware
 * dialog box while the URL editor is a plain text box.
 */
public class DirectoryOrUrlEditor extends ListEditor {

From source file de.itemis.tooling.xturtle.ui.preferences.TurtleListEditor.java

class TurtleListEditor extends ListEditor {

    private String separator = "\n";
    private boolean smartProposeValue = true;
    private boolean sortList = true;
    private String dialogLabel;

From source file edu.uchicago.cs.hao.texdojo.latexeditor.preferences.StringListEditor.java

/**
 * 
 * @author Hao Jiang
 *
 */
public class StringListEditor extends ListEditor {