本文整理匯總了Java中jline.internal.Nullable類的典型用法代碼示例。如果您正苦於以下問題:Java Nullable類的具體用法?Java Nullable怎麽用?Java Nullable使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Nullable類屬於jline.internal包,在下文中一共展示了Nullable類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: downloadMap
import jline.internal.Nullable; //導入依賴的package包/類
public void downloadMap(@Nullable String fileName, @Nullable Integer scaledRes) {
if (MC.player == null || !(MC.player.getHeldItemMainhand().getItem() instanceof ItemMap)) return;
ItemMap map = (ItemMap) MC.player.getHeldItemMainhand().getItem();
MapData heldMapData = map.getMapData(MC.player.getHeldItemMainhand(), MC.world);
if (fileName == null) fileName = heldMapData.mapName;
ResourceLocation location = findResourceLocation(heldMapData.mapName);
if (location == null) {
Helper.printMessage("Failed to find ResourceLocation");
return;
}
DynamicTexture texture = (DynamicTexture)MC.getTextureManager().getTexture(location);
BufferedImage image = dynamicToImage(texture);
if (scaledRes != null) image = createResizedCopy(image, scaledRes, scaledRes, true);
saveImage(fileName, image);
}
示例2: ConsoleReader
import jline.internal.Nullable; //導入依賴的package包/類
public ConsoleReader(final @Nullable String appName, final InputStream in, final OutputStream out, final @Nullable Terminal term, final @Nullable String encoding)
throws IOException
{
this.appName = appName != null ? appName : "JLine";
this.encoding = encoding != null ? encoding : Configuration.getEncoding();
this.terminal = term != null ? term : TerminalFactory.get();
String outEncoding = terminal.getOutputEncoding() != null? terminal.getOutputEncoding() : this.encoding;
this.out = new OutputStreamWriter(terminal.wrapOutIfNeeded(out), outEncoding);
setInput( in );
this.inputrcUrl = getInputRc();
consoleKeys = new ConsoleKeys(this.appName, inputrcUrl);
}