blob: d0ac98df7c786cde06cf2ec19c0435f566a4c120 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.jst.server.core.tests.impl;
import java.util.*;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jst.server.core.RuntimeClasspathProviderDelegate;
import org.eclipse.wst.server.core.IRuntime;
/**
*
*/
public class TestRuntimeClasspathProviderDelegate extends RuntimeClasspathProviderDelegate {
public String getClasspathContainerLabel(IRuntime runtime, String id) {
return null;
}
public IClasspathEntry[] resolveClasspathContainer(IRuntime runtime, String id) {
return null;
}
public void testAddMethods() {
List<IClasspathEntry> list = new ArrayList<IClasspathEntry>();
try {
addLibraryEntries(list, null, false);
} catch (Exception e) {
// ignore
}
}
}