OMGraphic omg = list.getOMGraphicAt(0);
DrawingTool dt = getDrawingTool();
if (dt != null && dt.canEdit(omg.getClass())) {
dt.setBehaviorMask(OMDrawingTool.QUICK_CHANGE_BEHAVIOR_MASK);
if (dt.edit(omg, this) == null) {
// Shouldn't see this because we checked, but ...
fireRequestInfoLine("Can't figure out how to modify this object.");
}
}
}