blob: 43221ec3a6cc87946c73792d0216f7cfcc6341dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* Created on Sep 22, 2003
*
*/
package org.eclipse.wst.common.internal.emf.utilities;
import org.eclipse.emf.common.notify.Adapter;
/**
* Interface that exposes the clone method, for objects that need to generically copy other
* cloneable objects
*/
public interface CloneablePublic extends Cloneable, Adapter.Internal {
Object clone();
}