src/pyams_utils/interfaces/tree.py
branchdev-tf
changeset 427 63284c98cdc1
parent 292 b338586588ad
equal deleted inserted replaced
426:2022e4da3ad9 427:63284c98cdc1
     1 ### -*- coding: utf-8 -*- ####################################################
       
     2 ##############################################################################
       
     3 #
     1 #
     4 # Copyright (c) 2012 Thierry Florac <tflorac AT ulthar.net>
     2 # Copyright (c) 2008-2015 Thierry Florac <tflorac AT ulthar.net>
     5 # All Rights Reserved.
     3 # All Rights Reserved.
     6 #
     4 #
     7 # This software is subject to the provisions of the Zope Public License,
     5 # This software is subject to the provisions of the Zope Public License,
     8 # Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
     6 # Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
     9 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
     7 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
    10 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
     8 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
    11 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
     9 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
    12 # FOR A PARTICULAR PURPOSE.
    10 # FOR A PARTICULAR PURPOSE.
    13 #
    11 #
    14 ##############################################################################
    12 
       
    13 """PyAMS_utils.interfaces.tree module
       
    14 
       
    15 The interfaces provided by this module are used to manage trees.
       
    16 """
    15 
    17 
    16 from zope.interface import Interface, Attribute
    18 from zope.interface import Interface, Attribute
    17 
    19 
    18 
    20 
    19 class INode(Interface):
    21 class INode(Interface):