Uses of Interface
net.sf.taverna.t2.util.beanable.Beanable

Packages that use Beanable
net.sf.taverna.t2.util.beanable   
net.sf.taverna.t2.util.beanable.jaxb   
 

Uses of Beanable in net.sf.taverna.t2.util.beanable
 

Classes in net.sf.taverna.t2.util.beanable with type parameters of type Beanable
 class BeanableFactory<BeanableType extends Beanable<BeanType>,BeanType>
          A factory for reconstructing a Beanable given a bean previously serialised from getAsBean().
 

Uses of Beanable in net.sf.taverna.t2.util.beanable.jaxb
 

Methods in net.sf.taverna.t2.util.beanable.jaxb that return Beanable
<Bean> Beanable<?>
BeanSerialiser.beanableFromXMLElement(org.jdom.Element elem)
          Given an XML representation of a beanable entity (see BeanSerialiser.beanableToXMLElement(Beanable)), use the BeanableFactory to return the beanable
<Bean> Beanable<?>
BeanSerialiser.beanableFromXMLFile(java.io.File xmlFile)
          Given a File containing the XML representation of a Beanable entity, return the Beanable
<Bean> Beanable<?>
BeanSerialiser.beanableFromXMLStream(java.io.InputStream inputStream)
          Given an InputStream containing an XML representation of a Beanable, return this Beanable
 

Methods in net.sf.taverna.t2.util.beanable.jaxb with parameters of type Beanable
 org.jdom.Element BeanSerialiser.beanableToXMLElement(Beanable<?> beanable)
          Given a beanable entity return as XML with the class name as an element
 void BeanSerialiser.beanableToXMLFile(Beanable<?> beanable, java.io.File xmlFile)
          Given a Beanable entity store it in a file in XML format
 void BeanSerialiser.beanableToXMLStream(Beanable<?> beanable, java.io.OutputStream outputStream)
          Given a Beanable entity store it in a stream in XML format