/******************************************************************************* * Copyright (c) 2004, 2006 * Thomas Hallgren, Kenneth Olwing, Mitch Sonies * Pontus Rydin, Nils Unden, Peer Torngren * The code, documentation and other materials contained herein have been * licensed under the Eclipse Public License - v 1.0 by the individual * copyright holders listed above, as Initial Contributors under such license. * The text of such license is available at www.eclipse.org. *******************************************************************************/ package org.eclipse.buckminster.pde.internal.model; import java.net.URL; import org.eclipse.pde.internal.core.NLResourceHelper; import org.eclipse.pde.internal.core.plugin.AbstractExtensionsModel; /** * An ExtensionsModel found at some arbitrary location, i.e. not necessarily in * the workspace. * * @author Thomas Hallgren */ @SuppressWarnings("restriction") public class ExternalExtensionsModel extends AbstractExtensionsModel { private static final long serialVersionUID = 7673596323381247681L; @Override public String getInstallLocation() { return null; } @Override public URL getNLLookupLocation() { return null; } @Override public boolean isEditable() { return false; } @Override public boolean isInSync() { return true; } @Override public void load() { } @Override protected NLResourceHelper createNLResourceHelper() { return null; } @Override protected void updateTimeStamp() { } }