blob: e091f5702b89eec992463c44f849021d4a73f152 [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.usages.impl;
import com.intellij.openapi.util.text.StringUtil;
import com.intellij.pom.Navigatable;
import com.intellij.usages.Usage;
import com.intellij.usages.UsageView;
import org.jetbrains.annotations.NotNull;
import java.util.Arrays;
/**
* @author max
*/
public class UsageNode extends Node implements Comparable<UsageNode>, Navigatable {
private final Usage myUsage;
private boolean myUsageExcluded = false;
public UsageNode(@NotNull Usage usage, @NotNull UsageViewTreeModelBuilder model) {
super(model);
setUserObject(usage);
myUsage = usage;
}
public String toString() {
return myUsage.toString();
}
@Override
public String tree2string(int indent, String lineSeparator) {
StringBuffer result = new StringBuffer();
StringUtil.repeatSymbol(result, ' ', indent);
result.append(myUsage.toString());
return result.toString();
}
@Override
public int compareTo(@NotNull UsageNode usageNode) {
return UsageViewImpl.USAGE_COMPARATOR.compare(myUsage, usageNode.getUsage());
}
@NotNull
public Usage getUsage() {
return myUsage;
}
@Override
public void navigate(boolean requestFocus) {
myUsage.navigate(requestFocus);
}
@Override
public boolean canNavigate() {
return myUsage.isValid() && myUsage.canNavigate();
}
@Override
public boolean canNavigateToSource() {
return myUsage.isValid() && myUsage.canNavigate();
}
@Override
protected boolean isDataValid() {
return myUsage.isValid();
}
@Override
protected boolean isDataReadOnly() {
return myUsage.isReadOnly();
}
@Override
protected boolean isDataExcluded() {
return myUsageExcluded;
}
@Override
protected String getText(@NotNull final UsageView view) {
try {
return myUsage.getPresentation().getPlainText();
}
catch(AbstractMethodError e) {
return Arrays.asList(myUsage.getPresentation().getText()).toString();
}
}
public void setUsageExcluded(boolean usageExcluded) {
myUsageExcluded = usageExcluded;
}
}