update copyright
[fedora-idea.git] / java / java-impl / src / com / intellij / ide / structureView / impl / java / VisibilitySorter.java
blob722c80e8ed4ec30cfc26023a70b64d2b6930450d
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.ide.structureView.impl.java;
18 import com.intellij.ide.IdeBundle;
19 import com.intellij.ide.util.treeView.smartTree.ActionPresentation;
20 import com.intellij.ide.util.treeView.smartTree.Sorter;
21 import com.intellij.openapi.util.IconLoader;
22 import org.jetbrains.annotations.NonNls;
23 import org.jetbrains.annotations.NotNull;
25 import javax.swing.*;
26 import java.util.Comparator;
28 public class VisibilitySorter implements Sorter{
30 public static final Sorter INSTANCE = new VisibilitySorter();
32 private static final Icon ICON = IconLoader.getIcon("/objectBrowser/visibilitySort.png");
33 private static final ActionPresentation PRESENTATION = new ActionPresentation() {
34 public String getText() {
35 return IdeBundle.message("action.structureview.sort.by.visibility");
38 public String getDescription() {
39 return null;
42 public Icon getIcon() {
43 return ICON;
46 @NonNls public static final String ID = "VISIBILITY_SORTER";
48 public Comparator getComparator() {
49 return VisibilityComparator.IMSTANCE;
52 public boolean isVisible() {
53 return true;
56 @NotNull
57 public ActionPresentation getPresentation() {
58 return PRESENTATION;
61 @NotNull
62 public String getName() {
63 return ID;