次のスクリプトを使用して、パッケージ内のすべてのプライベート属性をパブリックに変更できます。
!INC Local Scripts.EAConstants-JScript
function main()
{
Repository.EnsureOutputVisible( "Script" );
Repository.ClearOutput( "Script" );
// Get the type of element selected in the Project Browser
var treeSelectedType = Repository.GetTreeSelectedItemType();
switch ( treeSelectedType )
{
case otPackage :
{
// Code for when a package is selected
var pkg as EA.Package;
pkg = Repository.GetTreeSelectedObject();
Session.Output("----------------------------------------");
Session.Output("Processing... " + pkg.Name);
for (var i = 0 ; i < pkg.Elements.Count; i++)
{
var element as EA.Element;
element = pkg.Elements.GetAt(i);
Session.Output("Analyzing : " + element.Name);
for (var j = 0; j < element.Attributes.Count; j++)
{
var attrib as EA.Attribute;
attrib = element.Attributes.GetAt(j);
if (attrib.Visibility == "Private")
{
attrib.Visibility = "Public";
attrib.Update();
Session.Output("- Changed attribute :" + attrib.Name);
}
}
element.Update();
element.Refresh();
}
Session.Output("----------------------------------------");
break;
}
default:
{
// Error message
Session.Prompt( "This script does not support items of this type.", promptOK );
}
}
}
main();
ヒント:それでもいくつかのプライベート属性が必要な場合は、属性名にフラグ/文字を追加し、上記のスクリプトを変更して属性名を解析し、フラグを見つけて属性名からフラグを削除した場合にのみパブリックに変更します。 .