KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > corext > refactoring > reorg > IReorgQueries


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.internal.corext.refactoring.reorg;
12
13 public interface IReorgQueries {
14
15     public static final int CONFIRM_DELETE_EMPTY_CUS= 2;
16
17     public static final int CONFIRM_DELETE_FOLDERS_CONTAINING_SOURCE_FOLDERS= 4;
18
19     public static final int CONFIRM_DELETE_GETTER_SETTER= 1;
20
21     public static final int CONFIRM_DELETE_LINKED_PARENT= 8;
22
23     public static final int CONFIRM_DELETE_REFERENCED_ARCHIVES= 3;
24
25     public static final int CONFIRM_OVERWRITING= 6;
26
27     public static final int CONFIRM_READ_ONLY_ELEMENTS= 5;
28
29     public static final int CONFIRM_SKIPPING= 7;
30
31     IConfirmQuery createSkipQuery(String JavaDoc queryTitle, int queryID);
32
33     IConfirmQuery createYesNoQuery(String JavaDoc queryTitle, boolean allowCancel, int queryID);
34
35     IConfirmQuery createYesYesToAllNoNoToAllQuery(String JavaDoc queryTitle, boolean allowCancel, int queryID);
36 }
37
Popular Tags