Skip to main content
summaryrefslogtreecommitdiffstats
blob: 8d0e091016137ba071401c6e8fb85afe2ba679bf (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*******************************************************************************
 * Copyright (c) 2006 Sybase, Inc. 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:
 *     Sybase, Inc. - initial API and implementation
 *******************************************************************************/
package org.eclipse.jst.jsf.common.ui.internal.dialogfield;

import java.util.Collection;

import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.ui.dialogs.ISelectionStatusValidator;

/**
 * Implementation of a <code>ISelectionValidator</code> to validate the type
 * of an element. Empty selections are not accepted.
 * 
 * @author mengbo
 * @version 1.5
 */
/*package*/ class TypedElementSelectionValidator implements
		ISelectionStatusValidator {

	private IStatus _fgErrorStatus = new StatusInfo(IStatus.ERROR, ""); //$NON-NLS-1$

	private IStatus _fgOKStatus = new StatusInfo();

	private Class[] _fAcceptedTypes;

	private boolean _fAllowMultipleSelection;

	private Collection _fRejectedElements;

	/**
	 * @param acceptedTypes
	 *            The types accepted by the validator
	 * @param allowMultipleSelection
	 *            If set to <code>true</code>, the validator allows multiple
	 *            selection.
	 */
	public TypedElementSelectionValidator(Class[] acceptedTypes,
			boolean allowMultipleSelection) {
		this(acceptedTypes, allowMultipleSelection, null);
	}

	/**
	 * @param acceptedTypes
	 *            The types accepted by the validator
	 * @param allowMultipleSelection
	 *            If set to <code>true</code>, the validator allows multiple
	 *            selection.
	 * @param rejectedElements
	 *            A list of elements that are not accepted
	 */
	public TypedElementSelectionValidator(Class[] acceptedTypes,
			boolean allowMultipleSelection, Collection rejectedElements) {
		Assert.isNotNull(acceptedTypes);
		_fAcceptedTypes = acceptedTypes;
		_fAllowMultipleSelection = allowMultipleSelection;
		_fRejectedElements = rejectedElements;
	}

	/*
	 * @see org.eclipse.ui.dialogs.ISelectionValidator#isValid(java.lang.Object)
	 */
	public IStatus validate(Object[] elements) {
		if (isValid(elements)) {
			return _fgOKStatus;
		}
		return _fgErrorStatus;
	}

	private boolean isOfAcceptedType(Object o) {
		for (int i = 0; i < _fAcceptedTypes.length; i++) {
			if (_fAcceptedTypes[i].isInstance(o)) {
				return true;
			}
		}
		return false;
	}

	private boolean isRejectedElement(Object elem) {
		return (_fRejectedElements != null)
				&& _fRejectedElements.contains(elem);
	}

	private boolean isValid(Object[] selection) {
		if (selection.length == 0) {
			return false;
		}

		if (!_fAllowMultipleSelection && selection.length != 1) {
			return false;
		}

		for (int i = 0; i < selection.length; i++) {
			Object o = selection[i];
			if (!isOfAcceptedType(o) || isRejectedElement(o)) {
				return false;
			}
		}
		return true;
	}
}

Back to the top