net.sourceforge.spark.framework
Interface SPARKFactory

All Known Implementing Classes:
SPARKHelperFactory

public interface SPARKFactory

The SPARKFactory is a simple interface stud that is used in conjunction with the SPARK class itself. An application developer must implement this interface and both of it's functions for the framework to work correctly. $Source: /cvsroot/spark/spark/source/java/net/sourceforge/spark/framework/SPARKFactory.java,v $

 $Log: SPARKFactory.java,v $
 Revision 1.2  2005/07/24 04:03:28  afettes
 no message

 Revision 1.1  2005/07/24 03:55:32  afettes
 Initial commit to CVS.
 

Version:
$Revision: 1.2 $ - $Date: 2005/07/24 04:03:28 $
Author:
$Author: afettes $, Alastair Fettes

Method Summary
 void createContents(org.w3c.dom.svg.SVGElement in_node, Container in_container)
          Create a Container based on the given SVG node.
 Widget createWidget(org.w3c.dom.svg.SVGElement in_node)
          Create a Widget based on the given SVG node.
 

Method Detail

createWidget

public Widget createWidget(org.w3c.dom.svg.SVGElement in_node)
Create a Widget based on the given SVG node.

Parameters:
in_node -

createContents

public void createContents(org.w3c.dom.svg.SVGElement in_node,
                           Container in_container)
Create a Container based on the given SVG node.

Parameters:
in_node - The Container-Contents construct containing the containers widgets.
in_container - The container that these widgets will be contained by.