01: /*******************************************************************************
02: * Copyright (c) 2007 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.pde.internal.core;
11:
12: import java.io.File;
13:
14: public class TargetPDERegistryStrategy extends PDERegistryStrategy {
15:
16: public TargetPDERegistryStrategy(File[] storageDirs,
17: boolean[] cacheReadOnly, Object key,
18: PDEExtensionRegistry registry) {
19: super (storageDirs, cacheReadOnly, key, registry);
20: }
21:
22: protected void init() {
23: // don't attach listeners to ModelManager since we don't need to listen for changes
24: }
25:
26: }
|