comparison dwtx/jface/text/projection/ProjectionMapping.d @ 147:000f9136b8f7

final
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 22:35:05 +0200
parents 26688fec6d23
children 1a5b8f8129df
comparison
equal deleted inserted replaced
146:75302ef3f92f 147:000f9136b8f7
50 * @noinstantiate This class is not intended to be instantiated by clients. 50 * @noinstantiate This class is not intended to be instantiated by clients.
51 * @noextend This class is not intended to be subclassed by clients. 51 * @noextend This class is not intended to be subclassed by clients.
52 */ 52 */
53 public class ProjectionMapping : IDocumentInformationMapping , IDocumentInformationMappingExtension, IDocumentInformationMappingExtension2, IMinimalMapping { 53 public class ProjectionMapping : IDocumentInformationMapping , IDocumentInformationMappingExtension, IDocumentInformationMappingExtension2, IMinimalMapping {
54 54
55 private static final int LEFT= -1; 55 private static const int LEFT= -1;
56 private static final int NONE= 0; 56 private static const int NONE= 0;
57 private static final int RIGHT= +1; 57 private static const int RIGHT= +1;
58 58
59 /** The master document */ 59 /** The master document */
60 private IDocument fMasterDocument; 60 private IDocument fMasterDocument;
61 /** The position category used to manage the projection fragments inside the master document */ 61 /** The position category used to manage the projection fragments inside the master document */
62 private String fFragmentsCategory; 62 private String fFragmentsCategory;