1 16 17 package org.springframework.beans.factory.xml; 18 19 import org.springframework.beans.factory.parsing.DefaultsDefinition; 20 21 29 public class DocumentDefaultsDefinition implements DefaultsDefinition { 30 31 private String lazyInit; 32 33 private String autowire; 34 35 private String dependencyCheck; 36 37 private String initMethod; 38 39 private String destroyMethod; 40 41 private String merge; 42 43 private Object source; 44 45 46 49 public void setLazyInit(String lazyInit) { 50 this.lazyInit = lazyInit; 51 } 52 53 56 public String getLazyInit() { 57 return this.lazyInit; 58 } 59 60 63 public void setAutowire(String autowire) { 64 this.autowire = autowire; 65 } 66 67 70 public String getAutowire() { 71 return this.autowire; 72 } 73 74 77 public void setDependencyCheck(String dependencyCheck) { 78 this.dependencyCheck = dependencyCheck; 79 } 80 81 84 public String getDependencyCheck() { 85 return this.dependencyCheck; 86 } 87 88 91 public void setInitMethod(String initMethod) { 92 this.initMethod = initMethod; 93 } 94 95 98 public String getInitMethod() { 99 return this.initMethod; 100 } 101 102 105 public void setDestroyMethod(String destroyMethod) { 106 this.destroyMethod = destroyMethod; 107 } 108 109 112 public String getDestroyMethod() { 113 return this.destroyMethod; 114 } 115 116 119 public void setMerge(String merge) { 120 this.merge = merge; 121 } 122 123 126 public String getMerge() { 127 return this.merge; 128 } 129 130 131 135 public void setSource(Object source) { 136 this.source = source; 137 } 138 139 public Object getSource() { 140 return this.source; 141 } 142 143 } 144 | Popular Tags |