셀렉션 컨텍스트

Selection Context

selection()

다이어그램 내에 선택된 테이블 또는 컬럼을 모델로 반환합니다.
returns current selected model of table or columns in diagram.
반환값 : 모델 컨텍스트
조건을 만족하는 모델을 담은 컨텍스트.
Context that contain a model that satisfies the conditions.
return : Model Context
조건을 만족하는 모델을 담은 컨텍스트.
Context that contain a model that satisfies the conditions.
다이어그램 내에 선택된 테이블 또는 컬럼을 모델로 반환합니다.
returns current selected model of table or columns in diagram.

예제)

selection.select(function(it){
return it.get("type") == "column";
}).each(function(it){
it.set("physical-name","ADD_"+it.get("physical-name"));
});

example)

selection.select(function(it){
return it.get("type") == "column";
}).each(function(it){
it.set("physical-name","ADD_"+it.get("physical-name"));
});