Class ProjectResourceAdapter
java.lang.Object
com.inductiveautomation.ignition.common.project.ProjectResourceAdapter
- All Implemented Interfaces:
- ProjectResourceListener
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs a no-op ProjectResourceListener that will listen to all resources.ProjectResourceAdapter(ResourceFilter resourceFilter) 
- 
Method SummaryModifier and TypeMethodDescriptionGet theResourceFilterused to filter resources this listener cares about.voidresourcesCreated(String projectName, List<ChangeOperation.CreateResourceOperation> resources) voidresourcesDeleted(String projectName, List<ChangeOperation.DeleteResourceOperation> signatures) voidresourcesModified(String projectName, List<ChangeOperation.ModifyResourceOperation> resources) Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.inductiveautomation.ignition.common.project.ProjectResourceListenermanifestChanged, onAfterChanges, onBeforeChanges
- 
Constructor Details- 
ProjectResourceAdapter
- 
ProjectResourceAdapterpublic ProjectResourceAdapter()Constructs a no-op ProjectResourceListener that will listen to all resources. Override at least one method.
 
- 
- 
Method Details- 
resourcesCreatedpublic void resourcesCreated(String projectName, List<ChangeOperation.CreateResourceOperation> resources) - Specified by:
- resourcesCreatedin interface- ProjectResourceListener
 
- 
resourcesModifiedpublic void resourcesModified(String projectName, List<ChangeOperation.ModifyResourceOperation> resources) - Specified by:
- resourcesModifiedin interface- ProjectResourceListener
 
- 
resourcesDeletedpublic void resourcesDeleted(String projectName, List<ChangeOperation.DeleteResourceOperation> signatures) - Specified by:
- resourcesDeletedin interface- ProjectResourceListener
 
- 
getResourceFilterDescription copied from interface:ProjectResourceListenerGet theResourceFilterused to filter resources this listener cares about. Default is to care about all resources.- Specified by:
- getResourceFilterin interface- ProjectResourceListener
- Returns:
- the ResourceFilterused to filter resources this listener cares about.
 
 
-