update copyright
[fedora-idea.git] / java / idea-ui / src / com / intellij / facet / impl / autodetecting / model / FacetInfoBackedByFacet.java
blobcfdf9333e6bf3b1ecee81fb10fbe718b8fdd3c5f
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.facet.impl.autodetecting.model;
18 import com.intellij.facet.Facet;
19 import com.intellij.facet.FacetConfiguration;
20 import com.intellij.facet.FacetType;
21 import com.intellij.openapi.module.Module;
22 import org.jetbrains.annotations.NotNull;
24 /**
25 * @author nik
27 public class FacetInfoBackedByFacet implements FacetInfo2<Module> {
28 private final Facet myFacet;
29 private final ProjectFacetInfoSet myProjectFacetSet;
31 FacetInfoBackedByFacet(@NotNull Facet facet, final ProjectFacetInfoSet projectFacetSet) {
32 myFacet = facet;
33 myProjectFacetSet = projectFacetSet;
36 @NotNull
37 public String getFacetName() {
38 return myFacet.getName();
41 @NotNull
42 public FacetConfiguration getConfiguration() {
43 return myFacet.getConfiguration();
46 @NotNull
47 public FacetType getFacetType() {
48 return myFacet.getType();
51 public FacetInfo2<Module> getUnderlyingFacetInfo() {
52 Facet underlying = myFacet.getUnderlyingFacet();
53 return underlying != null ? myProjectFacetSet.getOrCreateInfo(underlying) : null;
56 @NotNull
57 public Module getModule() {
58 return myFacet.getModule();
61 public Facet getFacet() {
62 return myFacet;