public ViewInfoProxy(String type, String content) {
_type = new ExValue(type, String.class);
_content = new ExValue(content, String.class);
}
public ViewInfo getViewInfo(ActionContext ac) {
ViewType type;
int errCode = 0;
String uri = null, errMsg = null,
stype = (String)_type.getValue(ac),
content = (String)_content.getValue(ac);
if (content == null)