blob: 307d6730bfca1885af6b6f8931847efaa92ff11a [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2009 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.runtime.diagram.ui.view.factories.optimal;
import org.eclipse.gmf.runtime.notation.BasicSemanticCompartment;
import org.eclipse.gmf.runtime.notation.NotationFactory;
/**
* Factory for SemanticListCompartment view, ideal for
* {@link org.eclipse.gmf.runtime.diagram.ui.editparts.SemanticListCompartmentEditPart}
* controller
*
* @author aboyko
* @since 1.2
*
*/
public class SemanticListCompartmentViewFactory extends
BasicSemanticCompartmentViewFactory {
@Override
protected BasicSemanticCompartment createNode() {
return NotationFactory.eINSTANCE.createSemanticListCompartment();
}
}