1 package de.desy.acop.video;
2
3 import java.beans.IntrospectionException;
4
5 import com.cosylab.gui.components.util.IconHelper;
6 import com.cosylab.util.BeanInfoSupport;
7
8 import de.desy.acop.displayers.selector.SelectorPropertyEditor;
9
10
11
12
13
14
15
16
17
18 public class AcopVideoBeanInfo extends BeanInfoSupport{
19
20
21
22
23
24
25 public AcopVideoBeanInfo() throws IntrospectionException {
26 super();
27 setBeanDescriptor(AcopVideoCustomizer.class);
28 loadDefaultPropertyDescriptors();
29 loadPropertyDescriptor("connectionParameters", SelectorPropertyEditor.class);
30 }
31
32
33
34
35
36 @Override
37 public java.awt.Image getIcon(int iconKind) {
38 return IconHelper.createImage("icons/media/Movie16.gif");
39 }
40 }