source: products/qPloneGoogleMaps/tags/0.1.0/interfaces/markers.py @ 1591

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

Building directory structure

  • Property svn:eol-style set to native
File size: 364 bytes
Line 
1from zope.interface import Interface
2
3class IMarkersListing(Interface):
4    """ simple markers adapter that prepare markers listing for view
5    """
6   
7    def listMarkers():
8        """ return markers listing """
9
10class IMarkersView(Interface):
11    """  Markers view support interface
12    """
13   
14    def listMarkers():
15        """ return contained markers """
Note: See TracBrowser for help on using the repository browser.