Inspections - pass onTheFly into ProblemDescriptors & use it to create LAZY refs...
[fedora-idea.git] / platform / lang-api / src / com / intellij / openapi / projectRoots / SdkModificator.java
blob9f14469ec6b7dc0c4c5d989d05358870ef94927c
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 com.intellij.openapi.projectRoots;
18 import com.intellij.openapi.roots.OrderRootType;
19 import com.intellij.openapi.vfs.VirtualFile;
20 import org.jetbrains.annotations.Nullable;
22 public interface SdkModificator {
23 String getName();
25 void setName(String name);
27 String getHomePath();
29 void setHomePath(String path);
31 @Nullable
32 String getVersionString();
34 void setVersionString(String versionString);
36 SdkAdditionalData getSdkAdditionalData();
38 void setSdkAdditionalData(SdkAdditionalData data);
40 VirtualFile[] getRoots(OrderRootType rootType);
42 void addRoot(VirtualFile root, OrderRootType rootType);
44 void removeRoot(VirtualFile root, OrderRootType rootType);
46 void removeRoots(OrderRootType rootType);
48 void removeAllRoots();
50 void commitChanges();
52 boolean isWritable();