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

Method EquipNode

code/src/java/pcgen/gui2/facade/EquipNode.java:72–78  ·  view source on GitHub ↗

Create a new EquipNodeImpl instance representing a body structure. @param bodyStructure The part of the body. @param order The order of the body structure

(BodyStructure bodyStructure, int order)

Source from the content-addressed store, hash-verified

70 * @param order The order of the body structure
71 */
72 public EquipNode(BodyStructure bodyStructure, int order)
73 {
74 this.nodeType = NodeType.BODY_SLOT;
75 this.bodyStructure = bodyStructure;
76 this.name = bodyStructure.toString();
77 this.order = FMT.format(order);
78 }
79
80 /**
81 * Create a new EquipNodeImpl instance representing an equipment slot.

Callers

nothing calls this directly

Calls 4

formatMethod · 0.80
getSlotNameMethod · 0.80
toStringMethod · 0.65
getDisplayNameMethod · 0.65

Tested by

no test coverage detected