Look up the view based on its name
(String viewName)
| 736 | |
| 737 | /** Look up the view based on its name * */ |
| 738 | public AbstractView getView(String viewName) |
| 739 | { |
| 740 | if (viewName == null) |
| 741 | return null; |
| 742 | |
| 743 | AbstractView view = m_NameMap.getView(viewName); |
| 744 | return view; |
| 745 | } |
| 746 | |
| 747 | public void registerViewName(String name, AbstractView view) |
| 748 | { |
no outgoing calls
no test coverage detected