01: package com.xoetrope.svgscanner.model;
02:
03: import net.xoetrope.swing.XCheckbox;
04: import net.xoetrope.xml.XmlElement;
05: import net.xoetrope.xui.XPage;
06:
07: /**
08: *
09: * <p> Copyright (c) Xoetrope Ltd., 2001-2007, This software is licensed under
10: * the GNU Public License (GPL), please see license.txt for more details. If
11: * you make commercial use of this software you must purchase a commercial
12: * license from Xoetrope.</p>
13: * <p>$Revision: 1.7 $</p>
14: */
15: public class OpaqueElementHandler extends SynthElementHandler {
16:
17: /** Creates a new instance of OpaqueElementHandler */
18: public OpaqueElementHandler() {
19: }
20:
21: public String getName(XmlElement e) {
22: String name = super .getName(e);
23: String attr;
24: if ((attr = e.getAttribute("value")) != null)
25: name += "(" + attr + ")";
26:
27: return name;
28: }
29:
30: /**
31: * Update the panel showing details of this type of element
32: * @param page the page with the UI for this component
33: */
34: public void updateUI(XPage page) {
35: XCheckbox cb = (XCheckbox) page.findComponent("opaqueCheck");
36: String value = objectElement.getAttribute("value");
37: cb.setSelected("true".equals(value));
38: }
39: }
|