PrimitiveShape shell = editBlackboard.getGeoms().get(0).getShell();
editBlackboard.addPoint(100,100,shell);
shell.getEditGeom().setShapeType(ShapeType.POINT);
editBlackboard.newGeom("newone", null); //$NON-NLS-1$
CreateShapeBehaviour behav=new CreateShapeBehaviour(new ShapeFactory(){
@Override
public GeneralPath create( int width, int height ) {
GeneralPath path=new GeneralPath();
path.append(new Rectangle(width, height), false);
return path;