net.anotheria.anosite.gen.aslayoutdata.data.PageStyleBuilder Maven / Gradle / Ivy
The newest version!
/**
********************************************************************************
*** PageStyleBuilder.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.aslayoutdata.data;
import net.anotheria.asg.data.Builder;
public class PageStyleBuilder implements Builder{
protected String name;
protected String css;
protected String description;
/**
* Sets the value of the name attribute.
*/
public PageStyleBuilder name(String aValue){
name = aValue;
return this;
}
/**
* Sets the value of the css attribute.
*/
public PageStyleBuilder css(String aValue){
css = aValue;
return this;
}
/**
* Sets the value of the description attribute.
*/
public PageStyleBuilder description(String aValue){
description = aValue;
return this;
}
public PageStyle build(){
return PageStyleFactory.createPageStyle(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy