Example usage for org.eclipse.jface.preference PreferenceConverter getPoint

List of usage examples for org.eclipse.jface.preference PreferenceConverter getPoint

Introduction

In this page you can find the example usage for org.eclipse.jface.preference PreferenceConverter getPoint.

Prototype

public static Point getPoint(IPreferenceStore store, String name) 

Source Link

Document

Returns the current value of the point-valued preference with the given name in the given preference store.

Usage

From source file:raptor.pref.RaptorPreferenceStore.java

License:BSD License

public Point getPoint(String key) {
    return PreferenceConverter.getPoint(this, key);
}