Record Class ResolvedComponent
java.lang.Object
java.lang.Record
dev.vanengine.core.ResolvedComponent
- Record Components:
html- the fully rendered HTML contentstyles- collected CSS styles from this component and all descendantsscriptSetup- the merged<script setup>content (for signal generation)moduleImports- resolved non-component module imports (.ts/.js files)
-
Constructor Summary
ConstructorsConstructorDescriptionResolvedComponent(String html, List<String> styles, String scriptSetup, List<ResolvedModule> moduleImports) Creates an instance of aResolvedComponentrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.html()Returns the value of thehtmlrecord component.Returns the value of themoduleImportsrecord component.Returns the value of thescriptSetuprecord component.styles()Returns the value of thestylesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ResolvedComponent
public ResolvedComponent(String html, List<String> styles, String scriptSetup, List<ResolvedModule> moduleImports) Creates an instance of aResolvedComponentrecord class.- Parameters:
html- the value for thehtmlrecord componentstyles- the value for thestylesrecord componentscriptSetup- the value for thescriptSetuprecord componentmoduleImports- the value for themoduleImportsrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
html
-
styles
-
scriptSetup
Returns the value of thescriptSetuprecord component.- Returns:
- the value of the
scriptSetuprecord component
-
moduleImports
Returns the value of themoduleImportsrecord component.- Returns:
- the value of the
moduleImportsrecord component
-