/******************************************************************************* * Copyright (c) 2012 Google, Inc and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Alex Ruiz (Google) - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.codan.core.param; /** * Preferences that can be shared among several problems. * * @since 2.1 */ public class SharedRootProblemPreference extends RootProblemPreference { @Override public Object clone() { SharedRootProblemPreference map = (SharedRootProblemPreference) super.clone(); // alruiz: sharing the internal hash is the only way I could make this work. return map; } }