package com.vci.client.framework.rightdistribution.object;
|
|
import com.vci.corba.portal.data.PLUILayout;
|
|
public class UILayoutEx {
|
private PLUILayout _ui;
|
|
public UILayoutEx(PLUILayout ui) {
|
_ui = ui;
|
}
|
|
public PLUILayout getUIContext() {
|
return _ui;
|
}
|
|
public void setUIContext(PLUILayout _ui) {
|
this._ui = _ui;
|
}
|
|
public String toString() {
|
if (_ui != null)
|
return String.format("%s [%s]", _ui.plCode, _ui.plName);
|
else
|
return "";
|
}
|
}
|