blob: cf2ec62b6c4967b103cf2c55c8b076f4ff8b0bfc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2020 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
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.sse.core.internal.cleanup;
import java.util.HashMap;
import java.util.Map;
import org.eclipse.core.runtime.Assert;
public class StructuredContentCleanupHandlerImpl implements StructuredContentCleanupHandler {
protected Map<String,IStructuredCleanupProcessor> fCleanupProcessors;
public IStructuredCleanupProcessor getCleanupProcessor(String contentType) {
Assert.isNotNull(contentType);
if (fCleanupProcessors == null)
return null;
return fCleanupProcessors.get(contentType);
}
public void setCleanupProcessor(IStructuredCleanupProcessor cleanupProcessor, String contentType) {
Assert.isNotNull(contentType);
if (fCleanupProcessors == null)
fCleanupProcessors = new HashMap<>();
if (fCleanupProcessors == null)
fCleanupProcessors.remove(contentType);
else
fCleanupProcessors.put(contentType, cleanupProcessor);
}
}