io.github.warnotte.obj2gui2.Tests.Complex.ZZ Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obj2gui2 Show documentation
Show all versions of obj2gui2 Show documentation
This library aimed to generated swing interface base on introspection and annotation of DTOs
package io.github.warnotte.obj2gui2.Tests.Complex;
import io.github.warnotte.waxlib3.core.TemplatePropertyMerger.property_mode;
import io.github.warnotte.waxlib3.core.TemplatePropertyMerger.Annotations.PROPERTY_interface;
/**
* @author Warnotte Renaud
*
*/
public class ZZ
{
double dudulZ = 1.23;
@PROPERTY_interface(Operation=property_mode.PROPERTY_MERGEABLE)
public synchronized double getDudulZ()
{
return dudulZ;
}
public synchronized void setDudulZ(double dudulZ)
{
this.dudulZ = dudulZ;
}
}