本文整理汇总了Java中com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor类的典型用法代码示例。如果您正苦于以下问题:Java LibraryPropertiesEditor类的具体用法?Java LibraryPropertiesEditor怎么用?Java LibraryPropertiesEditor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
LibraryPropertiesEditor类属于com.intellij.openapi.roots.libraries.ui包,在下文中一共展示了LibraryPropertiesEditor类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createDownloadableLibraryEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@NotNull
@Override
public LibraryPropertiesEditor createDownloadableLibraryEditor(@NotNull DownloadableLibraryDescription description,
@NotNull LibraryEditorComponent<LibraryVersionProperties> editorComponent,
@NotNull DownloadableLibraryType libraryType) {
return new DownloadableLibraryPropertiesEditor(description, editorComponent, libraryType);
}
示例2: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<MuleLibraryProperties> libraryEditorComponent)
{
return null;
}
示例3: createDownloadableLibraryEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@NotNull
public abstract LibraryPropertiesEditor createDownloadableLibraryEditor(@NotNull DownloadableLibraryDescription description,
@NotNull LibraryEditorComponent<LibraryVersionProperties> editorComponent,
@NotNull DownloadableLibraryType libraryType);
示例4: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<LibraryVersionProperties> editorComponent) {
return DownloadableLibraryService.getInstance().createDownloadableLibraryEditor(myLibraryDescription, editorComponent, this);
}
示例5: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Nullable
public abstract LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<P> editorComponent);
示例6: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<DummyLibraryProperties> editorComponent) {
return null;
}
示例7: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<RepositoryLibraryProperties> component) {
return new RepositoryLibraryWithDescriptionEditor(component);
}
示例8: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<DummyLibraryProperties> component) {
return null;
}
示例9: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<LibraryVersionProperties> editorComponent) {
return null;
}
示例10: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<RepositoryLibraryProperties> component) {
return new RepositoryLibraryEditor(component, this);
}
示例11: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<DummyLibraryProperties> component) {
return null;
}
示例12: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Override
public LibraryPropertiesEditor createPropertiesEditor(@NotNull LibraryEditorComponent<DummyLibraryProperties>
libraryPropertiesLibraryEditorComponent) {
return null;
}
示例13: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(
@NotNull LibraryEditorComponent<DeftLibraryProperties> editorComponent) {
return new DeftLibraryEditor(editorComponent, this);
}
示例14: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@Nullable
public abstract LibraryPropertiesEditor createPropertiesEditor(@Nonnull LibraryEditorComponent<P> editorComponent);
示例15: createPropertiesEditor
import com.intellij.openapi.roots.libraries.ui.LibraryPropertiesEditor; //导入依赖的package包/类
@javax.annotation.Nullable
@Override
public LibraryPropertiesEditor createPropertiesEditor(@Nonnull LibraryEditorComponent<DummyLibraryProperties> editorComponent) {
return null;
}