Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/properties/IPropertiesContainer.java')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/properties/IPropertiesContainer.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/properties/IPropertiesContainer.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/properties/IPropertiesContainer.java
index 53d902eb4..de8fe96b6 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/properties/IPropertiesContainer.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/interfaces/properties/IPropertiesContainer.java
@@ -20,6 +20,17 @@ import org.eclipse.core.runtime.IAdaptable;
public interface IPropertiesContainer extends IAdaptable {
/**
+ * If a property key ends with ".silent", no change events will be fired.
+ */
+ public static final String SILENT_PROPERTY = ".silent"; //$NON-NLS-1$
+
+ /**
+ * If a property key ends with ".persistent", it should be persisted when the properties container is saved.
+ * This string should always be used at the end of all other property key extensions!
+ */
+ public static final String PERSISTENT_PROPERTY = ""; //$NON-NLS-1$
+
+ /**
* Returns the unique identified of the properties container.
*
* @return The unique identifier.

Back to the top