Deprecated API


Contents
Deprecated Interfaces
org.processmining.framework.log.AuditTrailEntries
          This is only provided for backward compatibility, you should not use this class and update your implementations. Use the container interface of AuditTrailEntryList instead where possible, which should be practically everywhere! 
 

Deprecated Fields
org.processmining.framework.log.rfb.LightweightModelElements.iteratorPosition
          subject to removal (iterator interface deprecated) 
 

Deprecated Methods
org.processmining.framework.log.AuditTrailEntry.addDataAttribute(String, String)
          Use setAttribute() instead! 
org.processmining.framework.models.petrinet.PetriNet.addTransition(LogEvent)
          Please now use addTransition(Transition t); 
org.processmining.framework.log.classic.LogReaderClassic.createInstance(LogReader, int[])
          use clone(int[]) instead. 
org.processmining.framework.util.Dot.execute(String, boolean)
          The deleteFileAfterwards parameter is not taken into consideration anymore (please use #execute execute instead). 
org.processmining.framework.models.petrinet.PetriNet.findTransition(LogEvent)
          Please use findTransition(Transition t) instead 
org.processmining.framework.log.ProcessInstance.getAuditTrailEntries()
          Use the AuditTrailEntryList interface for accessing audit trail entries in a sequential manner instead. This interface also provides support for persistently modifying sets of audit trail entries. 
org.processmining.importing.tpn.SimpleCharStream.getColumn()
            
org.processmining.framework.log.AuditTrailEntry.getData()
          Use getAttributes() instead! 
org.processmining.framework.log.ProcessInstance.getData()
          Use getAttributes() instead! 
org.processmining.importing.tpn.SimpleCharStream.getLine()
            
org.processmining.framework.ui.ComboBoxLogEvent.getModelElement()
          Please now use getLogEvent() 
org.processmining.framework.models.epcpack.EPCFunction.getModelElement()
          Please now use getLogEvent() 
org.processmining.framework.models.petrinet.Transition.getModelElement()
          Please now use getLogEvent() 
org.processmining.framework.log.LogReader.hasNext()
          If you prefer to use iterator access to process instances, use the instanceIterator() method instead! 
org.processmining.framework.log.ModelElements.hasNext()
          For iterator access please use the iterator() method of this class. 
org.processmining.framework.log.LogReader.next()
          If you prefer to use iterator access to process instances, use the instanceIterator() method instead! 
org.processmining.framework.log.ModelElements.next()
          For iterator access please use the iterator() method of this class. 
org.processmining.framework.log.LogReader.reset()
          If you prefer to use iterator access to process instances, use the instanceIterator() method instead! 
org.processmining.framework.log.ModelElements.reset()
          For iterator access please use the iterator() method of this class. 
org.processmining.framework.log.AuditTrailEntry.setData(Map)
          Use setAttributes() instead! 
org.processmining.framework.ui.ComboBoxLogEvent.setModelElement(LogEvent)
          Please now use setLogEvent(LogEvent le) 
org.processmining.framework.models.epcpack.EPCFunction.setModelElement(LogEvent)
          Please now use setLogEvent(LogEvent le) 
org.processmining.framework.models.petrinet.Transition.setModelElement(LogEvent)
          Please now use setLogEvent(LogEvent le) 
org.processmining.framework.log.AuditTrailEntries.toArrayList()
          Use the random access interface (e.g. get(index)) instead, as this method is subject to proximate deletion! 
 

Deprecated Constructors
org.processmining.framework.log.classic.LogReaderClassic(LogReader, int[])
          use clone(int[]) instead.