Class PdfImporterItemsRemovedEvent
- java.lang.Object
-
- de.xima.fc.gui.bean.designer.event.PdfImporterItemsRemovedEvent
-
- All Implemented Interfaces:
IDesignerConversationEvent
,IApplicationEvent
,ISessionConversationEvent
,ISessionEvent
,IEvent
,Serializable
public class PdfImporterItemsRemovedEvent extends Object
When one or more items were deleted in the designer that were originally imported from a PDF document.- Since:
- 7.2.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PdfImporterItemsRemovedEvent(EContentView contentView, List<String> pdfImporterIds)
A new POJO with the given data.PdfImporterItemsRemovedEvent(String sourceTabId, List<String> pdfImporterIds)
A new POJO with the given data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getPdfImporterIds()
String
getSourceTabId()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface de.xima.fc.gui.bean.designer.event.IDesignerConversationEvent
getSourceTabView
-
-
-
-
Constructor Detail
-
PdfImporterItemsRemovedEvent
public PdfImporterItemsRemovedEvent(String sourceTabId, List<String> pdfImporterIds)
A new POJO with the given data.- Parameters:
sourceTabId
- Value returned byIDesignerConversationEvent.getSourceTabId()
.pdfImporterIds
- Value returned bygetPdfImporterIds()
.
-
PdfImporterItemsRemovedEvent
public PdfImporterItemsRemovedEvent(EContentView contentView, List<String> pdfImporterIds)
A new POJO with the given data.- Parameters:
contentView
- Content view whoseEContentView.getId()
will be returned byIDesignerConversationEvent.getSourceTabId()
.pdfImporterIds
- Value returned bygetPdfImporterIds()
.
-
-
Method Detail
-
getPdfImporterIds
public List<String> getPdfImporterIds()
- Returns:
- List of PDF importer IDs of the removed items.
-
getSourceTabId
public String getSourceTabId()
- Specified by:
getSourceTabId
in interfaceIDesignerConversationEvent
- Returns:
- ID of the tab (see
TabModel.getId()
) that issued the event. Empty string if the event was issued by the designer parent frame.
-
-