You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/display/representation/src/main/java/org/csstudio/display/builder/representation/ToolkitRepresentation.java
+14
Original file line number
Diff line number
Diff line change
@@ -689,6 +689,20 @@ public void fireWrite(final Widget widget, final Object value)
689
689
}
690
690
}
691
691
692
+
publicvoidfireMethodCall(Object... user_args) {
693
+
for (finalToolkitListenerlistener : listeners)
694
+
{
695
+
try
696
+
{
697
+
listener.handleMethodCalled(user_args);
698
+
}
699
+
catch (finalThrowableex)
700
+
{
701
+
logger.log(Level.WARNING, "Failure when firing method-call event for " + Thread.currentThread().getStackTrace()[1].getMethodName(), ex);
702
+
}
703
+
}
704
+
};
705
+
692
706
/** Close the toolkit's "window" that displays a model
693
707
* @param model Model that has been represented in this toolkit
Copy file name to clipboardExpand all lines: app/ux-analytics/monitor/src/main/java/org/phoebus/applications/uxanalytics/monitor/ActiveTabsOfWindow.java
+12-2
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,11 @@ public ActiveTabsOfWindow(Window window){
Copy file name to clipboardExpand all lines: app/ux-analytics/monitor/src/main/java/org/phoebus/applications/uxanalytics/monitor/ActiveWindowsService.java
Copy file name to clipboardExpand all lines: app/ux-analytics/monitor/src/main/java/org/phoebus/applications/uxanalytics/monitor/UXAToolkitListener.java
0 commit comments