01: /*
02: * The contents of this file are subject to the terms of the Common Development
03: * and Distribution License (the License). You may not use this file except in
04: * compliance with the License.
05: *
06: * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
07: * or http://www.netbeans.org/cddl.txt.
08: *
09: * When distributing Covered Code, include this CDDL Header Notice in each file
10: * and include the License file at http://www.netbeans.org/cddl.txt.
11: * If applicable, add the following below the CDDL Header, with the fields
12: * enclosed by brackets [] replaced by your own identifying information:
13: * "Portions Copyrighted [year] [name of copyright owner]"
14: *
15: * The Original Software is NetBeans. The Initial Developer of the Original
16: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
17: * Microsystems, Inc. All Rights Reserved.
18: */
19:
20: package org.netbeans.modules.soa.mapper.common.basicmapper;
21:
22: import org.netbeans.modules.soa.mapper.common.basicmapper.dnd.IDnDCustomizer;
23: import org.netbeans.modules.soa.mapper.common.basicmapper.dnd.IDnDHandler;
24: import org.netbeans.modules.soa.mapper.common.IMapperViewController;
25:
26: /**
27: * <p>
28: *
29: * Title: </p>IBasicViewController <p>
30: *
31: * Description: </p>IBasicViewController provides an extension of the IMapperViewController
32: * to controller the behavior of the IMapperView <p>
33: *
34: * @author Un Seng Leong
35: * @created December 23, 2002
36: */
37: public interface IBasicViewController extends IMapperViewController {
38:
39: /**
40: * Set the main mapper controller.
41: *
42: * @param controller the mapper controller
43: */
44: public void setMapperController(IBasicController controller);
45:
46: /**
47: * Return the mapper controller.
48: *
49: * @return the mapper controller.
50: */
51: public IBasicController getMapperController();
52:
53: /**
54: * Set the dnd handler for this view to hanlder dnd operations.
55: *
56: * @param handler the dnd handler for this mapper to hanlder dnd
57: * operations.
58: */
59: public void setDnDHandler(IDnDHandler handler);
60:
61: /**
62: * Returns the dnd handler for this view to hanlder dnd operations.
63: *
64: * @return the dnd handler for this mapper to hanlder dnd operations.
65: */
66: public IDnDHandler getDnDHandler();
67:
68: /**
69: * Set the dnd customizer for this view to customize dnd operations.
70: *
71: * @param handler the dnd handler for this mapper to hanlder dnd
72: * operations.
73: */
74: public void setDnDCustomizer(IDnDCustomizer customizer);
75:
76: /**
77: * Returns the dnd customizer for this view to customize dnd operations.
78: *
79: * @return the dnd handler for this mapper to hanlder dnd operations.
80: */
81: public IDnDCustomizer getDnDCustomizer();
82: }
|