Java 类com.intellij.util.ui.LocalPathCellEditor 实例源码

项目:intellij-ce-playground    文件:BrowserSettingsPanel.java   
@Nullable
@Override
public TableCellEditor getEditor(ConfigurableWebBrowser item) {
  return new LocalPathCellEditor().fileChooserDescriptor(APP_FILE_CHOOSER_DESCRIPTOR).normalizePath(true);
}
项目:vso-intellij    文件:WorkspaceMappingsTableEditor.java   
@Override
public TableCellEditor getEditor(final Row item) {
    return new LocalPathCellEditor(this.getName(), project);
}
项目:consulo-xml    文件:BrowserSettingsPanel.java   
@Nullable
@Override
public TableCellEditor getEditor(ConfigurableWebBrowser item)
{
    return new LocalPathCellEditor().fileChooserDescriptor(APP_FILE_CHOOSER_DESCRIPTOR).normalizePath(true);
}