/* * Copyright 2000-2016 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.jetbrains.python.codeInsight; import com.intellij.openapi.components.PersistentStateComponent; import com.intellij.openapi.components.ServiceManager; import com.intellij.openapi.components.State; import com.intellij.openapi.components.Storage; import com.intellij.util.xmlb.XmlSerializerUtil; /** * @author yole */ @State(name = "PyCodeInsightSettings", storages = @Storage("other.xml")) public class PyCodeInsightSettings implements PersistentStateComponent<PyCodeInsightSettings> { public static PyCodeInsightSettings getInstance() { return ServiceManager.getService(PyCodeInsightSettings.class); } public boolean PREFER_FROM_IMPORT = true; public boolean SHOW_IMPORT_POPUP; public boolean HIGHLIGHT_UNUSED_IMPORTS = true; public boolean RENAME_SEARCH_IN_COMMENTS_FOR_FUNCTION; public boolean RENAME_SEARCH_NON_CODE_FOR_FUNCTION; public boolean RENAME_SEARCH_IN_COMMENTS_FOR_CLASS; public boolean RENAME_SEARCH_NON_CODE_FOR_CLASS; public boolean RENAME_SEARCH_IN_COMMENTS_FOR_VARIABLE; public boolean RENAME_SEARCH_NON_CODE_FOR_VARIABLE; public boolean DJANGO_AUTOINSERT_TAG_CLOSE = true; public boolean RENAME_CLASS_CONTAINING_FILE = true; public boolean RENAME_CLASS_INHERITORS = true; public boolean RENAME_PARAMETERS_IN_HIERARCHY = true; public boolean INSERT_BACKSLASH_ON_WRAP = true; public boolean INSERT_SELF_FOR_METHODS = true; public boolean INSERT_TYPE_DOCSTUB; @Override public PyCodeInsightSettings getState() { return this; } @Override public void loadState(PyCodeInsightSettings state) { XmlSerializerUtil.copyBean(state, this); } }