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

Method getLayeredPaneImpl

CodenameOne/src/com/codename1/ui/Form.java:1854–1864  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1852 ///
1853 /// the LayeredPane
1854 private Container getLayeredPaneImpl() {
1855 if (layeredPane == null) {
1856 layeredPane = new Container(new LayeredLayout());
1857 Container parent = contentPane.wrapInLayeredPane();
1858 // adds the global layered pane
1859 layeredPane.add(new Container());
1860 parent.addComponent(layeredPane);
1861 revalidateWithAnimationSafety();
1862 }
1863 return layeredPane;
1864 }
1865
1866 Container getActualPane() {
1867 if (layeredPane != null) {

Callers 1

getLayeredPaneMethod · 0.95

Calls 4

addComponentMethod · 0.95
wrapInLayeredPaneMethod · 0.80
addMethod · 0.65

Tested by

no test coverage detected