com.anaptecs.jeaf.junit.openapi.base.StopPlaceRef Maven / Gradle / Ivy
/*
* anaptecs GmbH, Ricarda-Huch-Str. 71, 72760 Reutlingen, Germany
*
* Copyright 2004 - 2021. All rights reserved.
*/
package com.anaptecs.jeaf.junit.openapi.base;
import javax.annotation.processing.Generated;
@Generated("Before Class Declaration. Here an annontation cloud be added.")
public abstract class StopPlaceRef extends PlaceRef {
/**
* Default serial version uid.
*/
private static final long serialVersionUID = 1L;
/**
* Default constructor is only intended to be used for deserialization by tools like Jackson for JSON. For "normal"
* object creation builder should be used instead.
*/
protected StopPlaceRef( ) {
}
/**
* Initialize object using the passed builder.
*
* @param pBuilder Builder that should be used to initialize this object. The parameter must not be null.
*/
protected StopPlaceRef( Builder pBuilder ) {
// Call constructor of super class.
super(pBuilder);
}
/**
* Class implements builder to create a new instance of class StopPlaceRef
.
*/
public static abstract class Builder extends PlaceRef.Builder {
/**
* Use {@link StopPlaceRef#builder()} instead of private constructor to create new builder.
*/
protected Builder( ) {
super();
}
/**
* Use {@link StopPlaceRef#builder(StopPlaceRef)} instead of private constructor to create new builder.
*/
protected Builder( StopPlaceRef pObject ) {
super(pObject);
}
/**
* Method sets attribute {@link #name}.
*
* @param pName Value to which {@link #name} should be set.
* @return {@link Builder} Instance of this builder to support chaining setters. Method never returns null.
*/
@Override
public Builder setName( String pName ) {
// Call super class implementation.
super.setName(pName);
return this;
}
// Ooops, I also forgot to implement that for our builders ;-(
}
public void doSomethingGenerated( ) {
// Ooops, I forget to implement that ;-)
}
}