comparison dwtx/jface/text/link/ProposalPosition.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
52 * @param offset the offset of the position 52 * @param offset the offset of the position
53 * @param length the length of the position 53 * @param length the length of the position
54 * @param sequence the iteration sequence rank 54 * @param sequence the iteration sequence rank
55 * @param proposals the proposals to be shown when entering this position 55 * @param proposals the proposals to be shown when entering this position
56 */ 56 */
57 public ProposalPosition(IDocument document, int offset, int length, int sequence, ICompletionProposal[] proposals) { 57 public this(IDocument document, int offset, int length, int sequence, ICompletionProposal[] proposals) {
58 super(document, offset, length, sequence); 58 super(document, offset, length, sequence);
59 fProposals= copy(proposals); 59 fProposals= copy(proposals);
60 } 60 }
61 61
62 /** 62 /**
65 * @param document the document 65 * @param document the document
66 * @param offset the offset of the position 66 * @param offset the offset of the position
67 * @param length the length of the position 67 * @param length the length of the position
68 * @param proposals the proposals to be shown when entering this position 68 * @param proposals the proposals to be shown when entering this position
69 */ 69 */
70 public ProposalPosition(IDocument document, int offset, int length, ICompletionProposal[] proposals) { 70 public this(IDocument document, int offset, int length, ICompletionProposal[] proposals) {
71 super(document, offset, length, LinkedPositionGroup.NO_STOP); 71 super(document, offset, length, LinkedPositionGroup.NO_STOP);
72 fProposals= copy(proposals); 72 fProposals= copy(proposals);
73 } 73 }
74 74
75 /* 75 /*