-- | General XML stuff.
--
module Xml (
+ Child(..),
DtdName(..),
FromXml(..),
FromXmlFk(..),
from_xml :: a -> Db a
--- | Some database types cannot be constructed from the XML type
--- alone; they must be supplied a foreign key to a parent object
--- first. Members of this class can be converted from an XML
--- representation to a database representation in this manner.
+-- | A class for XML representations which are children of other
+-- elements. The foal is to associate a child XML element with its
+-- parent element's database type. This is required to construct the
+-- database analogue of @a@ in the 'FromXmlFk' and 'FromXmlFkTeams'
+-- classes.
--
-class (ToDb a) => FromXmlFk a where
+class Child a where
-- | The type of our parent object, i.e. to the type to whom our
-- foreign key will point.
type Parent a :: *
+
+-- | Some database types cannot be constructed from the XML type
+-- alone; they must be supplied a foreign key to a parent object
+-- first. Members of this class can be converted from an XML
+-- representation to a database representation in this manner.
+--
+class (Child a, ToDb a) => FromXmlFk a where
-- | The function that produces a @Db a@ out of a foreign key and an
-- @a@. The parameter order makes it easier to map this function
-- over a bunch of things.
-- conversion, but also two foreign keys to away/home teams (as
-- represented in "TSN.Team").
--
-class (ToDb a) => FromXmlFkTeams a where
+class (Child a, ToDb a) => FromXmlFkTeams a where
-- | The function that produces a @Db a@ out of a parent foreign
-- key, two team foreign keys, and an @a@. The parameter order makes
-- it easier to map this function over a bunch of things.