Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8c0b50b845ed8d869d2946c9088a5d3ffd6a824c (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
/*******************************************************************************
 * 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.core;

import java.util.Date;

import org.eclipse.tips.ui.internal.util.DateUtil;

public class TestTip extends Tip implements IHtmlTip {

	private String fSubject;
	private String fHTML;

	public TestTip(String providerId, String html, String subject) {
		super(providerId);
		fHTML = html;
		fSubject = subject;
	}

	@Override
	public Date getCreationDate() {
		return DateUtil.getDateFromYYMMDD("31/12/1964");
	}

	@Override
	public String getHTML() {
		return fHTML;
	}

	@Override
	public String getSubject() {
		return fSubject;
	}

	@Override
	public TipImage getImage() {
		return null;
	}
}

Back to the top