/* * Copyright 2003-2015 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package jetbrains.mps.reloading; import java.net.URL; import java.util.ArrayList; import java.util.Collections; import java.util.List; /** * @author Kostik */ class NonExistingClassPathItem extends RealClassPathItem { private String myClassPath; NonExistingClassPathItem(String classPath) { myClassPath = classPath; } @Override public String getPath() { return myClassPath; } @Override public boolean hasClass(String name) { return false; } @Override public ClassBytes getClassBytes(String name) { return null; } @Override public URL getResource(String name) { return null; } @Override public Iterable<String> getAvailableClasses(String namespace) { return Collections.emptyList(); } @Override public Iterable<String> getSubpackages(String namespace) { return Collections.emptyList(); } @Override public List<RealClassPathItem> flatten() { List<RealClassPathItem> result = new ArrayList<RealClassPathItem>(); result.add(this); return result; } @Override public void accept(IClassPathItemVisitor visitor) { //visitor.visit(this); } public String toString() { return "non-existing-cp: " + myClassPath; } }