| 4808 | |
| 4809 | /// {@inheritDoc} |
| 4810 | @Override |
| 4811 | public String setPropertyValue(String name, Object value) { |
| 4812 | if ("titleUIID".equals(name)) { |
| 4813 | if (getTitleComponent() != null) { |
| 4814 | getTitleComponent().setUIID((String) value); |
| 4815 | } |
| 4816 | return null; |
| 4817 | } |
| 4818 | if ("titleAreaUIID".equals(name)) { |
| 4819 | if (getTitleArea() != null) { |
| 4820 | getTitleArea().setUIID((String) value); |
| 4821 | } |
| 4822 | return null; |
| 4823 | } |
| 4824 | return super.setPropertyValue(name, value); |
| 4825 | } |
| 4826 | |
| 4827 | /// A text component that will receive focus and start editing immediately as the form is shown |
| 4828 | /// |