| Summary: | Out of date documentation for AnnotationRuler | ||
|---|---|---|---|
| Product: | [ECD] Orion | Reporter: | John J. Barton <johnjbarton> |
| Component: | Editor | Assignee: | Felipe Heidrich <eclipse.felipe> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | eclipse.felipe, Silenio_Quarti |
| Version: | 0.3 | ||
| Target Milestone: | 0.4 M1 | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Whiteboard: | |||
Thanks John, http://git.eclipse.org/c/orion/org.eclipse.orion.client.git/commit/?id=b139e46614931ed166b2ab314bba42b9b15aa545 We definitely need to review our doc. |
/** * Contructs a new annotation ruler. * >>>>>>>>>> First param now annotationModel * @param {String} [rulerLocation="left"] the location for the ruler. * @param {orion.textview.Style} [rulerStyle=undefined] the style for the ruler. * @param {orion.textview.Annotation} [defaultAnnotation] the default annotation. * * @augments orion.textview.Ruler * @class This objects implements an annotation ruler. * * <p><b>See:</b><br/> * {@link orion.textview.Ruler}<br/> * {@link orion.textview.Annotation} * </p> * @name orion.textview.AnnotationRuler */ function AnnotationRuler (annotationModel, rulerLocation, rulerStyle) { Ruler.call(this, annotationModel, rulerLocation, "page", rulerStyle); }