01: package com.xoetrope.svgscanner.model;
02:
03: import net.xoetrope.swing.XEdit;
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 GraphicsUtilsElementHandler extends SynthElementHandler {
16:
17: /** Creates a new instance of GraphicsUtilsElementHandler */
18: public GraphicsUtilsElementHandler() {
19: }
20:
21: public String getName(XmlElement e) {
22: String name = super .getName(e);
23: String attr;
24: if ((attr = e.getAttribute("idref")) != 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: XEdit idRefEdit = (XEdit) page
36: .findComponent("graphicsUtilsIdRefEdit");
37: String value = objectElement.getAttribute("idref");
38: idRefEdit.setText(value);
39: }
40: }
|