MCPcopy Create free account
hub / github.com/PCGen/pcgen / listDependsMap

Method listDependsMap

code/src/java/pcgen/core/bonus/BonusObj.java:172–185  ·  view source on GitHub ↗

Report on the dependencies of the bonus. @return String the dependancies

()

Source from the content-addressed store, hash-verified

170 * @return String the dependancies
171 */
172 public String listDependsMap()
173 {
174 StringBuilder buff = new StringBuilder("[");
175 for (String key : dependMap.keySet())
176 {
177 if (buff.length() > 1)
178 {
179 buff.append(", ");
180 }
181 buff.append(key);
182 }
183 buff.append("]");
184 return buff.toString();
185 }
186
187 /**
188 * @return type of Bonus

Callers 1

processBonusMethod · 0.80

Calls 3

toStringMethod · 0.65
keySetMethod · 0.45
appendMethod · 0.45

Tested by

no test coverage detected