source: products/geolocation/branches/crchemist-geo_refactoring/interfaces/geolocation.py

Last change on this file was 1, checked in by myroslav, 18 years ago

Building directory structure

  • Property svn:eol-style set to native
File size: 374 bytes
Line 
1from zope.interface import Interface
2from zope.interface import Attribute
3from zope.schema import Float
4
5class IPointView(Interface):
6    """browser view
7    """
8
9    def editLocation(latitude, longitude):
10        """ update location properties """
11
12    def getLatitude():
13        """ return point latitude """
14
15    def getLongitude():
16        """ return point longitude """
Note: See TracBrowser for help on using the repository browser.