more general replace() implementation
[fedora-idea.git] / platform / lang-impl / src / com / intellij / conversion / ModuleSettings.java
blob79dc27738b87b7eb136e55d2ba38427daae72682
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.
17 package com.intellij.conversion;
19 import org.jdom.Element;
20 import org.jetbrains.annotations.NotNull;
21 import org.jetbrains.annotations.Nullable;
23 import java.io.File;
24 import java.util.Collection;
25 import java.util.List;
27 /**
28 * @author nik
30 public interface ModuleSettings extends ComponentManagerSettings {
32 @NotNull
33 String getModuleName();
35 @Nullable
36 String getModuleType();
38 @NotNull
39 File getModuleFile();
41 @NotNull
42 Collection<? extends Element> getFacetElements(@NotNull String facetTypeId);
44 @Nullable
45 Element getFacetElement(@NotNull String facetTypeId);
47 void setModuleType(@NotNull String moduleType);
49 @NotNull
50 String expandPath(@NotNull String path);
52 @NotNull
53 Collection<File> getSourceRoots(boolean includeTests);
55 @NotNull
56 Collection<File> getContentRoots();
58 void addExcludedFolder(@NotNull File directory);
60 @NotNull
61 List<File> getModuleLibraryRoots(String libraryName);
63 @NotNull
64 Collection<ModuleSettings> getAllModuleDependencies();
66 boolean hasModuleLibrary(String libraryName);