Java tutorial
/* * 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. */ /* * Created by IntelliJ IDEA. * User: max * Date: May 27, 2002 * Time: 2:57:13 PM * To change template for new class use * Code Style | Class Templates options (Tools | IDE Options). */ package com.intellij.codeInspection.ex; import com.intellij.codeInsight.daemon.DaemonCodeAnalyzer; import com.intellij.codeInspection.util.SpecialAnnotationsUtil; import com.intellij.openapi.components.*; import com.intellij.openapi.project.Project; import com.intellij.openapi.ui.DialogWrapper; import org.jdom.Element; import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.ArrayList; import java.util.List; @State(name = "EntryPointsManager", storages = { @Storage(file = StoragePathMacros.PROJECT_FILE) }) public class EntryPointsManagerImpl extends EntryPointsManagerBase implements PersistentStateComponent<Element> { public EntryPointsManagerImpl(Project project) { super(project); } @Override public void configureAnnotations() { final List<String> list = new ArrayList<String>(ADDITIONAL_ANNOTATIONS); final JPanel listPanel = SpecialAnnotationsUtil.createSpecialAnnotationsListControl(list, "Do not check if annotated by", true); new DialogWrapper(myProject) { { init(); setTitle("Configure annotations"); } @Override protected JComponent createCenterPanel() { return listPanel; } @Override protected void doOKAction() { ADDITIONAL_ANNOTATIONS.clear(); ADDITIONAL_ANNOTATIONS.addAll(list); DaemonCodeAnalyzer.getInstance(myProject).restart(); super.doOKAction(); } }.show(); } @Override public JButton createConfigureAnnotationsBtn() { final JButton configureAnnotations = new JButton("Configure annotations..."); configureAnnotations.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { configureAnnotations(); } }); return configureAnnotations; } }