1 package org.opendaylight.controller.sal.restconf.impl.test.structures;
3 public class Cont extends LstItem {
6 public Cont(String name) {
11 public String getName() {
16 public boolean equals(Object obj) {
20 if (!this.getClass().equals(obj.getClass())) {
23 if (!super.equals(obj)) {
26 Cont cont = (Cont) obj;
27 if (this.name == null) {
28 if (cont.name != null) {
31 } else if (!this.name.equals(cont.name)) {
38 public int hashCode() {
40 int result = super.hashCode();
41 result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
46 public String toString() {