blob: d1f3a79f0065de807acbfb00654a5397d20d787f [file] [log] [blame]
/******************************************************************************
* Copyright (c) 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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
****************************************************************************/
package org.eclipse.gmf.tests.runtime.emf.type.core.internal;
import org.eclipse.gmf.runtime.emf.type.core.edithelper.AbstractEditHelper;
import org.eclipse.gmf.tests.runtime.emf.type.core.employee.Client;
/**
* Empty implementation of a concrete edit helper for {@link Client}s.
*
* @author Christian W. Damus (cdamus)
*/
public class ClientEditHelper
extends AbstractEditHelper {
public ClientEditHelper() {
super();
}
}