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