1 27 28 package org.nightlabs.editor2d.edit; 29 30 import org.eclipse.gef.EditPolicy; 31 32 import org.nightlabs.editor2d.DrawComponent; 33 import org.nightlabs.editor2d.editpolicy.DrawComponentEditPolicy; 34 35 public abstract class DrawComponentEditPart 36 extends AbstractDrawComponentEditPart 37 { 38 41 public DrawComponentEditPart(DrawComponent drawComponent) 42 { 43 super(drawComponent); 44 } 45 46 49 protected void createEditPolicies() 50 { 51 installEditPolicy(EditPolicy.COMPONENT_ROLE, new DrawComponentEditPolicy()); 53 } 54 55 } 56 | Popular Tags |