Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5cf97433942a4951ffe26598a5ef7a2c4744a5ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*******************************************************************************
 * Copyright (c) 2018 Remain Software
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     wim.jongman@remainsoftware.com - initial API and implementation
 *******************************************************************************/
package org.eclipse.tips.ide.internal;

/**
 * Shared constants.
 *
 */
public class Constants {

	/**
	 * The ID of this bundle
	 */
	public static final String BUNDLE_ID = "org.eclipse.tips.ide"; //$NON-NLS-1$

	/**
	 * The workbench variable to be used on core expressions.
	 */
	public static final String SOURCE_UNREAD_TIPS = "newtips"; //$NON-NLS-1$
}

Back to the top