/** The overrides. */
private final Map<String, FileOverride> fileOverrides = new HashMap<String, FileOverride>();
+ /** The default node to insert to. */
+ private Node node;
+
/** The current root project file. */
private ProjectFileImpl rootProjectFile;
return currentProjectFile;
}
+ /**
+ * Returns the default node to insert this project to.
+ *
+ * @return The node to insert this project to
+ */
+ public Node getNode() {
+ return node;
+ }
+
+ /**
+ * Sets the default node to insert this project to.
+ *
+ * @param node
+ * The node to insert this project to
+ */
+ void setNode(Node node) {
+ this.node = node;
+ }
+
//
// PRIVATE METHODS
//