/* * Copyright 2000-2009 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.codeInsight.template.macro; import com.intellij.codeInsight.lookup.LookupElement; import com.intellij.codeInsight.template.*; import com.intellij.codeInsight.template.impl.JavaTemplateUtil; import com.intellij.psi.PsiElement; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import java.util.LinkedHashSet; import java.util.Set; /** * @author ven */ public abstract class VariableTypeMacroBase extends Macro { @Nullable protected abstract PsiElement[] getVariables(Expression[] params, final ExpressionContext context); @Override public LookupElement[] calculateLookupItems(@NotNull Expression[] params, final ExpressionContext context) { final PsiElement[] vars = getVariables(params, context); if (vars == null || vars.length < 2) return null; Set<LookupElement> set = new LinkedHashSet<>(); for (PsiElement element : vars) { JavaTemplateUtil.addElementLookupItem(set, element); } return set.toArray(new LookupElement[set.size()]); } @Override public Result calculateResult(@NotNull Expression[] params, ExpressionContext context) { final PsiElement[] vars = getVariables(params, context); if (vars == null || vars.length == 0) return null; return new JavaPsiElementResult(vars[0]); } @Override @NotNull public String getDefaultValue() { return "a"; } @Override public boolean isAcceptableInContext(TemplateContextType context) { return context instanceof JavaCodeContextType; } }