blob: 891f57513f89f274b57349c0d8f729c3567de16a [file] [log] [blame]
/*
* Copyright (c) 2006, 2007 Borland Software Corporation.
* 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:
* Richard Gronback (Borland) - initial API and implementation
*/
package org.eclipse.gmf.examples.mindmap.rcp.view.factories;
import org.eclipse.gmf.examples.mindmap.rcp.edit.parts.Relationship2EditPart;
import org.eclipse.gmf.examples.mindmap.rcp.part.MindmapVisualIDRegistry;
import org.eclipse.gmf.runtime.lite.services.IViewDecorator;
import org.eclipse.gmf.runtime.notation.Node;
import org.eclipse.gmf.runtime.notation.NotationFactory;
import org.eclipse.gmf.runtime.notation.NotationPackage;
import org.eclipse.gmf.runtime.notation.View;
/**
* @generated
*/
public class Relationship2ViewFactory implements IViewDecorator {
/**
* @generated
*/
public static Relationship2ViewFactory INSTANCE = new Relationship2ViewFactory();
/**
* @generated
*/
public void decorateView(View view) {
if (view.eIsSet(NotationPackage.eINSTANCE.getView_Type())) {
return;
}
view.setType(MindmapVisualIDRegistry
.getType(Relationship2EditPart.VISUAL_ID));
create6002Label(view);
}
/**
* @generated
*/
private void create6002Label(View view) {
Node label = NotationFactory.eINSTANCE.createNode();
view.getPersistedChildren().add(label);
RelationshipLabel2ViewFactory.INSTANCE.decorateView(label);
}
}