blob: e708d398971236246320ab76dd0b7b214903054a [file] [log] [blame]
/*
* Copyright (C) 2015 The Android Open Source Project
*
* 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.android.tools.idea.lang.aidl.psi.impl;
import com.android.tools.idea.lang.aidl.psi.AidlNamedElement;
import com.intellij.lang.ASTNode;
import com.intellij.navigation.ItemPresentation;
import com.intellij.navigation.NavigationItem;
import com.intellij.psi.PsiElement;
import com.intellij.psi.impl.source.tree.LeafPsiElement;
import com.intellij.psi.util.PsiTreeUtil;
import com.intellij.util.IncorrectOperationException;
import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public abstract class AidlNamedElementImpl extends AidlPsiCompositeElementImpl implements AidlNamedElement {
public AidlNamedElementImpl(@NotNull ASTNode node) {
super(node);
}
@Nullable
@Override
public String getName() {
return getLeaf().getText();
}
@Override
public PsiElement setName(@NonNls @NotNull String name) throws IncorrectOperationException {
getLeaf().replaceWithText(name);
return this;
}
@NotNull
private LeafPsiElement getLeaf() {
return PsiTreeUtil.getChildOfType(this, LeafPsiElement.class);
}
@Nullable
@Override
public ItemPresentation getPresentation() {
final PsiElement parent = getParent();
if (parent instanceof NavigationItem) {
return ((NavigationItem)parent).getPresentation();
}
return null;
}
// TODO provide a better icon for
//@Override
//public Icon getIcon(int flags) {
// final ItemPresentation presentation = getPresentation();
// return presentation == null ? super.getIcon(flags) : presentation.getIcon(true);
//}
}