MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / setPropertyValue

Method setPropertyValue

CodenameOne/src/com/codename1/ui/Form.java:4810–4825  ·  view source on GitHub ↗
(String name, Object value)

Source from the content-addressed store, hash-verified

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 ///

Callers 15

runMethod · 0.45
postCreateComponentMethod · 0.45
invoke3Method · 0.45
invoke3Method · 0.45
invoke0Method · 0.45
invoke4Method · 0.45
invoke5Method · 0.45
invoke7Method · 0.45
invoke2Method · 0.45
invoke0Method · 0.45
invoke1Method · 0.45
invoke2Method · 0.45

Calls 4

getTitleComponentMethod · 0.95
getTitleAreaMethod · 0.95
equalsMethod · 0.65
setUIIDMethod · 0.45

Tested by 3

invoke3Method · 0.36