blob: 132bfbbb63ba62fdb916330210fa2bb2932db0e9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2019 EclipseSource Muenchen GmbH 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:
* Eugen Neufeld - initial API and implementation
******************************************************************************/
package org.eclipse.emfforms.internal.datatemplate.tooling.editor;
import org.eclipse.emfforms.datatemplate.TemplateCollection;
import org.eclipse.emfforms.spi.editor.GenericEditor;
/**
* The DataTemplateEditor for editing {@link TemplateCollection}.
*
* @author Eugen Neufeld
*
*/
public class DataTemplateEditor extends GenericEditor {
@Override
protected boolean enableValidation() {
return true;
}
}