Interface IHighlight
- 
- All Known Implementing Classes:
- AbstractSfcGridHighlight,- ErrorHighlight,- ExpandedGroupHighlight,- ItemSelectionHighlight,- RectangularHighlight,- ScaleControls.AnchorHL,- SelectionMarqueeHighlight
 
 public interface IHighlight
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.awt.geom.Rectangle2DgetRectangle()The outer bounding box of the highlightcom.google.common.base.Optional<java.lang.String>getTooltip()Return the tooltip for this highlight, if applicablebooleanisZoomed()If this is true, the highlight's rectangle needs to be adjusted for zoom level in order to be accurate in 2d space.voidpaint(DesignPanel panel, java.awt.Graphics2D g)Paint this highlight
 
- 
- 
- 
Method Detail- 
getRectanglejava.awt.geom.Rectangle2D getRectangle() The outer bounding box of the highlight
 - 
paintvoid paint(DesignPanel panel, java.awt.Graphics2D g) Paint this highlight
 - 
isZoomedboolean isZoomed() If this is true, the highlight's rectangle needs to be adjusted for zoom level in order to be accurate in 2d space. Otherwise the rectangle is already in 2d space
 - 
getTooltipcom.google.common.base.Optional<java.lang.String> getTooltip() Return the tooltip for this highlight, if applicable
 
- 
 
-