Skip to main content
summaryrefslogtreecommitdiffstats
blob: b6bd1432294a76af89bfc05760d81e770790694d (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*******************************************************************************
 * 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.examples.eclipsetips;

import java.io.IOException;
import java.util.Date;

import org.eclipse.tips.core.IHtmlTip;
import org.eclipse.tips.core.Tip;
import org.eclipse.tips.core.TipImage;
import org.eclipse.tips.core.TipProvider;
import org.eclipse.tips.core.internal.LogUtil;
import org.eclipse.tips.examples.DateUtil;
import org.osgi.framework.Bundle;
import org.osgi.framework.FrameworkUtil;

public class Tip2 extends Tip implements IHtmlTip {


	public Tip2(String providerId) {
		super(providerId);
	}

	@Override
	public Date getCreationDate() {
		return DateUtil.getDateFromYYMMDD("10/01/2018");
	}

	@Override
	public String getSubject() {
		return "Quick Access";
	}

	@Override
	public String getHTML() {
		return "<h1>Quick access</h1>You can quickly find all manner of"
				+ " user interface elements with the <b>Quick Access</b>"
				+ " search bar at the top of the workbench window. Click"
				+ " in the field or use the <b>Ctrl+3</b> binding to switch"
				+ " focus to it. Matching elements include (but are not limited to)"
				+ " open editors, available perspectives, views, preferences, wizards,"
				+ " and commands. Simply start typing the name of the item you wish to"
				+ " invoke and we will attempt to find something in the Workbench that"
				+ " matches the provided string. ";
	}

	@Override
	public TipImage getImage() {
		Bundle bundle = FrameworkUtil.getBundle(getClass());
		try {
			return new TipImage(bundle.getEntry("images/eclipsetips/tip2.png"));
		} catch (IOException e) {
//			getProvider().getManager().log(LogUtil.error(getClass(), e));
		}
		return null;

	}
}

Back to the top