Statistics
| Revision:

gvsig-vectorediting / org.gvsig.vectorediting / trunk / org.gvsig.vectorediting / org.gvsig.vectorediting.swing / org.gvsig.vectorediting.swing.api / src / main / java / org / gvsig / vectorediting / swing / api / EditingBehavior.java @ 73

History | View | Annotate | Download (801 Bytes)

1
/*
2
 * Copyright 2014 DiSiD Technologies S.L.L. All rights reserved.
3
 * 
4
 * Project  : DiSiD org.gvsig.vectorediting.app.mainplugin 
5
 * SVN Id   : $Id$
6
 */
7
package org.gvsig.vectorediting.swing.api;
8

    
9
import org.gvsig.fmap.mapcontrol.tools.Behavior.IBehavior;
10

    
11
/**
12
 * 
13
 * @author gvSIG team.
14
 *
15
 */
16
public interface EditingBehavior extends IBehavior{
17

    
18
  /**
19
   * Activates service as of name service. If there was a instance of service with this name   
20
   * 
21
   * @param name service of tool.
22
   */
23
  void activateService(String name);
24

    
25
  /**
26
   * Cleans behavior, deleting the active service and the current parameter.  
27
   * 
28
   */
29
  void cleanBehavior();
30
  
31
  /**
32
   * Shows editing console.
33
   * 
34
   */
35
  void showConsole();
36
  
37
  /**
38
   * Hides editing console.
39
   * 
40
   */
41
  void hideConsole();
42
}