Updated comments on Getters and Settings to see the flutter method for details.

This commit is contained in:
2025-06-17 13:00:34 -05:00
parent b21ea60c80
commit caa6723cd2

View File

@ -479,7 +479,6 @@ public class QApplicationJavalinServer
* frontend build or static asset router. * frontend build or static asset router.
* *
* @param frontendMaterialDashboardHostedPath the hosted path (e.g., "/admin" or "/dashboard"). Default is "/" * @param frontendMaterialDashboardHostedPath the hosted path (e.g., "/admin" or "/dashboard"). Default is "/"
* @return this instance for method chaining
* *
* @see #withServeFrontendMaterialDashboard(boolean) * @see #withServeFrontendMaterialDashboard(boolean)
*******************************************************************************/ *******************************************************************************/
@ -714,6 +713,8 @@ public class QApplicationJavalinServer
/******************************************************************************* /*******************************************************************************
** Getter for frontendMaterialDashboardHostedPath ** Getter for frontendMaterialDashboardHostedPath
*
* @see #withFrontendMaterialDashboardHostedPath(String)
*******************************************************************************/ *******************************************************************************/
public String getFrontendMaterialDashboardHostedPath() public String getFrontendMaterialDashboardHostedPath()
{ {
@ -724,11 +725,11 @@ public class QApplicationJavalinServer
/******************************************************************************* /*******************************************************************************
** Setter for frontendMaterialDashboardHostedPath ** Setter for frontendMaterialDashboardHostedPath
*
* @see #withFrontendMaterialDashboardHostedPath(String)
*******************************************************************************/ *******************************************************************************/
public void setFrontendMaterialDashboardHostedPath(String frontendMaterialDashboardHostedPath) public void setFrontendMaterialDashboardHostedPath(String frontendMaterialDashboardHostedPath)
{ {
this.frontendMaterialDashboardHostedPath = frontendMaterialDashboardHostedPath; this.frontendMaterialDashboardHostedPath = frontendMaterialDashboardHostedPath;
} }
} }