View | Details | Raw Unified | Return to bug 133911 | Differences between
and this patch

Collapse All | Expand All

(-)model/org/eclipse/jdt/core/IJavaModel.java (-1 / +8 lines)
Lines 89-95 Link Here
89
 * <li> There is no element to process (NO_ELEMENTS_TO_PROCESS). The given elements is null or empty</li>
89
 * <li> There is no element to process (NO_ELEMENTS_TO_PROCESS). The given elements is null or empty</li>
90
 * <li> A specified element, container, or sibling does not exist (ELEMENT_DOES_NOT_EXIST)</li>
90
 * <li> A specified element, container, or sibling does not exist (ELEMENT_DOES_NOT_EXIST)</li>
91
 * <li> A <code>CoreException</code> occurred while updating an underlying resource</li>
91
 * <li> A <code>CoreException</code> occurred while updating an underlying resource</li>
92
 * <li> A container is of an incompatible type (<code>INVALID_DESTINATION</code>)</li>
92
 * <li> INVALID_DESTINATION - A destination container specified is of an incompatible type. 
93
 * 		The destination for a package fragment must be a package fragment root; the 
94
 * 		destination for a compilation unit must be a package fragment; the destination for 
95
 * 		a package declaration or import declaration must be a compilation unit; the 
96
 * 		destination for a type must be a type or compilation unit; the destination for any 
97
 * 		type member (other than a type) must be a type.</li>
93
 * <li> A sibling is not a child of it associated container (<code>INVALID_SIBLING</code>)</li>
98
 * <li> A sibling is not a child of it associated container (<code>INVALID_SIBLING</code>)</li>
94
 * <li> A new name is invalid (<code>INVALID_NAME</code>)</li>
99
 * <li> A new name is invalid (<code>INVALID_NAME</code>)</li>
95
 * <li> A child in its associated container already exists with the same
100
 * <li> A child in its associated container already exists with the same
Lines 201-206 Link Here
201
 * </ul>
206
 * </ul>
202
 *
207
 *
203
 * @exception IllegalArgumentException any element or container is <code>null</code>
208
 * @exception IllegalArgumentException any element or container is <code>null</code>
209
 * @see IJavaModel#copy(IJavaElement[], IJavaElement[], IJavaElement[], String[], boolean, IProgressMonitor)
210
 * 
204
 */
211
 */
205
void move(IJavaElement[] elements, IJavaElement[] containers, IJavaElement[] siblings, String[] renamings, boolean replace, IProgressMonitor monitor) throws JavaModelException;
212
void move(IJavaElement[] elements, IJavaElement[] containers, IJavaElement[] siblings, String[] renamings, boolean replace, IProgressMonitor monitor) throws JavaModelException;
206
213

Return to bug 133911