blob: 3f613fad139137ce7e6e5cbc13474135169c930c [file] [log] [blame]
/*******************************************************************************
* 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.jst.jsp.ui.tests.validation;
import org.eclipse.wst.validation.internal.provisional.core.IValidationContext;
class ValidationContextForTest implements IValidationContext {
private String fURI = null;
public void setURI(String uri) {
fURI = uri;
}
public String[] getURIs() {
if (fURI != null)
return new String[]{fURI};
return new String[0];
}
public Object loadModel(String symbolicName) {
return null;
}
public Object loadModel(String symbolicName, Object[] parms) {
return null;
}
}