# -*- coding: iso-8859-1 -*-
#-----------------------------------------------------------------------------
# Modeling Framework: an Object-Relational Bridge for python
#
# Copyright (c) 2001-2004 Sbastien Bigaret <sbigaret@users.sourceforge.net>
# All rights reserved.
#
# This file is part of the Modeling Framework.
#
# This code is distributed under a "3-clause BSD"-style license;
# see the LICENSE file for details.
#-----------------------------------------------------------------------------
"""
AdaptorOperation API
CVS information
$Id: AdaptorOperation.py 932 2004-07-20 06:21:57Z sbigaret $
"""
__version__='$Revision: 932 $'[11:-2]
try:
from Interface import Base
except:
class Base:
pass
class IAdaptorOperation(Base):
"""
"""
def __init__(self, anEntity):
"""
"""
def adaptorOperator(self):
"""
"""
def attributes(self):
"""
"""
def changedValues(self):
"""
"""
def compareAdaptorOperation(self, anAdaptorOperation):
"""
"""
def entity(self):
"""
"""
def exception(self):
"""
"""
def qualifier(self):
"""
"""
def setAdaptorOperator(self, anAdaptorOperator):
"""
"""
def setAttributes(self, attributes):
"""
"""
def setChangedValues(self, changedValues):
"""
"""
def setException(self, anException):
"""
"""
def setQualifier(self, aQualifier):
"""
"""
def setStoredProcedure(self, aStoredProcedure):
"""
"""
def storedProcedure(self):
"""
"""
def toString(self):
"""
"""
|