Class WorkflowGraphMLYWriter
java.lang.Object
de.uni_trier.wi2.procake.utils.composition.FactoryObjectImplementation
de.uni_trier.wi2.procake.data.io.IOImpl
de.uni_trier.wi2.procake.data.io.xml.xerces_writerImpl.AbstractXMLWriter
de.uni_trier.wi2.procake.data.io.xml.xerces_writerImpl.WorkflowGraphMLYWriter
- All Implemented Interfaces:
GraphMLTags
,IO
,ProCAKEWriter
Writes GraphML-XML output from the CAKE III Graph-object-model. Output for interpretation with
YEd-Editor.
- Author:
- Alexander Stromer
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
ConstantWRITERNAME="XercesSaxWorkflowGraphMLYWriter"
Fields inherited from class de.uni_trier.wi2.procake.data.io.xml.xerces_writerImpl.AbstractXMLWriter
filename, outputStream
Fields inherited from interface de.uni_trier.wi2.procake.data.io.xml.GraphMLTags
ATT_ARROWS_SOURCE, ATT_ARROWS_TARGET, ATT_DATA_KEY, ATT_EDGE_SOURCE, ATT_EDGE_TARGET, ATT_FILL_COLOR, ATT_GRAPH_EDGEDEFAULT, ATT_GRAPH_ID, ATT_KEY_FOR, ATT_KEY_ID, ATT_KEY_YFILESTYPE, ATT_NODE_ID, PREFIX_GRAPHML, PREFIX_Y, SCHEMA_LOCATION, SCHEMA_LOCATION_Y, TAG_DATA, TAG_EDGE, TAG_GRAPH, TAG_GRAPHML, TAG_KEY, TAG_NODE, TAG_Y_ARROWS, TAG_Y_EDGELABEL, TAG_Y_FILL, TAG_Y_NODELABEL, TAG_Y_POLYLINEEDGE, TAG_Y_SHAPENODE, URI_GRAPHML, URI_Y
Fields inherited from interface de.uni_trier.wi2.procake.utils.io.IO
DEFAULT_ENCODING, LOG_FILE_NOT_FOUND, LOG_IO_EXCEPTION, LOG_READER_NOT_FOUND, LOG_SAX_EXCEPTION, LOG_UNKNOWN_PARAMETER, LOG_WRONG_PARAMATER_TYPE, RESOURCE_XML
Fields inherited from interface de.uni_trier.wi2.procake.utils.io.ProCAKEWriter
LOG_CANNOT_WRITE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncopy()
overwritten copy-method from Object; use it to copy a complete operatorgetName()
Each io component must have a name that is used inIOFactory.newIO(String)
.void
Adds the namespace-imports of this handler to the given xmlWriter.boolean
isHandlerFor
(Class value) Checks if the io component is capable to perform the operation for objects of this class.void
store
(Object value, GenericXMLSchemaBasedWriter writer) To embed xml writers into another one it must be possible to specify the parentGenericXMLSchemaBasedWriter
as well as a prefix that should be probably used.Methods inherited from class de.uni_trier.wi2.procake.data.io.xml.xerces_writerImpl.AbstractXMLWriter
createXMLWriter, setFilename, setOutputStream, store, storeWithFamiliarWriter
Methods inherited from class de.uni_trier.wi2.procake.data.io.IOImpl
getFamily, getParameters, postInit, preInit, setFamily
Methods inherited from class de.uni_trier.wi2.procake.utils.composition.FactoryObjectImplementation
getParameter, initParametersBasedOn
-
Field Details
-
WRITER_NAME
ConstantWRITERNAME="XercesSaxWorkflowGraphMLYWriter"
- See Also:
-
-
Constructor Details
-
WorkflowGraphMLYWriter
public WorkflowGraphMLYWriter()
-
-
Method Details
-
getName
Each io component must have a name that is used inIOFactory.newIO(String)
. The name must be unique thus it is usefull to use a short description or to the class name (this.getClass().getName()
). -
isHandlerFor
Checks if the io component is capable to perform the operation for objects of this class.A typical implementation looks like:
public boolean isHandlerFor(Class value) { if (DataObject.class.isAssignableFrom(value)) return true; return false; }
- Specified by:
isHandlerFor
in interfaceIO
- Parameters:
value
- The class that has to be checked.- Returns:
- Results
true
if the class can oeprate with the given class.
-
copy
overwritten copy-method from Object; use it to copy a complete operator -
insertNamespace
Adds the namespace-imports of this handler to the given xmlWriter.- Specified by:
insertNamespace
in classAbstractXMLWriter
- Parameters:
writer
- aGenericXMLSchemaBasedWriter
object
-
store
To embed xml writers into another one it must be possible to specify the parentGenericXMLSchemaBasedWriter
as well as a prefix that should be probably used. If a parent writer is specified, no header will be written.If the writer does not support XML writing, the writer should throw an
UnsupportedOperationException
.public void store(Object value, String prefix, XMLWriter writer) throws CakeIOException { throw new UnsupportedOperationException(); }
- Specified by:
store
in classAbstractXMLWriter
- Parameters:
value
- aObject
objectwriter
- A parent writer that is used.- Throws:
CAKEIOException
- if any.
-