View | Details | Raw Unified | Return to bug 250398
Collapse All | Expand All

(-)model/org/eclipse/jdt/core/IType.java (-18 / +18 lines)
Lines 39-47 Link Here
39
	/**
39
	/**
40
	 * Do code completion inside a code snippet in the context of the current type.
40
	 * Do code completion inside a code snippet in the context of the current type.
41
	 *
41
	 *
42
	 * If the type can access to his source code and the insertion position is valid,
42
	 * If the type has access to its source code and the insertion position is valid,
43
	 * then completion is performed against source. Otherwise the completion is performed
43
	 * then completion is performed against the source. Otherwise the completion is performed
44
	 * against type structure and given locals variables.
44
	 * against the type structure and the given locals variables.
45
	 *
45
	 *
46
	 * @param snippet the code snippet
46
	 * @param snippet the code snippet
47
	 * @param insertion the position with in source where the snippet
47
	 * @param insertion the position with in source where the snippet
Lines 82-90 Link Here
82
	 * Note that if a working copy is empty, it will be as if the original compilation
82
	 * Note that if a working copy is empty, it will be as if the original compilation
83
	 * unit had been deleted.
83
	 * unit had been deleted.
84
	 * </p><p>
84
	 * </p><p>
85
	 * If the type can access to his source code and the insertion position is valid,
85
	 * If the type has access to its source code and the insertion position is valid,
86
	 * then completion is performed against source. Otherwise the completion is performed
86
	 * then completion is performed against the source. Otherwise the completion is performed
87
	 * against type structure and given locals variables.
87
	 * against the type structure and the given locals variables.
88
	 * </p>
88
	 * </p>
89
	 *
89
	 *
90
	 * @param snippet the code snippet
90
	 * @param snippet the code snippet
Lines 122-130 Link Here
122
	/**
122
	/**
123
	 * Do code completion inside a code snippet in the context of the current type.
123
	 * Do code completion inside a code snippet in the context of the current type.
124
	 *
124
	 *
125
	 * If the type can access to his source code and the insertion position is valid,
125
	 * If the type has access to its source code and the insertion position is valid,
126
	 * then completion is performed against source. Otherwise the completion is performed
126
	 * then completion is performed against the source. Otherwise the completion is performed
127
	 * against type structure and given locals variables.
127
	 * against the type structure and the given locals variables.
128
	 *
128
	 *
129
	 * @param snippet the code snippet
129
	 * @param snippet the code snippet
130
	 * @param insertion the position with in source where the snippet
130
	 * @param insertion the position with in source where the snippet
Lines 158-166 Link Here
158
	/**
158
	/**
159
	 * Do code completion inside a code snippet in the context of the current type.
159
	 * Do code completion inside a code snippet in the context of the current type.
160
	 *
160
	 *
161
	 * If the type can access to his source code and the insertion position is valid,
161
	 * If the type has access to its source code and the insertion position is valid,
162
	 * then completion is performed against source. Otherwise the completion is performed
162
	 * then completion is performed against the source. Otherwise the completion is performed
163
	 * against type structure and given locals variables.
163
	 * against the type structure and the given locals variables.
164
	 *
164
	 *
165
	 * @param snippet the code snippet
165
	 * @param snippet the code snippet
166
	 * @param insertion the position with in source where the snippet
166
	 * @param insertion the position with in source where the snippet
Lines 202-210 Link Here
202
	 * Note that if a working copy is empty, it will be as if the original compilation
202
	 * Note that if a working copy is empty, it will be as if the original compilation
203
	 * unit had been deleted.
203
	 * unit had been deleted.
204
	 * </p><p>
204
	 * </p><p>
205
	 * If the type can access to his source code and the insertion position is valid,
205
	 * If the type has access to its source code and the insertion position is valid,
206
	 * then completion is performed against source. Otherwise the completion is performed
206
	 * then completion is performed against the source. Otherwise the completion is performed
207
	 * against type structure and given locals variables.
207
	 * against the type structure and the given locals variables.
208
	 * </p>
208
	 * </p>
209
	 *
209
	 *
210
	 * @param snippet the code snippet
210
	 * @param snippet the code snippet
Lines 247-255 Link Here
247
	 * Note that if a working copy is empty, it will be as if the original compilation
247
	 * Note that if a working copy is empty, it will be as if the original compilation
248
	 * unit had been deleted.
248
	 * unit had been deleted.
249
	 * </p><p>
249
	 * </p><p>
250
	 * If the type can access to his source code and the insertion position is valid,
250
	 * If the type has access to its source code and the insertion position is valid,
251
	 * then completion is performed against source. Otherwise the completion is performed
251
	 * then completion is performed against the source. Otherwise the completion is performed
252
	 * against type structure and given locals variables.
252
	 * against the type structure and the given locals variables.
253
	 * </p>
253
	 * </p>
254
	 *
254
	 *
255
	 * @param snippet the code snippet
255
	 * @param snippet the code snippet

Return to bug 250398