mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-142682
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user