IDEA-142682

This commit is contained in:
Vladimir Krivosheev
2016-02-10 16:55:51 +01:00
parent 97cfa7184a
commit 38167f8fd5
2 changed files with 4 additions and 2 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2015 JetBrains s.r.o.
* 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.
@@ -17,9 +17,10 @@ package com.intellij.openapi.components;
public enum RoamingType {
/**
* Stored only locally, not shared.
* Stored only locally, not shared and not exportable (Export Settings dialog)
*/
DISABLED,
/**
* Stored per operating system (Mac OS X, Linux, FreeBSD, Unix, Windows)
*/
@@ -44,6 +44,7 @@ public @interface Storage {
boolean deprecated() default false;
/**
* Used by the Settings Repository plugin to determine how application-level settings should be shared between different IDE installations.
* You must not store components with different roaming types in one file ({@link #value()}).
*/
RoamingType roamingType() default RoamingType.DEFAULT;