| 1 | /* |
| 2 | *Copyright 2007, SDQ, IPD, Uni Karlsruhe (TH) |
| 3 | */ |
| 4 | package de.uka.ipd.sdq.pcm.gmf.composite.view.factories; |
| 5 | |
| 6 | import org.eclipse.core.runtime.IAdaptable; |
| 7 | import org.eclipse.gmf.runtime.notation.View; |
| 8 | import java.util.ArrayList; |
| 9 | import java.util.List; |
| 10 | |
| 11 | import org.eclipse.gmf.runtime.diagram.ui.view.factories.BasicNodeViewFactory; |
| 12 | |
| 13 | /** |
| 14 | * @generated |
| 15 | */ |
| 16 | public class AssemblyContextEntityNameViewFactory extends BasicNodeViewFactory { |
| 17 | |
| 18 | /** |
| 19 | * @generated |
| 20 | */ |
| 21 | protected void decorateView(View containerView, View view, |
| 22 | IAdaptable semanticAdapter, String semanticHint, int index, |
| 23 | boolean persisted) { |
| 24 | super.decorateView(containerView, view, semanticAdapter, semanticHint, |
| 25 | index, persisted); |
| 26 | } |
| 27 | |
| 28 | /** |
| 29 | * @generated |
| 30 | */ |
| 31 | protected List createStyles(View view) { |
| 32 | List styles = new ArrayList(); |
| 33 | return styles; |
| 34 | } |
| 35 | } |