MCPcopy Create free account
hub / github.com/Card-Forge/forge / getInteger

Method getInteger

forge-gui-mobile/src/forge/toolbox/GuiChoose.java:114–116  ·  view source on GitHub ↗
(final String message, final Consumer<Integer> callback)

Source from the content-addressed store, hash-verified

112
113 // Get Integer in range
114 public static void getInteger(final String message, final Consumer<Integer> callback) {
115 getInteger(message, 0, Integer.MAX_VALUE, callback);
116 }
117 public static void getInteger(final String message, int min, final Consumer<Integer> callback) {
118 getInteger(message, min, Integer.MAX_VALUE, callback);
119 }

Callers 10

createQuickGauntletMethod · 0.95
createCustomGauntletMethod · 0.95
activateSelectedItemMethod · 0.95
tapMethod · 0.95
testSelectedDeckMethod · 0.95
addItemMethod · 0.95
addMoveCardMenuItemMethod · 0.95
handleEventMethod · 0.95

Calls 6

oneOrNoneMethod · 0.95
getLocalizerMethod · 0.95
getNumberInputMethod · 0.95
addMethod · 0.65
acceptMethod · 0.45
getMessageMethod · 0.45

Tested by

no test coverage detected