Bullet

Instances of this class represent bullets in the <code>StyledText</code>. <p> The hashCode() method in this class uses the values of the public fields to compute the hash value. When storing instances of the class in hashed collections, do not modify these fields after the object has been inserted. </p> <p> Application code does <em>not</em> need to explicitly release the resources managed by each instance when those instances are no longer required, and thus no <code>dispose()</code> method is provided. </p>

@see StyledText#setLineBullet(int, int, Bullet) @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>

@since 3.2

Constructors

this
this(StyleRange style)

Create a new bullet with the specified style, and type <code>ST.BULLET_DOT</code>. The style must have a glyph metrics set.

this
this(int type, StyleRange style)

Create a new bullet the specified style and type. The style must have a glyph metrics set.

Members

Functions

addIndices
void addIndices(int startLine, int lineCount)
Undocumented in source. Be warned that the author may not have intended to support it.
indexOf
int indexOf(int lineIndex)
Undocumented in source. Be warned that the author may not have intended to support it.
removeIndices
int[] removeIndices(int startLine, int replaceLineCount, int newLineCount, bool update)
Undocumented in source. Be warned that the author may not have intended to support it.
size
int size()
Undocumented in source. Be warned that the author may not have intended to support it.
toHash
hash_t toHash()
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

count
int count;
Undocumented in source.
linesIndices
int[] linesIndices;
Undocumented in source.
style
StyleRange style;

The bullet style.

text
String text;

The bullet text.

type
int type;

The bullet type. Possible values are: <ul> <li><code>ST.BULLET_DOT</code></li> <li><code>ST.BULLET_NUMBER</code></li> <li><code>ST.BULLET_LETTER_LOWER</code></li> <li><code>ST.BULLET_LETTER_UPPER</code></li> <li><code>ST.BULLET_TEXT</code></li> <li><code>ST.BULLET_CUSTOM</code></li> </ul>

Meta