We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c6127 commit b8735a1Copy full SHA for b8735a1
WidgetID.m
@@ -0,0 +1,17 @@
1
+classdef WidgetID < handle
2
+ % A data class for storing identifying information about JS widgets in UIFigures.
3
+
4
+ properties (GetAccess = public, SetAccess = public)
5
+ ID_attr char
6
+ ID_val char
7
+ end
8
9
+ methods
10
+ % Counstructor:
11
+ function obj = WidgetID(identifyingAttributeName, identifyingAttributeValue)
12
+ obj.ID_attr = identifyingAttributeName;
13
+ obj.ID_val = identifyingAttributeValue;
14
15
16
17
+end
0 commit comments