/* * Copyright (C) Yutaka Matsuno 2010-2012 All rights reserved. */ // AUTO_GENERATED:START package net.dependableos.dcase.diagram.edit.parts; import static net.dependableos.dcase.diagram.common.constant.SystemDefinitionConst.NODE_MARGIN_BOTTOM; import static net.dependableos.dcase.diagram.common.constant.SystemDefinitionConst.NODE_MARGIN_LEFT; import static net.dependableos.dcase.diagram.common.constant.SystemDefinitionConst.NODE_MARGIN_RIGHT; import static net.dependableos.dcase.diagram.common.constant.SystemDefinitionConst.NODE_MARGIN_TOP; import static net.dependableos.dcase.diagram.common.constant.SystemDefinitionConst.NODE_MARGIN_VERTICAL; import java.util.ArrayList; import java.util.List; import net.dependableos.dcase.diagram.edit.parts.custom.CustomBorderLayout; import net.dependableos.dcase.diagram.edit.parts.custom.CustomMultiLineFlowLayout; import net.dependableos.dcase.diagram.edit.parts.custom.CustomWrappingLabel; import net.dependableos.dcase.diagram.edit.parts.custom.DcaseNodeEditPart; import net.dependableos.dcase.diagram.edit.parts.custom.DcaseThumbnailEx; import net.dependableos.dcase.diagram.edit.parts.custom.SetParametersActionFilter; import net.dependableos.dcase.diagram.edit.policies.GoalItemSemanticEditPolicy; import net.dependableos.dcase.diagram.part.DcaseVisualIDRegistry; import net.dependableos.dcase.diagram.providers.DcaseElementTypes; import org.eclipse.swt.graphics.Color; import org.eclipse.ui.IActionFilter; import org.eclipse.ui.IEditorPart; import org.eclipse.ui.PlatformUI; import org.eclipse.draw2d.BorderLayout; import org.eclipse.draw2d.FlowLayout; import org.eclipse.draw2d.IFigure; import org.eclipse.draw2d.MarginBorder; import org.eclipse.draw2d.MouseEvent; import org.eclipse.draw2d.MouseMotionListener; import org.eclipse.draw2d.Panel; import org.eclipse.draw2d.RectangleFigure; import org.eclipse.draw2d.Shape; import org.eclipse.draw2d.StackLayout; import org.eclipse.draw2d.geometry.Dimension; import org.eclipse.gef.EditPart; import org.eclipse.gef.EditPolicy; import org.eclipse.gef.commands.Command; import org.eclipse.gef.editpolicies.FlowLayoutEditPolicy; import org.eclipse.gef.editpolicies.LayoutEditPolicy; import org.eclipse.gef.requests.CreateRequest; import org.eclipse.gmf.runtime.diagram.ui.editparts.DiagramEditPart; import org.eclipse.gmf.runtime.diagram.ui.editparts.IGraphicalEditPart; import org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles; import org.eclipse.gmf.runtime.diagram.ui.parts.DiagramEditor; import org.eclipse.gmf.runtime.draw2d.ui.figures.ConstrainedToolbarLayout; import org.eclipse.gmf.runtime.draw2d.ui.figures.WrappingLabel; import org.eclipse.gmf.runtime.emf.type.core.IElementType; import org.eclipse.gmf.runtime.gef.ui.figures.DefaultSizeNodeFigure; import org.eclipse.gmf.runtime.gef.ui.figures.NodeFigure; import org.eclipse.gmf.runtime.notation.View; /** * @generated */ public class GoalEditPart extends DcaseNodeEditPart { /** * @generated */ public static final int VISUAL_ID = 1001; /** * @generated */ protected IFigure contentPane; /** * @generated */ protected IFigure primaryShape; /** * @generated */ public GoalEditPart(View view) { super(view); } /** * @generated */ protected void createDefaultEditPolicies() { super.createDefaultEditPolicies(); installEditPolicy(EditPolicyRoles.SEMANTIC_ROLE, new GoalItemSemanticEditPolicy()); installEditPolicy(EditPolicy.LAYOUT_ROLE, createLayoutEditPolicy()); // XXX need an SCR to runtime to have another abstract superclass that would let children add reasonable editpolicies // removeEditPolicy(org.eclipse.gmf.runtime.diagram.ui.editpolicies.EditPolicyRoles.CONNECTION_HANDLES_ROLE); } /** * @generated */ protected LayoutEditPolicy createLayoutEditPolicy() { FlowLayoutEditPolicy lep = new FlowLayoutEditPolicy() { protected Command createAddCommand(EditPart child, EditPart after) { return null; } protected Command createMoveChildCommand(EditPart child, EditPart after) { return null; } protected Command getCreateCommand(CreateRequest request) { return null; } }; return lep; } /** * @generated */ protected IFigure createNodeShape() { GoalFigure figure = new GoalFigure(); return primaryShape = figure; } /** * @generated */ public GoalFigure getPrimaryShape() { return (GoalFigure) primaryShape; } /** * @generated */ protected boolean addFixedChild(EditPart childEditPart) { if (childEditPart instanceof GoalDescEditPart) { ((GoalDescEditPart) childEditPart).setLabel(getPrimaryShape() .getFigureGoalDescFigure()); return true; } if (childEditPart instanceof GoalUserdef002EditPart) { ((GoalUserdef002EditPart) childEditPart).setLabel(getPrimaryShape() .getFigureGoalUserdef002Figure()); return true; } if (childEditPart instanceof GoalNameEditPart) { ((GoalNameEditPart) childEditPart).setLabel(getPrimaryShape() .getFigureGoalNameFigure()); return true; } if (childEditPart instanceof GoalUserdef001EditPart) { ((GoalUserdef001EditPart) childEditPart).setLabel(getPrimaryShape() .getFigureGoalUserdef001Figure()); return true; } if (childEditPart instanceof GoalAttachmentEditPart) { ((GoalAttachmentEditPart) childEditPart).setLabel(getPrimaryShape() .getFigureGoalAttachmentFigure()); return true; } if (childEditPart instanceof GoalResponsibilityEditPart) { ((GoalResponsibilityEditPart) childEditPart).setLabel(getPrimaryShape() .getFigureGoalResponsibilityFigure()); return true; } return false; } /** * @generated */ protected boolean removeFixedChild(EditPart childEditPart) { if (childEditPart instanceof GoalDescEditPart) { return true; } if (childEditPart instanceof GoalUserdef002EditPart) { return true; } if (childEditPart instanceof GoalNameEditPart) { return true; } if (childEditPart instanceof GoalUserdef001EditPart) { return true; } if (childEditPart instanceof GoalAttachmentEditPart) { return true; } if (childEditPart instanceof GoalResponsibilityEditPart) { return true; } return false; } /** * @generated */ protected void addChildVisual(EditPart childEditPart, int index) { if (addFixedChild(childEditPart)) { return; } super.addChildVisual(childEditPart, -1); } /** * @generated */ protected void removeChildVisual(EditPart childEditPart) { if (removeFixedChild(childEditPart)) { return; } super.removeChildVisual(childEditPart); } /** * @generated */ protected IFigure getContentPaneFor(IGraphicalEditPart editPart) { return getContentPane(); } /** * @generated */ protected NodeFigure createNodePlate() { DefaultSizeNodeFigure result = new DefaultSizeNodeFigure(40, 40); return result; } /** * Creates figure for this edit part. * * Body of this method does not depend on settings in generation model * so you may safely remove <i>generated</i> tag and modify it. * * @generated */ protected NodeFigure createNodeFigure() { NodeFigure figure = createNodePlate(); figure.setLayoutManager(new StackLayout()); IFigure shape = createNodeShape(); figure.add(shape); contentPane = setupContentPane(shape); return figure; } /** * Default implementation treats passed figure as content pane. * Respects layout one may have set for generated figure. * @param nodeShape instance of generated figure class * @generated */ protected IFigure setupContentPane(IFigure nodeShape) { if (nodeShape.getLayoutManager() == null) { ConstrainedToolbarLayout layout = new ConstrainedToolbarLayout(); layout.setSpacing(5); nodeShape.setLayoutManager(layout); } return nodeShape; // use nodeShape itself as contentPane } /** * @generated */ public IFigure getContentPane() { if (contentPane != null) { return contentPane; } return super.getContentPane(); } /** * @generated */ protected void setForegroundColor(Color color) { if (primaryShape != null) { primaryShape.setForegroundColor(color); } } /** * @generated */ protected void setBackgroundColor(Color color) { if (primaryShape != null) { primaryShape.setBackgroundColor(color); } } /** * @generated */ protected void setLineWidth(int width) { if (primaryShape instanceof Shape) { ((Shape) primaryShape).setLineWidth(width); } } /** * @generated */ protected void setLineType(int style) { if (primaryShape instanceof Shape) { ((Shape) primaryShape).setLineStyle(style); } } /** * @generated */ public EditPart getPrimaryChildEditPart() { return getChildBySemanticHint(DcaseVisualIDRegistry .getType(GoalNameEditPart.VISUAL_ID)); } /** * @generated */ public List/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/getMARelTypesOnSource() { List/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/types = new ArrayList/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/(); types.add(DcaseElementTypes.DcaseLink001_3001); types.add(DcaseElementTypes.DcaseLink002_3002); types.add(DcaseElementTypes.DcaseLink003_3003); types.add(DcaseElementTypes.DcaseLink004_3004); return types; } /** * @generated */ public List/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/getMARelTypesOnSourceAndTarget( IGraphicalEditPart targetEditPart) { List/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/types = new ArrayList/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/(); if (targetEditPart instanceof net.dependableos.dcase.diagram.edit.parts.GoalEditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof StrategyEditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof EvidenceEditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof MonitorEditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof UndevelopedEditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof ContextEditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof JustificationEditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof SystemEditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof PolicyEditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof Userdef001EditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof Userdef002EditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof Userdef003EditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof Userdef004EditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof Userdef005EditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof Userdef006EditPart) { types.add(DcaseElementTypes.DcaseLink001_3001); } if (targetEditPart instanceof net.dependableos.dcase.diagram.edit.parts.GoalEditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof StrategyEditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof EvidenceEditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof MonitorEditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof UndevelopedEditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof ContextEditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof JustificationEditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof SystemEditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof PolicyEditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof Userdef001EditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof Userdef002EditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof Userdef003EditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof Userdef004EditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof Userdef005EditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof Userdef006EditPart) { types.add(DcaseElementTypes.DcaseLink002_3002); } if (targetEditPart instanceof net.dependableos.dcase.diagram.edit.parts.GoalEditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof StrategyEditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof EvidenceEditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof MonitorEditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof UndevelopedEditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof ContextEditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof JustificationEditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof SystemEditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof PolicyEditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof Userdef001EditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof Userdef002EditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof Userdef003EditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof Userdef004EditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof Userdef005EditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof Userdef006EditPart) { types.add(DcaseElementTypes.DcaseLink003_3003); } if (targetEditPart instanceof net.dependableos.dcase.diagram.edit.parts.GoalEditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof StrategyEditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof EvidenceEditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof MonitorEditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof UndevelopedEditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof ContextEditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof JustificationEditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof SystemEditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof PolicyEditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof Userdef001EditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof Userdef002EditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof Userdef003EditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof Userdef004EditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof Userdef005EditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } if (targetEditPart instanceof Userdef006EditPart) { types.add(DcaseElementTypes.DcaseLink004_3004); } return types; } /** * @generated */ public List/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/getMATypesForTarget( IElementType relationshipType) { List/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/types = new ArrayList/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/(); if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Goal_1001); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Evidence_1003); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Strategy_1002); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Context_1006); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Justification_1007); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef004_1013); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Undeveloped_1005); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef005_1014); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef006_1015); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Monitor_1004); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.System_1008); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Policy_1009); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef001_1010); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef002_1011); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef003_1012); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Goal_1001); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Evidence_1003); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Strategy_1002); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Context_1006); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Justification_1007); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef004_1013); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Undeveloped_1005); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef005_1014); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef006_1015); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Monitor_1004); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.System_1008); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Policy_1009); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef001_1010); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef002_1011); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef003_1012); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Goal_1001); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Evidence_1003); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Strategy_1002); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Context_1006); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Justification_1007); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef004_1013); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Undeveloped_1005); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef005_1014); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef006_1015); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Monitor_1004); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.System_1008); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Policy_1009); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef001_1010); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef002_1011); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef003_1012); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Goal_1001); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Evidence_1003); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Strategy_1002); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Context_1006); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Justification_1007); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef004_1013); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Undeveloped_1005); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef005_1014); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef006_1015); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Monitor_1004); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.System_1008); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Policy_1009); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef001_1010); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef002_1011); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef003_1012); } return types; } /** * @generated */ public List/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/getMARelTypesOnTarget() { List/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/types = new ArrayList/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/(); types.add(DcaseElementTypes.DcaseLink001_3001); types.add(DcaseElementTypes.DcaseLink002_3002); types.add(DcaseElementTypes.DcaseLink003_3003); types.add(DcaseElementTypes.DcaseLink004_3004); return types; } /** * @generated */ public List/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/getMATypesForSource( IElementType relationshipType) { List/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/types = new ArrayList/*<org.eclipse.gmf.runtime.emf.type.core.IElementType>*/(); if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Goal_1001); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Evidence_1003); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Strategy_1002); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Context_1006); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Justification_1007); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef004_1013); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Undeveloped_1005); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef005_1014); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef006_1015); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Monitor_1004); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.System_1008); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Policy_1009); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef001_1010); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef002_1011); } if (relationshipType == DcaseElementTypes.DcaseLink001_3001) { types.add(DcaseElementTypes.Userdef003_1012); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Goal_1001); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Evidence_1003); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Strategy_1002); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Context_1006); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Justification_1007); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef004_1013); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Undeveloped_1005); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef005_1014); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef006_1015); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Monitor_1004); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.System_1008); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Policy_1009); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef001_1010); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef002_1011); } if (relationshipType == DcaseElementTypes.DcaseLink002_3002) { types.add(DcaseElementTypes.Userdef003_1012); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Goal_1001); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Evidence_1003); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Strategy_1002); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Context_1006); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Justification_1007); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef004_1013); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Undeveloped_1005); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef005_1014); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef006_1015); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Monitor_1004); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.System_1008); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Policy_1009); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef001_1010); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef002_1011); } if (relationshipType == DcaseElementTypes.DcaseLink003_3003) { types.add(DcaseElementTypes.Userdef003_1012); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Goal_1001); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Evidence_1003); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Strategy_1002); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Context_1006); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Justification_1007); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef004_1013); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Undeveloped_1005); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef005_1014); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef006_1015); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Monitor_1004); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.System_1008); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Policy_1009); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef001_1010); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef002_1011); } if (relationshipType == DcaseElementTypes.DcaseLink004_3004) { types.add(DcaseElementTypes.Userdef003_1012); } return types; } /** * @generated */ public class GoalFigure extends RectangleFigure implements MouseMotionListener { /** * @generated NOT */ private CustomWrappingLabel fFigureGoalNameFigure; /** * @generated NOT */ private CustomWrappingLabel fFigureGoalUserdef001Figure; /** * @generated NOT */ private CustomWrappingLabel fFigureGoalDescFigure; /** * @generated NOT */ private CustomWrappingLabel fFigureGoalUserdef002Figure; /** * @generated NOT */ private CustomWrappingLabel fFigureGoalAttachmentFigure; /** * @generated NOT */ private WrappingLabel fFigureGoalResponsibilityFigure; /** * @generated NOT */ DcaseThumbnailEx fFigureThumb; DefaultSizeNodeFigure fThumbNodeFigure; private String moduleName; Dimension prevDimension; /** * @generated NOT */ public GoalFigure() { // creates a custom layout. CustomBorderLayout layoutThis = new CustomBorderLayout(); layoutThis.setVerticalSpacing(NODE_MARGIN_VERTICAL); // stretches the Desc attribute area vertically to fill any space left over. layoutThis.setStretchVertically(true); this.setLayoutManager(layoutThis); this.setLineWidth(1); createContents(); // sets the margins. MarginBorder border = new MarginBorder(NODE_MARGIN_TOP, NODE_MARGIN_LEFT, NODE_MARGIN_BOTTOM, NODE_MARGIN_RIGHT); setBorder(border); } /** * @generated NOT */ private void createContents() { // creates a custom layout. CustomMultiLineFlowLayout layoutTop = new CustomMultiLineFlowLayout(); layoutTop.setStretchMinorAxis(false); layoutTop.setMinorAlignment(FlowLayout.ALIGN_LEFTTOP); layoutTop.setMajorAlignment(FlowLayout.ALIGN_LEFTTOP); layoutTop.setMajorSpacing(NODE_MARGIN_VERTICAL); layoutTop.setMinorSpacing(0); layoutTop.setHorizontal(true); Panel panelTop = new Panel(); panelTop.setLayoutManager(layoutTop); this.add(panelTop, BorderLayout.TOP); fFigureGoalNameFigure = new CustomWrappingLabel(); fFigureGoalNameFigure.setText(""); panelTop.add(fFigureGoalNameFigure); fFigureGoalUserdef001Figure = new CustomWrappingLabel(); fFigureGoalUserdef001Figure.setText(""); panelTop.add(fFigureGoalUserdef001Figure); fFigureGoalDescFigure = new CustomWrappingLabel(); // sets the label text should wrap. fFigureGoalDescFigure.setTextWrap(true); fFigureGoalDescFigure.setText("[Undefined]"); //this.add(fFigureGoalDescFigure, BorderLayout.CENTER); fFigureGoalUserdef002Figure = new CustomWrappingLabel(); fFigureGoalUserdef002Figure.setText(""); CustomMultiLineFlowLayout layoutBottom = new CustomMultiLineFlowLayout(); layoutBottom.setStretchMinorAxis(false); layoutBottom.setMinorAlignment(FlowLayout.ALIGN_LEFTTOP); layoutBottom.setMajorAlignment(FlowLayout.ALIGN_LEFTTOP); layoutBottom.setMajorSpacing(NODE_MARGIN_VERTICAL); layoutBottom.setMinorSpacing(0); layoutBottom.setHorizontal(true); Panel panelBottom = new Panel(); panelBottom.setLayoutManager(layoutBottom); this.add(panelBottom, BorderLayout.CENTER); panelBottom.add(fFigureGoalDescFigure); fFigureGoalAttachmentFigure = new CustomWrappingLabel(); fFigureGoalAttachmentFigure.setTextWrap(true); fFigureGoalAttachmentFigure.setText(""); panelBottom.add(fFigureGoalAttachmentFigure); fFigureThumb = new DcaseThumbnailEx(); fFigureThumb.setSource(fFigureGoalNameFigure); // dummy fFigureThumb.setVisible(false); fThumbNodeFigure = new DefaultSizeNodeFigure(0, 0); fThumbNodeFigure.setLayoutManager(new StackLayout()); fThumbNodeFigure.add(fFigureThumb); panelBottom.add(fThumbNodeFigure); this.add(fFigureGoalUserdef002Figure, BorderLayout.BOTTOM); fFigureGoalResponsibilityFigure = new WrappingLabel(); fFigureGoalResponsibilityFigure.setTextWrap(true); fFigureGoalResponsibilityFigure.setText(""); //$NON-NLS-1$ this.add(fFigureGoalResponsibilityFigure, BorderLayout.RIGHT); addMouseMotionListener(this); } /** * @generated */ private boolean myUseLocalCoordinates = false; /** * @generated */ protected boolean useLocalCoordinates() { return myUseLocalCoordinates; } /** * @generated */ protected void setUseLocalCoordinates(boolean useLocalCoordinates) { myUseLocalCoordinates = useLocalCoordinates; } /** * @generated */ public WrappingLabel getFigureGoalNameFigure() { return fFigureGoalNameFigure; } /** * @generated */ public WrappingLabel getFigureGoalUserdef001Figure() { return fFigureGoalUserdef001Figure; } /** * @generated */ public WrappingLabel getFigureGoalDescFigure() { return fFigureGoalDescFigure; } /** * @generated */ public WrappingLabel getFigureGoalUserdef002Figure() { return fFigureGoalUserdef002Figure; } /** * The function that mouse dragged event. * @param arg0 the mouse event. */ @Override public void mouseDragged(MouseEvent arg0) { } /** * The function that mouse entered event. * @param arg0 the mouse event. */ @Override public void mouseEntered(MouseEvent arg0) { fFigureGoalNameFigure.setHighlightBGColor(); fFigureGoalDescFigure.setHighlightBGColor(); fFigureGoalUserdef001Figure.setHighlightBGColor(); fFigureGoalUserdef002Figure.setHighlightBGColor(); } /** * The function that mouse exited event. * @param arg0 the mouse event. */ @Override public void mouseExited(MouseEvent arg0) { fFigureGoalNameFigure.setDefaultBGColor(); fFigureGoalDescFigure.setDefaultBGColor(); fFigureGoalUserdef001Figure.setDefaultBGColor(); fFigureGoalUserdef002Figure.setDefaultBGColor(); } /** * The function that mouse hover event. * @param arg0 the mouse event. */ @Override public void mouseHover(MouseEvent arg0) { } /** * The function that mouse moved event. * @param arg0 the mouse event. */ @Override public void mouseMoved(MouseEvent arg0) { } /** * @generated NOT */ public WrappingLabel getFigureGoalAttachmentFigure() { return fFigureGoalAttachmentFigure; } /** * @generated NOT */ public WrappingLabel getFigureGoalResponsibilityFigure() { return fFigureGoalResponsibilityFigure; } public String getModuleValue() { return moduleName; } public Dimension setModuleValue(String name, List<IFigure> figureList) { if(name == null || name.length() == 0) { fFigureThumb.setVisible(false); if(! prevDimension.isEmpty()) { fThumbNodeFigure.setDefaultSize(0, 0); fFigureThumb.setSize(0, 0); fFigureThumb.setSourceChildren(null); moduleName = name; return prevDimension; } } else { IEditorPart editorPart = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor(); if(editorPart instanceof DiagramEditor) { DiagramEditPart diagramEditPart = ((DiagramEditor)editorPart).getDiagramEditPart(); IFigure ovFigure = diagramEditPart.getFigure(); if(ovFigure != null) { Dimension ovDimension = DcaseThumbnailEx.getChildRectangle(figureList).getSize(); Dimension curDimension = this.getSize(); if (moduleName == null || moduleName.length() == 0) { prevDimension = curDimension; } int newW = curDimension.width + ovDimension.width - fThumbNodeFigure.getDefaultSize().width; int newH = curDimension.height + ovDimension.height - fThumbNodeFigure.getDefaultSize().height; fThumbNodeFigure.setDefaultSize(ovDimension); fFigureThumb.setSource(ovFigure); fFigureThumb.setSourceChildren(figureList); fFigureThumb.setVisible(true); moduleName = name; return new Dimension(newW, newH); } } } moduleName = name; return new Dimension(0, 0); } } // AUTO_GENERATED:END /** * {@inheritDoc} */ @SuppressWarnings("unchecked") @Override public Object getAdapter(Class adapter) { if (adapter == IActionFilter.class) { return SetParametersActionFilter.getSingleton(); } return super.getAdapter(adapter); } /** * Gets the module name for visible or invisible. * @return the module name. */ public String getModuleValue() { if(primaryShape instanceof GoalFigure) { return ((GoalFigure)primaryShape).getModuleValue(); } else { return null; } } /** * Sets the module name for visible/invisible. * @param name the module name. */ public Dimension setModuleValue(String name, List<IFigure> figureList) { if(primaryShape instanceof GoalFigure) { GoalFigure goalFigure = (GoalFigure)primaryShape; return goalFigure.setModuleValue(name, figureList); } else { return new Dimension(0, 0); } } }