update copyright
[fedora-idea.git] / plugins / properties / src / com / intellij / lang / properties / editor / ResourceBundleStructureViewComponent.java
blobc263df0321b9cc97910b255c0748dc6206d735f2
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.editor;
18 import com.intellij.lang.properties.ResourceBundle;
19 import com.intellij.openapi.actionSystem.DataConstants;
20 import com.intellij.openapi.project.Project;
22 /**
23 * @author cdr
25 class ResourceBundleStructureViewComponent extends PropertiesGroupingStructureViewComponent {
26 private final ResourceBundle myResourceBundle;
28 public ResourceBundleStructureViewComponent(Project project, ResourceBundle resourceBundle, ResourceBundleEditor editor) {
29 super(project, editor, new ResourceBundleStructureViewModel(project, resourceBundle));
30 myResourceBundle = resourceBundle;
33 public Object getData(String dataId) {
34 if (dataId.equals(DataConstants.VIRTUAL_FILE)) {
35 return new ResourceBundleAsVirtualFile(myResourceBundle);
37 return super.getData(dataId);
40 protected boolean showScrollToFromSourceActions() {
41 return false;