本文整理汇总了Java中com.intellij.openapi.roots.ui.configuration.libraryEditor.LibraryRootsComponent类的典型用法代码示例。如果您正苦于以下问题:Java LibraryRootsComponent类的具体用法?Java LibraryRootsComponent怎么用?Java LibraryRootsComponent使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LibraryRootsComponent类属于com.intellij.openapi.roots.ui.configuration.libraryEditor包,在下文中一共展示了LibraryRootsComponent类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createOptionsPanel
import com.intellij.openapi.roots.ui.configuration.libraryEditor.LibraryRootsComponent; //导入依赖的package包/类
@Override
public JComponent createOptionsPanel() {
myLibraryEditorComponent = new LibraryRootsComponent(myProject, new Computable<LibraryEditor>() {
@Override
public LibraryEditor compute() {
return getLibraryEditor();
}
});
myLibraryEditorComponent.addListener(new Runnable() {
@Override
public void run() {
myContext.getDaemonAnalyzer().queueUpdate(myProjectStructureElement);
updateName();
}
});
return myLibraryEditorComponent.getComponent();
}
示例2: EditLibraryDialog
import com.intellij.openapi.roots.ui.configuration.libraryEditor.LibraryRootsComponent; //导入依赖的package包/类
public EditLibraryDialog(Component parent, LibraryCompositionSettings settings, final LibraryEditor libraryEditor) {
super(parent, true);
mySettings = settings;
myLibraryEditor = libraryEditor;
myLibraryRootsComponent = new LibraryRootsComponent(null, libraryEditor);
myLibraryRootsComponent.resetProperties();
Disposer.register(getDisposable(), myLibraryRootsComponent);
final boolean newLibrary = libraryEditor instanceof NewLibraryEditor;
setTitle((newLibrary ? "Create" : "Edit") + " Library");
myBuilder = LibraryNameAndLevelPanel.createFormBuilder();
myNameAndLevelPanel = new LibraryNameAndLevelPanel(myBuilder, libraryEditor.getName(), newLibrary ? settings.getNewLibraryLevel() : null);
init();
}