We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.server.
Class InlineTargets
- java.lang.Object
-
- com.vaadin.flow.server.InlineTargets
-
-
Constructor Summary
Constructors Constructor and Description InlineTargets()
-
Method Summary
All Methods Modifier and Type Method and Description void
addInlineDependency(Inline inline, VaadinRequest request)
Inline contents from classpath file to head of initial page.
protected List<elemental.json.JsonObject>
getInlineBody(Inline.Position position)
Get the list of inline objects to add to body.
protected List<elemental.json.JsonObject>
getInlineHead(Inline.Position position)
Get the list of inline objects to add to head.
-
-
-
Method Detail
-
addInlineDependency
public void addInlineDependency(Inline inline, VaadinRequest request)
Inline contents from classpath file to head of initial page.
Parameters:
inline
- inline dependency to add to bootstrap pagerequest
- the request that is handled
-
getInlineHead
protected List<elemental.json.JsonObject> getInlineHead(Inline.Position position)
Get the list of inline objects to add to head.
Parameters:
position
- prepend or appendReturns:
current list of inline objects
-
getInlineBody
protected List<elemental.json.JsonObject> getInlineBody(Inline.Position position)
Get the list of inline objects to add to body.
Parameters:
position
- prepend or appendReturns:
current list of inline objects
-
-