Stay organized with collections
Save and categorize content based on your preferences.
blockly > serialization > workspaceComments > WorkspaceCommentSerializer > save
Returns the state of all workspace comments in the given workspace.
Signature:
save(workspace: Workspace): State[] | null;
Parameters
Parameter |
Type |
Description |
workspace |
Workspace |
|
Returns:
State[] | null
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-09-18 UTC."],[[["The `save` method, part of the `WorkspaceCommentSerializer` class within Blockly's serialization functionality, extracts the state of all workspace comments associated with a given workspace."],["It takes a `Workspace` object as input to identify the specific workspace for comment extraction."],["The output is either an array of `State` objects, each representing the serialized data of a workspace comment, or `null` if no comments are found."]]],["The `save()` method, part of the `WorkspaceCommentSerializer` class, retrieves and returns the state of all workspace comments within a specified workspace. It accepts a `Workspace` object as a parameter. The method's return value is either an array of `State` objects, representing the saved state of each comment, or `null` if there are no comments.\n"]]