01: /*
02: * IzPack - Copyright 2001-2008 Julien Ponge, All Rights Reserved.
03: *
04: * http://izpack.org/
05: * http://izpack.codehaus.org/
06: *
07: * Copyright 2003 Tino Schwarze
08: *
09: * Licensed under the Apache License, Version 2.0 (the "License");
10: * you may not use this file except in compliance with the License.
11: * You may obtain a copy of the License at
12: *
13: * http://www.apache.org/licenses/LICENSE-2.0
14: *
15: * Unless required by applicable law or agreed to in writing, software
16: * distributed under the License is distributed on an "AS IS" BASIS,
17: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18: * See the License for the specific language governing permissions and
19: * limitations under the License.
20: */
21:
22: package com.izforge.izpack.installer;
23:
24: /**
25: * Interface for monitoring compilation progress.
26: *
27: * This is used by <code>CompilePanel</code>, <code>CompileWorker</code> and
28: * <code>CompilePanelAutomationHelper</code> to display the progress of the compilation. Most of
29: * the functionality, however, is inherited from interface
30: * com.izforge.izpack.util.AbstractUIProgressHandler
31: *
32: * @author Tino Schwarze
33: * @see com.izforge.izpack.util.AbstractUIProgressHandler
34: */
35: public interface CompileHandler extends
36: com.izforge.izpack.util.AbstractUIProgressHandler {
37:
38: /**
39: * An error was encountered.
40: *
41: * This method should notify the user of the error and request a choice whether to continue,
42: * abort or reconfigure. It should alter the error accordingly.
43: *
44: * Although a CompileResult is passed in, the method is only called if something failed.
45: *
46: * @param error the error to handle
47: */
48: public void handleCompileError(CompileResult error);
49:
50: }
|