Skip to main content
summaryrefslogtreecommitdiffstats
blob: 12dd6b31b5a97033ce860723ad20243f8e478213 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*******************************************************************************
 * Copyright (c) 2007 Chase Technology Ltd - http://www.chasetechnology.co.uk
 * 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:
 *     Doug Satchwell (Chase Technology Ltd) - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.xsl.internal.launching;

import org.eclipse.core.expressions.PropertyTester;

public class XSLPropertyTester extends PropertyTester
{
	public boolean test(Object arg0, String arg1, Object[] arg2, Object arg3)
	{
		return true;
	}
}

Back to the top