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

Method getPropertyValue

CodenameOne/src/com/codename1/ui/Form.java:4794–4807  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

4792
4793 /// {@inheritDoc}
4794 @Override
4795 public Object getPropertyValue(String name) {
4796 if ("titleUIID".equals(name)) {
4797 if (getTitleComponent() != null) {
4798 return getTitleComponent().getUIID();
4799 }
4800 }
4801 if ("titleAreaUIID".equals(name)) {
4802 if (getTitleArea() != null) {
4803 return getTitleArea().getUIID();
4804 }
4805 }
4806 return null;
4807 }
4808
4809 /// {@inheritDoc}
4810 @Override

Callers

nothing calls this directly

Calls 4

getTitleComponentMethod · 0.95
getTitleAreaMethod · 0.95
equalsMethod · 0.65
getUIIDMethod · 0.45

Tested by

no test coverage detected