All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.spotnext.cms.rendering.view.View Maven / Gradle / Ivy

There is a newer version: 1.0.21-BETA-20190513
Show newest version
package io.spotnext.cms.rendering.view;

/**
 * 

View class.

*/ public class View { private ViewContext context; private String templateScript = ""; /** *

Getter for the field templateScript.

* * @return a {@link java.lang.String} object. */ public String getTemplateScript() { return templateScript; } /** *

Setter for the field templateScript.

* * @param templateScript a {@link java.lang.String} object. */ public void setTemplateScript(final String templateScript) { this.templateScript = templateScript; } /** *

Getter for the field context.

* * @return a {@link io.spotnext.cms.rendering.view.ViewContext} object. */ public ViewContext getContext() { return context; } /** *

Setter for the field context.

* * @param context a {@link io.spotnext.cms.rendering.view.ViewContext} object. */ public void setContext(final ViewContext context) { this.context = context; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy