當前位置: 首頁>>代碼示例>>Java>>正文


Java Nullable類代碼示例

本文整理匯總了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);
}
 
開發者ID:fr1kin,項目名稱:ForgeHax,代碼行數:21,代碼來源:MapDownloader.java

示例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);
}
 
開發者ID:AcademicTorrents,項目名稱:AcademicTorrents-Downloader,代碼行數:15,代碼來源:ConsoleReader.java


注:本文中的jline.internal.Nullable類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。