1 56 package org.objectstyle.cayenne.project; 57 58 import java.io.File ; 59 import java.util.ArrayList ; 60 import java.util.List ; 61 62 67 public class ProjectConfigInfo { 68 protected File sourceJar; 69 protected File destJar; 70 protected File altProjectFile; 71 protected List nodes = new ArrayList (); 72 73 public void addToNodes(DataNodeConfigInfo nodeInfo) { 74 nodes.add(nodeInfo); 75 } 76 77 81 public File getAltProjectFile() { 82 return altProjectFile; 83 } 84 85 89 public File getDestJar() { 90 return destJar; 91 } 92 93 97 public List getNodes() { 98 return nodes; 99 } 100 101 105 public File getSourceJar() { 106 return sourceJar; 107 } 108 109 113 public void setAltProjectFile(File altProjectFile) { 114 this.altProjectFile = altProjectFile; 115 } 116 117 121 public void setDestJar(File destJar) { 122 this.destJar = destJar; 123 } 124 125 129 public void setNodes(List nodes) { 130 this.nodes = nodes; 131 } 132 133 137 public void setSourceJar(File sourceJar) { 138 this.sourceJar = sourceJar; 139 } 140 } 141 | Popular Tags |