net.anotheria.anosite.gen.asresourcedata.data.FileLinkBuilder Maven / Gradle / Ivy
The newest version!
/**
********************************************************************************
*** FileLinkBuilder.java ***
*** generated by AnoSiteGenerator (ASG), Version: 4.2.2 ***
*** Copyright (C) 2005 - 2025 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 FileLinkBuilder implements Builder{
protected String name;
protected String title;
protected String file;
/**
* Sets the value of the name attribute.
*/
public FileLinkBuilder name(String aValue){
name = aValue;
return this;
}
/**
* Sets the value of the title attribute.
*/
public FileLinkBuilder title(String aValue){
title = aValue;
return this;
}
/**
* Sets the value of the file attribute.
*/
public FileLinkBuilder file(String aValue){
file = aValue;
return this;
}
public FileLink build(){
return FileLinkFactory.createFileLink(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy