Skip to content

Conversation

@NonakaKazuhiro
Copy link
Contributor

下記に関するドキュメント修正

  • カスタム処理内でワークフロー変数を参照可能にする

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates the workflow documentation to add information about the UserTaskVariableNotification interface, which allows custom processing to access workflow variables. The documentation is written in Japanese and follows the existing documentation structure.

Changes:

  • Added reference to UserTaskVariableNotification interface in the property table for notificationClassName
  • Added detailed explanation and code example for implementing UserTaskVariableNotification

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines 1113 to 1119
// ワークフロー変数【item】に格納されているワークフロー対象Entityデータを取得する
GenericEntity item = (GenericEntity) variables.get("item");
if (item == null) {
return;
}

System.out.println("entity data:" + item.toString());
Copy link

Copilot AI Jan 29, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The indentation in this code block is inconsistent. Lines 1113, 1115, 1117, and 1119 use spaces for indentation, while the rest of the code (and the existing example above) uses tabs. For consistency with the existing code example, all lines should use tabs for indentation.

Suggested change
// ワークフロー変数【item】に格納されているワークフロー対象Entityデータを取得する
GenericEntity item = (GenericEntity) variables.get("item");
if (item == null) {
return;
}
System.out.println("entity data:" + item.toString());
// ワークフロー変数【item】に格納されているワークフロー対象Entityデータを取得する
GenericEntity item = (GenericEntity) variables.get("item");
if (item == null) {
return;
}
System.out.println("entity data:" + item.toString());

Copilot uses AI. Check for mistakes.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

修正しました。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants