com.borland.primetime.editor
Class EditorDocument.RunInfo

java.lang.Object
  |
  +--com.borland.primetime.editor.EditorDocument.RunInfo
Enclosing class:
EditorDocument

public static class EditorDocument.RunInfo
extends java.lang.Object

This inner class stores blocks of run information. Storage for this class is handled by two arrays of shorts -- one stores run length, and the other stores style type. For example, a file which starts with a 15 character comment, then 23 characters of text, then a 6-character keyword, then 17 more characters of text would have arrays that start like this: 15, 23, 6, 17, , ... COMMENT, PLAIN, KEYWORD, PLAIN, ...


Field Summary
 short[] lengthData
           
 short[] styleData
           
 
Method Summary
 boolean equals(EditorDocument.RunInfo ri)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

lengthData

public short[] lengthData

styleData

public short[] styleData
Method Detail

equals

public boolean equals(EditorDocument.RunInfo ri)