OMGraphicList omList = new OMGraphicList();
// Add an OMLine
OMLine line = new OMLine(40f, -75f, 42f, -70f, OMGraphic.LINETYPE_GREATCIRCLE);
line.setStroke(new BasicStroke(2));
line.putAttribute(OMGraphicConstants.LABEL,
new OMTextLabeler("Line Label"));
line.setLinePaint(Color.red);
line.setSelectPaint(Color.blue);
line.putAttribute(OMGraphicConstants.TOOLTIP, "This is an OMLine.");