IDEA-50121
[fedora-idea.git] / java / java-impl / src / com / intellij / slicer / SliceLeafValueClassNode.java
blob630d1cd483e4cbf406da2500f41d2bd046b68608
1 /*
2 * Copyright 2000-2010 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.slicer;
18 import com.intellij.openapi.project.Project;
19 import com.intellij.ui.SimpleTextAttributes;
20 import org.jetbrains.annotations.NotNull;
22 import javax.swing.*;
23 import java.util.ArrayList;
25 /**
26 * User: cdr
28 public class SliceLeafValueClassNode extends SliceLeafValueRootNode {
29 private final String myClassName;
31 public SliceLeafValueClassNode(@NotNull Project project, SliceNode root, String className) {
32 super(project, root.getValue().getElement(), root, new ArrayList<SliceNode>(), root.getValue().params);
33 myClassName = className;
36 @Override
37 public boolean canNavigate() {
38 return false;
41 @Override
42 public boolean canNavigateToSource() {
43 return false;
46 @Override
47 public void customizeCellRenderer(SliceUsageCellRenderer renderer,
48 JTree tree,
49 Object value,
50 boolean selected,
51 boolean expanded,
52 boolean leaf,
53 int row,
54 boolean hasFocus) {
55 renderer.append(myClassName, SimpleTextAttributes.DARK_TEXT);
58 @Override
59 public String toString() {
60 return myClassName;