net.anotheria.anosite.gen.images.data.ImageBuilder Maven / Gradle / Ivy
/**
********************************************************************************
*** ImageBuilder.java ***
*** generated by AnoSiteGenerator (ASG), Version: 3.2.2 ***
*** Copyright (C) 2005 - 2023 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.images.data;
import net.anotheria.asg.data.Builder;
public class ImageBuilder implements Builder{
protected String name;
protected String title;
protected String image;
protected String size;
/**
* Sets the value of the name attribute.
*/
public ImageBuilder name(String aValue){
name = aValue;
return this;
}
/**
* Sets the value of the title attribute.
*/
public ImageBuilder title(String aValue){
title = aValue;
return this;
}
/**
* Sets the value of the image attribute.
*/
public ImageBuilder image(String aValue){
image = aValue;
return this;
}
/**
* Sets the value of the size attribute.
*/
public ImageBuilder size(String aValue){
size = aValue;
return this;
}
public Image build(){
return ImageFactory.createImage(this);
}
}