IDEA-26403: Maia 92​.​65 and 92​.​81 overwrite and destroy existing Grails run config...
[fedora-idea.git] / plugins / groovy / src / org / jetbrains / plugins / groovy / config / LibraryManager.java
blob9d7de7e8ada028f5e587e3f8ed6c681851d03e31
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.jetbrains.plugins.groovy.config;
18 import com.intellij.facet.ui.FacetEditorContext;
19 import com.intellij.openapi.roots.libraries.Library;
20 import com.intellij.openapi.roots.ui.configuration.projectRoot.LibrariesContainer;
21 import com.intellij.openapi.util.text.StringUtil;
22 import com.intellij.openapi.vfs.VirtualFile;
23 import org.jetbrains.annotations.Nls;
24 import org.jetbrains.annotations.NotNull;
25 import org.jetbrains.annotations.Nullable;
27 import javax.swing.*;
29 /**
30 * @author peter
32 public abstract class LibraryManager {
34 public abstract boolean managesLibrary(@NotNull Library library, LibrariesContainer container);
36 @Nullable
37 @Nls
38 public abstract String getLibraryVersion(@NotNull Library library, LibrariesContainer librariesContainer);
40 @NotNull
41 public abstract Icon getIcon();
43 @NotNull
44 public abstract String getAddActionText();
46 public abstract boolean isSDKHome(@NotNull VirtualFile file);
48 public abstract @NotNull String getSDKVersion(String path);
50 @Nullable
51 public abstract Library createLibrary(@NotNull FacetEditorContext context);
53 @NotNull @Nls public abstract String getLibraryCategoryName();
55 @NotNull
56 @Nls
57 public String getLibraryPrefix() {
58 return StringUtil.toLowerCase(getLibraryCategoryName()) + "-";