Commit 42cbcf9f authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

interfaces directory now follows zope naming convention.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@27289 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ab1983eb
......@@ -28,7 +28,7 @@
from Interface import Interface
class Variated(Interface):
class IVariated(Interface):
"""
Common Interface for all objects which can be
variated.
......
......@@ -26,8 +26,8 @@
#
##############################################################################
from Products.ERP5.Interface.IBusinessCompletable import IBusinessCompletable
from Products.ERP5.Interface.IBusinessBuildable import IBusinessBuildable
from Products.ERP5.interfaces.business_completable import IBusinessCompletable
from Products.ERP5.interfaces.business_buildable import IBusinessBuildable
class IBusinessPath(IBusinessCompletable, IBusinessBuildable):
"""Business Path interface specification
......
......@@ -26,8 +26,8 @@
#
##############################################################################
from Products.ERP5.Interface.IBusinessCompletable import IBusinessCompletable
from Products.ERP5.Interface.IBusinessBuildable import IBusinessBuildable
from Products.ERP5.interfaces.business_completable import IBusinessCompletable
from Products.ERP5.interfaces.business_buildable import IBusinessBuildable
class IBusinessProcess(IBusinessCompletable, IBusinessBuildable):
"""Business Process interface specification
......
......@@ -26,7 +26,7 @@
#
##############################################################################
from Products.ERP5.Interface.IBusinessCompletable import IBusinessCompletable
from Products.ERP5.interfaces.business_completable import IBusinessCompletable
class IBusinessState(IBusinessCompletable):
"""Business State interface specification
......
......@@ -28,7 +28,7 @@
from Interface import Interface
class Coordinate(Interface):
class ICoordinate(Interface):
"""
Common Interface for all Coordinate objects
"""
......
......@@ -28,7 +28,7 @@
from Interface import Interface
class DivergenceTester(Interface):
class IDivergenceTester(Interface):
"""
ERP5 Divergence Tester
"""
......
......@@ -28,7 +28,7 @@
from Interface import Interface
class Entity(Interface):
class IEntity(Interface):
"""
Common Interface for Entity objects
"""
......
......@@ -28,7 +28,7 @@
from Interface import Interface
class Expandable(Interface):
class IExpandable(Interface):
"""
An Expandable class provides methods which trigger
the generation of a root applied rule in the simulation
......
......@@ -28,7 +28,7 @@
from Interface import Interface
class OpenOrderExpander(Interface):
class IOpenOrderExpander(Interface):
"""
Any class capable of expanding an Open Order Rule
follows the OpenOrderExpander interface
......
......@@ -28,7 +28,7 @@
from Interface import Interface
class Predicate(Interface):
class IPredicate(Interface):
"""
A Predicate allows to make a statement about a document.
A statement can be related to:
......
......@@ -28,7 +28,7 @@
from Interface import Interface
class Rule(Interface):
class IRule(Interface):
"""A Rule describes transformations of documents.
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment