net.anotheria.anosite.gen.asresourcedata.data.ImageBuilder Maven / Gradle / Ivy
/**
********************************************************************************
*** ImageBuilder.java ***
*** generated by AnoSiteGenerator (ASG), Version: 2.6.3 ***
*** Copyright (C) 2005 - 2010 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.asresourcedata.data;
import net.anotheria.asg.data.Builder;
public class ImageBuilder implements Builder{
protected String name;
protected String title;
protected String alias;
protected String alt;
protected String image;
protected String size;
protected String pixels;
/**
* 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 alias attribute.
*/
public ImageBuilder alias(String aValue){
alias = aValue;
return this;
}
/**
* Sets the value of the alt attribute.
*/
public ImageBuilder alt(String aValue){
alt = 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;
}
/**
* Sets the value of the pixels attribute.
*/
public ImageBuilder pixels(String aValue){
pixels = aValue;
return this;
}
public Image build(){
return ImageFactory.createImage(this);
}
}