blob: 5e61f4d99386fcc0ce3ec0eddd478a25d980ee26 [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.diagram.ui.view.factories.BasicNodeViewFactory;
import org.eclipse.gmf.runtime.notation.BasicCompartment;
import org.eclipse.gmf.runtime.notation.NotationFactory;
/**
* Factory for {@link org.eclipse.gmf.runtime.notation.BasicCompartment} view.
* <p>Styles always present:
* <ul>
* <li>{@link org.eclipse.gmf.runtime.notation.DrawerStyle}
* </ul>
* </p>
* <p>Smaller memory footprint then Node + Style.</p>
* <p>
* Does not support addition/removal of:
* <ul>
* <li>Source Edges
* <li>Target Edges
* </ul>
* </p>
*
* @author aboyko
* @since 1.2
*
*/
public class BasicCompartmentViewFactory extends BasicNodeViewFactory {
@Override
protected BasicCompartment createNode() {
return NotationFactory.eINSTANCE.createBasicCompartment();
}
}