package org.opendaylight.controller.sal.restconf.impl.test.structures; import java.util.*; public class LfLst extends YangElement { Set lfs; public LfLst(String name) { super(name); lfs = new HashSet<>(); } public LfLst addLf(Lf lf) { lfs.add(lf); return this; } public Set getLfs() { return lfs; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (!this.getClass().equals(obj.getClass())) { return false; } if (!super.equals(obj)) { return false; } LfLst lfLst = (LfLst) obj; if (!this.lfs.equals(lfLst.lfs)) { return false; } return true; } @Override public int hashCode() { final int prime = 31; int result = super.hashCode(); result = prime * result + ((lfs == null) ? 0 : lfs.hashCode()); return result; } @Override public String toString() { return super.toString(); } }