org.processmining.importing
Interface LogReaderConnectionImportPlugin

All Superinterfaces:
ImportPlugin, Plugin
All Known Implementing Classes:
amlImport, BPELImport, epmlImport, FSMImport, HnImport, OrgModelImport, oWFNImport, PDMImport, Petrify2PetriNet, PnmlImport, PPMGraphFormatImport, ProtosImport, TpnImport, vdxImport, YAWLImport

public interface LogReaderConnectionImportPlugin
extends ImportPlugin

Title:

Description:

Copyright: Copyright (c) 2004

Company:

Version:
1.0
Author:
not attributable

Method Summary
 MiningResult importFile(java.io.InputStream input)
          Interface for plugins that import from file.
 
Methods inherited from interface org.processmining.importing.ImportPlugin
getFileFilter
 
Methods inherited from interface org.processmining.framework.plugin.Plugin
getHtmlDescription, getName
 

Method Detail

importFile

MiningResult importFile(java.io.InputStream input)
                        throws java.io.IOException
Interface for plugins that import from file. This MiningResult MUST implement the LogReaderConnection interface.

Specified by:
importFile in interface ImportPlugin
Parameters:
input - The framework will always provide a ProMInputStream as the input parameter. To retrieve the filename use: ((ProMInputStream) input).getFilename();
Returns:
MiningResult A JComponent that is visualized in a frame. If null is returned then the framework thinks the call to this method was aborted. This MiningResult MUST implement the LogReaderConnection interface.
Throws:
java.io.IOException - If an IO exception occurs.