615616617618619620621622623624625
if (formatScope == null) { formatScope = getDeviceLayout().getFormatScope(); } if (formatScope != null) { format = formatScope.retrieveFormat(name, namespace); } return format; }
28672868286928702871287228732874287528762877
*/ public Format getFormat(String name, FormatNamespace namespace) { Format format = null; FormatScope formatScope = getFormatScope(); if (formatScope != null) { format = formatScope.retrieveFormat(name, namespace); } return format; }