Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 776f08a82443442b1f2289b84a2ac69c113ff4ab (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
67
68
69
70
71
72
73
74
75
/*******************************************************************************
 * Copyright (c) 2006 IBM Corporation and others.
 * 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.internal.ui.history;

import org.eclipse.jface.resource.JFaceColors;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.team.ui.history.HistoryPage;

public class GenericHistoryViewDefaultPage extends HistoryPage {
	private Composite pgComp;

	@Override
	public void createControl(Composite parent) {
		pgComp = new Composite(parent, SWT.NULL);
		pgComp.setLayout(new FillLayout());
		pgComp.setBackground(JFaceColors.getBannerBackground(pgComp.getDisplay()));
	}

	@Override
	public Control getControl() {
		return pgComp;
	}

	@Override
	public void setFocus() {
		pgComp.setFocus();
	}

	@Override
	public boolean isValidInput(Object object) {
		return false;
	}

	@Override
	public void refresh() {
		// nothing to refresh
	}

	@Override
	public String getName() {
		return ""; //$NON-NLS-1$
	}

	@Override
	public <T> T getAdapter(Class<T> adapter) {
		return null;
	}

	@Override
	public String getDescription() {
		return null;
	}

	@Override
	public Object getInput() {
		return null;
	}

	@Override
	public boolean inputSet() {
		//no history to show
		return false;
	}
}

Back to the top