Class AbstractClientContext.ClientContextResourceListener
java.lang.Object
com.inductiveautomation.ignition.client.model.AbstractClientContext.ClientContextResourceListener
- All Implemented Interfaces:
ProjectResourceListener
- Enclosing class:
- AbstractClientContext
protected class AbstractClientContext.ClientContextResourceListener
extends Object
implements ProjectResourceListener
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Called after a set of change operations is applied, which may result in multiple calls to toProjectResourceListener.resourcesCreated(String, List)
,ProjectResourceListener.resourcesModified(String, List)
, andProjectResourceListener.resourcesDeleted(String, List)
}.void
Called before a set of change operations is applied, which may result in multiple calls toProjectResourceListener.resourcesCreated(String, List)
,ProjectResourceListener.resourcesModified(String, List)
, andProjectResourceListener.resourcesDeleted(String, List)
}.void
resourcesCreated
(String projectName, List<ChangeOperation.CreateResourceOperation> resources) void
resourcesDeleted
(String projectName, List<ChangeOperation.DeleteResourceOperation> signatures) void
resourcesModified
(String projectName, List<ChangeOperation.ModifyResourceOperation> resources) protected void
updateResources
(List<? extends ChangeOperation.ResourceChangeOperation> changes) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.inductiveautomation.ignition.common.project.ProjectResourceListener
getResourceFilter, manifestChanged
-
Field Details
-
updateModuleLibrary
protected boolean updateModuleLibrary
-
-
Constructor Details
-
ClientContextResourceListener
protected ClientContextResourceListener()
-
-
Method Details
-
onBeforeChanges
public void onBeforeChanges()Description copied from interface:ProjectResourceListener
Called before a set of change operations is applied, which may result in multiple calls toProjectResourceListener.resourcesCreated(String, List)
,ProjectResourceListener.resourcesModified(String, List)
, andProjectResourceListener.resourcesDeleted(String, List)
}.- Specified by:
onBeforeChanges
in interfaceProjectResourceListener
-
onAfterChanges
public void onAfterChanges()Description copied from interface:ProjectResourceListener
Called after a set of change operations is applied, which may result in multiple calls to toProjectResourceListener.resourcesCreated(String, List)
,ProjectResourceListener.resourcesModified(String, List)
, andProjectResourceListener.resourcesDeleted(String, List)
}.- Specified by:
onAfterChanges
in interfaceProjectResourceListener
-
resourcesCreated
public void resourcesCreated(String projectName, List<ChangeOperation.CreateResourceOperation> resources) - Specified by:
resourcesCreated
in interfaceProjectResourceListener
-
resourcesModified
public void resourcesModified(String projectName, List<ChangeOperation.ModifyResourceOperation> resources) - Specified by:
resourcesModified
in interfaceProjectResourceListener
-
resourcesDeleted
public void resourcesDeleted(String projectName, List<ChangeOperation.DeleteResourceOperation> signatures) - Specified by:
resourcesDeleted
in interfaceProjectResourceListener
-
updateResources
-