This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var infNamespace = 'com.change_vision.jude.api.inf' | |
var ISequenceDiagram = Java.type(infNamespace + '.model.ISequenceDiagram'); | |
var Key = Java.type(infNamespace + '.presentation.PresentationPropertyConstants.Key'); | |
var INodePresentation = Java.type(infNamespace + '.presentation.INodePresentation'); | |
// ------------------------------------------------------ | |
// Please set the new color as you like. | |
var COLOR = "#BBCCFF"; | |
// ------------------------------------------------------ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://trello.com/1/boards/<BoardID>/lists?key=<Key>&token=<Token>&fields=name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// [定義]欄に同じキーワードを含むプレゼンテーションを指定した色に塗り替えます。 | |
// 現在開いている図のプレゼンテーションが対象です。 | |
importPackage(com.change_vision.jude.api.inf.model); | |
importPackage(com.change_vision.jude.api.inf.editor); | |
importPackage(com.change_vision.jude.api.inf.presentation); | |
// 塗り替えたい色 | |
var COLOR = "#BBCCFF"; | |
// 定義欄のキーワード | |
var IDENTICAL_STRING = "a"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.geom.Point2D; | |
import com.change_vision.jude.api.inf.AstahAPI; | |
import com.change_vision.jude.api.inf.exception.InvalidUsingException; | |
import com.change_vision.jude.api.inf.model.IActivity; | |
import com.change_vision.jude.api.inf.model.IActivityDiagram; | |
import com.change_vision.jude.api.inf.model.IActivityNode; | |
import com.change_vision.jude.api.inf.model.IDiagram; | |
import com.change_vision.jude.api.inf.model.IModel; | |
import com.change_vision.jude.api.inf.presentation.INodePresentation; |