blob: e8933d66a3c6be9da77c060c5bc1d6fd4f0f30d2 [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.Customer;
/**
* Empty implementation of a concrete edit helper for {@link Customer}s.
*
* @author Christian W. Damus (cdamus)
*/
public class CustomerEditHelper
extends AbstractEditHelper {
public CustomerEditHelper() {
super();
}
}