Skip to main content
summaryrefslogtreecommitdiffstats
blob: f63aef9af762b335368447c3210115a5e3123a04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*******************************************************************************
 * 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
 *******************************************************************************/
/**
 * Tip Framework core API. A UI agnostic API for the Tip of the Day. Known
 * implementation is in package org.eclipse.tips.ui. If you run in the Eclipse
 * IDE you may use the tips extension point to register a new
 * {@link org.eclipse.tips.core.TipProvider}.If you want to run the Tip
 * framework outside of the IDE (e.g. in an RCP application) then you should
 * also implement your own {@link org.eclipse.tips.core.TipManager} and start
 * that with some action or at startup of your application.
 */
package org.eclipse.tips.core;

Back to the top