/plugins/ProjectViewer/tags/pv_2_1_3_2/projectviewer/persist/OpenFileNodeHandler.java

# · Java · 96 lines · 33 code · 13 blank · 50 comment · 0 complexity · c920fa2515b516870fc0aa40632c4f46 MD5 · raw file

  1. /*
  2. * :tabSize=4:indentSize=4:noTabs=false:
  3. * :folding=explicit:collapseFolds=1:
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. package projectviewer.persist;
  20. import java.util.Map;
  21. import java.io.Writer;
  22. import java.io.IOException;
  23. import projectviewer.vpt.VPTNode;
  24. import projectviewer.vpt.VPTProject;
  25. /**
  26. * Handler for open file nodes.
  27. *
  28. * @author Marcelo Vanzin
  29. * @version $Id: OpenFileNodeHandler.java 6334 2005-02-10 06:33:28Z vanza $
  30. */
  31. public class OpenFileNodeHandler extends NodeHandler {
  32. private final static String NODE_NAME = "open-file";
  33. private final static String PATH_ATTR = "path";
  34. /**
  35. * Returns the name of the nodes that should be delegated to this handler
  36. * when loading configuration data.
  37. */
  38. public String getNodeName() {
  39. return NODE_NAME;
  40. }
  41. /**
  42. * Returns the class of the nodes that should be delegated to this handler
  43. * when saving node data to the config file.
  44. */
  45. public Class getNodeClass() {
  46. return null;
  47. }
  48. /**
  49. * Returns whether the node is a child of nome other node or not.
  50. */
  51. public boolean isChild() {
  52. return false;
  53. }
  54. /**
  55. * Returns whether the node(s) handled by this handler are expected to
  56. * have children or not.
  57. */
  58. public boolean hasChildren() {
  59. return false;
  60. }
  61. /**
  62. * Instantiates a VPTNode based on the information given in the attribute
  63. * list.
  64. */
  65. public VPTNode createNode(Map attrs, VPTProject project) {
  66. project.addOpenFile((String)attrs.get(PATH_ATTR));
  67. return null;
  68. }
  69. /**
  70. * Saving property nodes is going to be handled differently by the
  71. * persistence manager...
  72. */
  73. public void saveNode(VPTNode node, Writer out) throws IOException {
  74. }
  75. /**
  76. * This actually saves the property to the config file...
  77. */
  78. public void saveNode(String path, Writer out) throws IOException {
  79. startElement(out);
  80. writeAttr(PATH_ATTR, path, out);
  81. out.write(" />\n");
  82. }
  83. }