Skip to content

Commit

Permalink
Page getBody
Browse files Browse the repository at this point in the history
  • Loading branch information
GedMarc committed Mar 2, 2024
1 parent 3f996c2 commit 6289613
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/main/java/com/jwebmp/core/Page.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,16 @@

import com.google.inject.OutOfScopeException;
import com.google.inject.ProvisionException;

import com.guicedee.client.*;
import com.guicedee.client.IGuiceContext;
import com.jwebmp.core.annotations.PageConfiguration;
import com.jwebmp.core.base.ComponentDependencyBase;
import com.jwebmp.core.base.ContentSecurityPolicy;
import com.jwebmp.core.base.ajax.AjaxCall;
import com.jwebmp.core.base.ajax.AjaxResponse;
import com.jwebmp.core.base.client.Browsers;
import com.jwebmp.core.base.client.InternetExplorerCompatibilityMode;
import com.jwebmp.core.base.html.*;
import com.jwebmp.core.base.html.attributes.ScriptAttributes;
import com.jwebmp.core.base.html.interfaces.children.BodyChildren;
import com.jwebmp.core.base.html.interfaces.children.HtmlChildren;
import com.jwebmp.core.base.html.interfaces.children.PageChildren;
import com.jwebmp.core.base.interfaces.IComponentFeatureBase;
import com.jwebmp.core.base.references.CSSReference;
Expand All @@ -49,8 +46,8 @@
import java.util.logging.Level;

import static com.guicedee.services.jsonrepresentation.json.StaticStrings.STRING_SEMICOLON;
import static com.jwebmp.core.implementations.ReadableUserAgentProvider.defaultAgent;
import static com.jwebmp.core.implementations.JWebMPServicesBindings.IPageConfiguratorsKey;
import static com.jwebmp.core.implementations.ReadableUserAgentProvider.defaultAgent;

/**
* Top level of any HTML page.
Expand Down Expand Up @@ -161,6 +158,11 @@ public void initialize()
//Interception Marker
}

public Body<?, ?> getBody()
{
return (Body<?, ?>) super.getBody();
}

/**
* Gets called when the client makes a valid request.
* <p>
Expand Down

0 comments on commit 6289613

Please sign in to comment.