comparison dwtx/jface/text/projection/ProjectionMapping.d @ 133:7d818bd32d63

Fix ctors to this with gvim regexp
author Frank Benoit <benoit@tionex.de>
date Sun, 24 Aug 2008 01:29:22 +0200
parents c4fb132a086c
children 51e6e63f930e
comparison
equal deleted inserted replaced
132:77bd3bb3d7b8 133:7d818bd32d63
75 * @param masterDocument the master document 75 * @param masterDocument the master document
76 * @param fragmentsCategory the position category of the parent document used to manage the projected regions 76 * @param fragmentsCategory the position category of the parent document used to manage the projected regions
77 * @param slaveDocument the slave document 77 * @param slaveDocument the slave document
78 * @param segmentsCategory the position category of the projection document used to manage the fragments 78 * @param segmentsCategory the position category of the projection document used to manage the fragments
79 */ 79 */
80 public ProjectionMapping(IDocument masterDocument, String fragmentsCategory, IDocument slaveDocument, String segmentsCategory) { 80 public this(IDocument masterDocument, String fragmentsCategory, IDocument slaveDocument, String segmentsCategory) {
81 fMasterDocument= masterDocument; 81 fMasterDocument= masterDocument;
82 fFragmentsCategory= fragmentsCategory; 82 fFragmentsCategory= fragmentsCategory;
83 fSlaveDocument= slaveDocument; 83 fSlaveDocument= slaveDocument;
84 fSegmentsCategory= segmentsCategory; 84 fSegmentsCategory= segmentsCategory;
85 } 85 }