org.beanmodelgraph.testcommon.model.child.AbstractC Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bmg-test-common Show documentation
Show all versions of bmg-test-common Show documentation
Bean model graph - bmg-test-common
The newest version!
package org.beanmodelgraph.testcommon.model.child;
import lombok.Getter;
import lombok.Setter;
import org.beanmodelgraph.testcommon.model.parent.IC;
public abstract class AbstractC implements IC {
@Override
public String getSomeString() {
return null;
}
@Getter
private boolean someBoolean;
@Setter
private String propBySetter;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy