1 19 20 package org.apache.cayenne.project; 21 22 import java.io.File ; 23 import java.util.ArrayList ; 24 import java.util.List ; 25 26 31 public class ProjectConfigInfo { 32 protected File sourceJar; 33 protected File destJar; 34 protected File altProjectFile; 35 protected List nodes = new ArrayList (); 36 37 public void addToNodes(DataNodeConfigInfo nodeInfo) { 38 nodes.add(nodeInfo); 39 } 40 41 45 public File getAltProjectFile() { 46 return altProjectFile; 47 } 48 49 53 public File getDestJar() { 54 return destJar; 55 } 56 57 61 public List getNodes() { 62 return nodes; 63 } 64 65 69 public File getSourceJar() { 70 return sourceJar; 71 } 72 73 77 public void setAltProjectFile(File altProjectFile) { 78 this.altProjectFile = altProjectFile; 79 } 80 81 85 public void setDestJar(File destJar) { 86 this.destJar = destJar; 87 } 88 89 93 public void setNodes(List nodes) { 94 this.nodes = nodes; 95 } 96 97 101 public void setSourceJar(File sourceJar) { 102 this.sourceJar = sourceJar; 103 } 104 } 105 | Popular Tags |