/* * Copyright 2000-2017 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.openapi.roots.ui.configuration; import com.intellij.openapi.CompositeDisposable; import com.intellij.openapi.Disposable; import com.intellij.openapi.module.ModuleConfigurationEditor; import com.intellij.openapi.options.ConfigurationException; import com.intellij.openapi.project.Project; import com.intellij.openapi.roots.ModifiableRootModel; import com.intellij.openapi.util.Disposer; import com.intellij.ui.navigation.History; import com.intellij.util.EventDispatcher; import org.jetbrains.annotations.NotNull; import javax.swing.*; import java.util.EventListener; /** * @author Eugene Zhuravlev * Date: Oct 4, 2003 * Time: 7:24:37 PM */ public abstract class ModuleElementsEditor implements ModuleConfigurationEditor { @NotNull protected final Project myProject; protected JComponent myComponent; private final CompositeDisposable myDisposables = new CompositeDisposable(); private final EventDispatcher<ModuleElementsEditorListener> myDispatcher = EventDispatcher.create(ModuleElementsEditorListener.class); protected History myHistory; private final ModuleConfigurationState myState; protected ModuleElementsEditor(@NotNull ModuleConfigurationState state) { myProject = state.getProject(); myState = state; } public void setHistory(final History history) { myHistory = history; } public void addListener(ModuleElementsEditorListener listener) { myDispatcher.addListener(listener); } protected void fireConfigurationChanged() { myDispatcher.getMulticaster().configurationChanged(); } @Override public boolean isModified() { return getModel() != null && getModel().isChanged(); } protected ModifiableRootModel getModel() { return myState.getRootModel(); } @NotNull protected ModuleConfigurationState getState() { return myState; } public void canApply() throws ConfigurationException {} @Override public void apply() throws ConfigurationException {} @Override public void reset() {} public void moduleCompileOutputChanged(final String baseUrl, final String moduleName) {} @Override public void disposeUIResources() { Disposer.dispose(myDisposables); } // caching @Override public final JComponent createComponent() { if (myComponent == null) { myComponent = createComponentImpl(); } return myComponent; } public JComponent getComponent() { return createComponent(); } protected void registerDisposable(Disposable disposable) { myDisposables.add(disposable); } protected abstract JComponent createComponentImpl(); interface ModuleElementsEditorListener extends EventListener { void configurationChanged(); } }