/* * 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 org.jetbrains.plugins.javaFX.packaging; import com.intellij.execution.JavaExecutionUtil; import com.intellij.execution.ui.ClassBrowser; import com.intellij.ide.util.ClassFilter; import com.intellij.openapi.application.ReadAction; import com.intellij.openapi.module.Module; import com.intellij.openapi.project.Project; import com.intellij.packaging.artifacts.Artifact; import com.intellij.packaging.impl.artifacts.ArtifactUtil; import com.intellij.psi.PsiClass; import com.intellij.psi.search.GlobalSearchScope; import com.intellij.psi.util.InheritanceUtil; import java.util.Collections; import java.util.Set; public class JavaFxApplicationClassBrowser extends ClassBrowser { private final Artifact myArtifact; public JavaFxApplicationClassBrowser(Project project, Artifact artifact) { this(project, artifact, "Choose Application Class"); } public JavaFxApplicationClassBrowser(final Project project, final Artifact artifact, final String title) { super(project, title); myArtifact = artifact; } @Override protected ClassFilter.ClassFilterWithScope getFilter() throws NoFilterException { return new ClassFilter.ClassFilterWithScope() { @Override public GlobalSearchScope getScope() { return GlobalSearchScope.projectScope(getProject()); } @Override public boolean isAccepted(PsiClass aClass) { return InheritanceUtil.isInheritor(aClass, getApplicationClass()); } }; } protected String getApplicationClass() { return "javafx.application.Application"; } @Override protected PsiClass findClass(String className) { final Set<Module> modules = ReadAction.compute(() -> ArtifactUtil.getModulesIncludedInArtifacts(Collections.singletonList(myArtifact), getProject())); for (Module module : modules) { final PsiClass aClass = JavaExecutionUtil.findMainClass(getProject(), className, GlobalSearchScope.moduleScope(module)); if (aClass != null) { return aClass; } } return null; } }