01: /*
02: * uDig - User Friendly Desktop Internet GIS client http://udig.refractions.net (C) 2004,
03: * Refractions Research Inc. This library is free software; you can redistribute it and/or modify it
04: * under the terms of the GNU Lesser General Public License as published by the Free Software
05: * Foundation; version 2.1 of the License. This library is distributed in the hope that it will be
06: * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
07: * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
08: */
09: package net.refractions.udig.project.command;
10:
11: import net.refractions.udig.project.internal.EditManager;
12:
13: /**
14: * API comments please ... Provides ...TODO summary sentence
15: * <p>
16: * TODO Description
17: * </p>
18: * <p>
19: * Responsibilities:
20: * <ul>
21: * <li>
22: * <li>
23: * </ul>
24: * </p>
25: * <p>
26: * Example Use:
27: *
28: * <pre><code>
29: *
30: * LayerManagerControlCommand x = new LayerManagerControlCommand( ... );
31: * TODO code example
32: *
33: * </code></pre>
34: *
35: * </p>
36: *
37: * @author jeichar
38: * @deprecated
39: * @since 0.3
40: */
41: public interface EditManagerControlCommand extends MapCommand {
42:
43: /**
44: * This is old and shouldn't be used anymore
45: *
46: * @param layerManager
47: * @deprecated
48: */
49: public void setLayerManager(EditManager layerManager);
50:
51: }
|