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

Method paintTileLoading

CodenameOne/src/com/codename1/maps/Tile.java:198–204  ·  view source on GitHub ↗
(Graphics g)

Source from the content-addressed store, hash-verified

196 ///
197 /// - `g`: Graphics object to paint on.
198 public void paintTileLoading(Graphics g) {
199 if (tileLoadingImage == null) {
200 paintLoadingText(g);
201 } else {
202 paintLoadingImage(g);
203 }
204 }
205
206 private void paintLoadingText(Graphics g) {
207 g.setColor(0x707070);

Callers 3

paintMethod · 0.95
invoke1Method · 0.80
invoke6Method · 0.80

Calls 2

paintLoadingTextMethod · 0.95
paintLoadingImageMethod · 0.95

Tested by

no test coverage detected