blob: f30d2a971b164e1c530f5949f2ccd3b2eb070aae [file] [log] [blame]
/*
* Copyright 2000-2012 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.ide.fileTemplates.actions;
import com.intellij.ide.fileTemplates.FileTemplate;
import com.intellij.ide.fileTemplates.FileTemplateUtil;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.Presentation;
import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiDirectory;
import org.jetbrains.annotations.Nullable;
public class CreateFromTemplateAction extends CreateFromTemplateActionBase {
private final FileTemplate myTemplate;
public CreateFromTemplateAction(FileTemplate template){
super(template.getName(), null, FileTemplateUtil.getIcon(template));
myTemplate = template;
}
@Override
@Nullable
protected AnAction getReplacedAction(final FileTemplate template) {
return null;
}
@Override
protected FileTemplate getTemplate(final Project project, final PsiDirectory dir) {
return myTemplate;
}
@Override
public void update(AnActionEvent e){
super.update(e);
Presentation presentation = e.getPresentation();
boolean isEnabled = CreateFromTemplateGroup.canCreateFromTemplate(e, myTemplate);
presentation.setEnabled(isEnabled);
presentation.setVisible(isEnabled);
}
public FileTemplate getTemplate() {
return myTemplate;
}
}