downloadable Java EE jars;
[fedora-idea.git] / openapi / src / com / intellij / facet / ui / FacetEditorsFactory.java
blob4be7147fa31e6c0702b0249741ebf6b6fcaac7c5
1 /*
2 * Copyright 2000-2007 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.
17 package com.intellij.facet.ui;
19 import com.intellij.facet.ui.libraries.*;
20 import com.intellij.openapi.components.ServiceManager;
21 import com.intellij.openapi.module.Module;
22 import org.jetbrains.annotations.NotNull;
24 /**
25 * @author nik
27 public abstract class FacetEditorsFactory {
28 public static FacetEditorsFactory getInstance() {
29 return ServiceManager.getService(FacetEditorsFactory.class);
33 public abstract FacetLibrariesValidator createLibrariesValidator(@NotNull LibraryInfo[] libraries,
34 FacetLibrariesValidatorDescription description,
35 FacetEditorContext context,
36 final FacetValidatorsManager validatorsManager);
38 public abstract FacetLibrariesValidator createLibrariesValidator(@NotNull final LibraryInfo[] libraries,
39 @NotNull final Module module,
40 @NotNull final String libraryName);
42 public abstract LibrariesValidationComponent createLibrariesValidationComponent(LibraryInfo[] libraryInfos, Module module,
43 String defaultLibraryName);
45 public abstract MultipleFacetEditorHelper createMultipleFacetEditorHelper();