01: /*******************************************************************************
02: * Copyright (c) 2004, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.internal;
11:
12: /**
13: * Preference constants for the heap status.
14: *
15: * @since 3.1
16: */
17: public interface IHeapStatusConstants {
18:
19: /**
20: * Preference key for the update interval (value in milliseconds).
21: */
22: String PREF_UPDATE_INTERVAL = "HeapStatus.updateInterval"; //$NON-NLS-1$
23:
24: /**
25: * Preference key for whether to show max heap, if available (value is boolean).
26: */
27: String PREF_SHOW_MAX = "HeapStatus.showMax"; //$NON-NLS-1$
28:
29: // /**
30: // * ID for the Kyrsoft Memory Monitor plug-in.
31: // */
32: // String KYRSOFT_PLUGIN_ID = "de.kyrsoft.memmonitor"; //$NON-NLS-1$
33: //
34: // /**
35: // * ID for the Kyrsoft Memory Monitor view.
36: // */
37: // String KYRSOFT_VIEW_ID = "de.kyrsoft.memmonitor.views.MemoryView"; //$NON-NLS-1$
38: //
39:
40: }
|