update copyright
[fedora-idea.git] / plugins / properties / src / com / intellij / lang / properties / structureView / PropertiesFileStructureViewComponent.java
blob281da13a8436334c9a0ab40a309820465b9f48da
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.lang.properties.structureView;
18 import com.intellij.lang.properties.editor.PropertiesGroupingStructureViewComponent;
19 import com.intellij.lang.properties.psi.PropertiesFile;
20 import com.intellij.openapi.actionSystem.DataConstants;
21 import com.intellij.openapi.fileEditor.FileEditor;
22 import com.intellij.openapi.project.Project;
24 /**
25 * @author cdr
27 public class PropertiesFileStructureViewComponent extends PropertiesGroupingStructureViewComponent {
28 private final PropertiesFile myPropertiesFile;
30 public PropertiesFileStructureViewComponent(Project project, PropertiesFile propertiesFile, FileEditor editor) {
31 super(project, editor, new PropertiesFileStructureViewModel(propertiesFile));
32 myPropertiesFile = propertiesFile;
35 public Object getData(String dataId) {
36 if (dataId.equals(DataConstants.VIRTUAL_FILE)) {
37 return myPropertiesFile.getVirtualFile();
39 if (dataId.equals(DataConstants.PSI_ELEMENT)) {
40 return myPropertiesFile;
42 return super.getData(dataId);