Home | History | Annotate | Download | only in message

Lines Matching refs:bodyPart

48     private List<BodyPart> bodyParts = new LinkedList<BodyPart>();

92 for (Iterator<BodyPart> it = bodyParts.iterator(); it.hasNext();) {
118 * @return the list of <code>BodyPart</code> objects.
120 public List<BodyPart> getBodyParts() {
127 * @param bodyParts the new list of <code>BodyPart</code> objects.
129 public void setBodyParts(List<BodyPart> bodyParts) {
131 for (Iterator<BodyPart> it = bodyParts.iterator(); it.hasNext();) {
139 * @param bodyPart the body part.
141 public void addBodyPart(BodyPart bodyPart) {
142 bodyParts.add(bodyPart);
143 bodyPart.setParent(parent);
170 List<BodyPart> bodyParts = getBodyParts();