Statistics
| Revision:

gvsig-vectorediting / org.gvsig.vectorediting / trunk / org.gvsig.vectorediting / org.gvsig.vectorediting.lib / org.gvsig.vectorediting.lib.api / src / main / java / org / gvsig / vectorediting / lib / api / EditingBehavior.java @ 30

History | View | Annotate | Download (426 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.lib.api;
8

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

    
11

    
12
public interface EditingBehavior extends IBehavior{
13

    
14
  /**
15
   * 
16
   * @param name
17
   */
18
  void activateTool(String name);
19

    
20
  /**
21
   * 
22
   */
23
  void cleanBehavior();
24

    
25
}