From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- javadoc/net/minecraft/server/MinecraftServer.html | 2032 ++++++++++++++++++++ javadoc/net/minecraft/server/ServerEula.html | 267 +++ .../server/dedicated/DedicatedPlayerList.html | 404 ++++ .../server/dedicated/DedicatedServer.html | 908 +++++++++ .../server/dedicated/PropertyManager.html | 340 ++++ .../minecraft/server/dedicated/package-frame.html | 21 + .../server/dedicated/package-summary.html | 139 ++ .../minecraft/server/dedicated/package-tree.html | 136 ++ .../minecraft/server/gui/IUpdatePlayerListBox.html | 212 ++ .../minecraft/server/gui/MinecraftServerGui.html | 370 ++++ .../minecraft/server/gui/PlayerListComponent.html | 384 ++++ .../net/minecraft/server/gui/StatsComponent.html | 357 ++++ .../net/minecraft/server/gui/package-frame.html | 25 + .../net/minecraft/server/gui/package-summary.html | 154 ++ javadoc/net/minecraft/server/gui/package-tree.html | 148 ++ .../server/integrated/IntegratedPlayerList.html | 338 ++++ .../server/integrated/IntegratedServer.html | 647 +++++++ .../minecraft/server/integrated/package-frame.html | 20 + .../server/integrated/package-summary.html | 135 ++ .../minecraft/server/integrated/package-tree.html | 135 ++ .../net/minecraft/server/management/BanEntry.html | 406 ++++ .../net/minecraft/server/management/BanList.html | 311 +++ .../minecraft/server/management/IPBanEntry.html | 322 ++++ .../server/management/ItemInWorldManager.html | 516 +++++ .../server/management/LowerStringMap.html | 489 +++++ .../minecraft/server/management/PlayerManager.html | 394 ++++ .../management/PlayerPositionComparator.html | 287 +++ .../server/management/PlayerProfileCache.html | 370 ++++ .../server/management/PreYggdrasilConverter.html | 421 ++++ .../management/ServerConfigurationManager.html | 1195 ++++++++++++ .../net/minecraft/server/management/UserList.html | 482 +++++ .../minecraft/server/management/UserListBans.html | 358 ++++ .../server/management/UserListBansEntry.html | 322 ++++ .../minecraft/server/management/UserListEntry.html | 275 +++ .../minecraft/server/management/UserListOps.html | 345 ++++ .../server/management/UserListOpsEntry.html | 290 +++ .../server/management/UserListWhitelist.html | 358 ++++ .../server/management/UserListWhitelistEntry.html | 275 +++ .../minecraft/server/management/package-frame.html | 36 + .../server/management/package-summary.html | 199 ++ .../minecraft/server/management/package-tree.html | 152 ++ .../server/network/NetHandlerHandshakeTCP.html | 318 +++ .../server/network/NetHandlerLoginServer.html | 423 ++++ .../server/network/NetHandlerStatusServer.html | 335 ++++ .../minecraft/server/network/package-frame.html | 21 + .../minecraft/server/network/package-summary.html | 139 ++ .../net/minecraft/server/network/package-tree.html | 128 ++ javadoc/net/minecraft/server/package-frame.html | 20 + javadoc/net/minecraft/server/package-summary.html | 135 ++ javadoc/net/minecraft/server/package-tree.html | 127 ++ 50 files changed, 16621 insertions(+) create mode 100644 javadoc/net/minecraft/server/MinecraftServer.html create mode 100644 javadoc/net/minecraft/server/ServerEula.html create mode 100644 javadoc/net/minecraft/server/dedicated/DedicatedPlayerList.html create mode 100644 javadoc/net/minecraft/server/dedicated/DedicatedServer.html create mode 100644 javadoc/net/minecraft/server/dedicated/PropertyManager.html create mode 100644 javadoc/net/minecraft/server/dedicated/package-frame.html create mode 100644 javadoc/net/minecraft/server/dedicated/package-summary.html create mode 100644 javadoc/net/minecraft/server/dedicated/package-tree.html create mode 100644 javadoc/net/minecraft/server/gui/IUpdatePlayerListBox.html create mode 100644 javadoc/net/minecraft/server/gui/MinecraftServerGui.html create mode 100644 javadoc/net/minecraft/server/gui/PlayerListComponent.html create mode 100644 javadoc/net/minecraft/server/gui/StatsComponent.html create mode 100644 javadoc/net/minecraft/server/gui/package-frame.html create mode 100644 javadoc/net/minecraft/server/gui/package-summary.html create mode 100644 javadoc/net/minecraft/server/gui/package-tree.html create mode 100644 javadoc/net/minecraft/server/integrated/IntegratedPlayerList.html create mode 100644 javadoc/net/minecraft/server/integrated/IntegratedServer.html create mode 100644 javadoc/net/minecraft/server/integrated/package-frame.html create mode 100644 javadoc/net/minecraft/server/integrated/package-summary.html create mode 100644 javadoc/net/minecraft/server/integrated/package-tree.html create mode 100644 javadoc/net/minecraft/server/management/BanEntry.html create mode 100644 javadoc/net/minecraft/server/management/BanList.html create mode 100644 javadoc/net/minecraft/server/management/IPBanEntry.html create mode 100644 javadoc/net/minecraft/server/management/ItemInWorldManager.html create mode 100644 javadoc/net/minecraft/server/management/LowerStringMap.html create mode 100644 javadoc/net/minecraft/server/management/PlayerManager.html create mode 100644 javadoc/net/minecraft/server/management/PlayerPositionComparator.html create mode 100644 javadoc/net/minecraft/server/management/PlayerProfileCache.html create mode 100644 javadoc/net/minecraft/server/management/PreYggdrasilConverter.html create mode 100644 javadoc/net/minecraft/server/management/ServerConfigurationManager.html create mode 100644 javadoc/net/minecraft/server/management/UserList.html create mode 100644 javadoc/net/minecraft/server/management/UserListBans.html create mode 100644 javadoc/net/minecraft/server/management/UserListBansEntry.html create mode 100644 javadoc/net/minecraft/server/management/UserListEntry.html create mode 100644 javadoc/net/minecraft/server/management/UserListOps.html create mode 100644 javadoc/net/minecraft/server/management/UserListOpsEntry.html create mode 100644 javadoc/net/minecraft/server/management/UserListWhitelist.html create mode 100644 javadoc/net/minecraft/server/management/UserListWhitelistEntry.html create mode 100644 javadoc/net/minecraft/server/management/package-frame.html create mode 100644 javadoc/net/minecraft/server/management/package-summary.html create mode 100644 javadoc/net/minecraft/server/management/package-tree.html create mode 100644 javadoc/net/minecraft/server/network/NetHandlerHandshakeTCP.html create mode 100644 javadoc/net/minecraft/server/network/NetHandlerLoginServer.html create mode 100644 javadoc/net/minecraft/server/network/NetHandlerStatusServer.html create mode 100644 javadoc/net/minecraft/server/network/package-frame.html create mode 100644 javadoc/net/minecraft/server/network/package-summary.html create mode 100644 javadoc/net/minecraft/server/network/package-tree.html create mode 100644 javadoc/net/minecraft/server/package-frame.html create mode 100644 javadoc/net/minecraft/server/package-summary.html create mode 100644 javadoc/net/minecraft/server/package-tree.html (limited to 'javadoc/net/minecraft/server') diff --git a/javadoc/net/minecraft/server/MinecraftServer.html b/javadoc/net/minecraft/server/MinecraftServer.html new file mode 100644 index 0000000..5da91c9 --- /dev/null +++ b/javadoc/net/minecraft/server/MinecraftServer.html @@ -0,0 +1,2032 @@ + + + + + +MinecraftServer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server
+

Class MinecraftServer

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        field_152367_a

        +
        public static final java.io.File field_152367_a
        +
      • +
      + + + +
        +
      • +

        theProfiler

        +
        public final Profiler theProfiler
        +
      • +
      + + + +
        +
      • +

        worldServers

        +
        public WorldServer[] worldServers
        +
      • +
      + + + +
        +
      • +

        serverProxy

        +
        protected final java.net.Proxy serverProxy
        +
      • +
      + + + +
        +
      • +

        currentTask

        +
        public java.lang.String currentTask
        +
      • +
      + + + +
        +
      • +

        percentDone

        +
        public int percentDone
        +
      • +
      + + + +
        +
      • +

        tickTimeArray

        +
        public final long[] tickTimeArray
        +
      • +
      + + + +
        +
      • +

        worldTickTimes

        +
        public java.util.Hashtable<java.lang.Integer,long[]> worldTickTimes
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        MinecraftServer

        +
        public MinecraftServer(java.io.File p_i45281_1_,
        +               java.net.Proxy p_i45281_2_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        startServer

        +
        protected abstract boolean startServer()
        +                                throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        convertMapIfNeeded

        +
        protected void convertMapIfNeeded(java.lang.String p_71237_1_)
        +
      • +
      + + + +
        +
      • +

        setUserMessage

        +
        protected void setUserMessage(java.lang.String p_71192_1_)
        +
      • +
      + + + +
        +
      • +

        getUserMessage

        +
        public java.lang.String getUserMessage()
        +
      • +
      + + + +
        +
      • +

        loadAllWorlds

        +
        protected void loadAllWorlds(java.lang.String p_71247_1_,
        +                 java.lang.String p_71247_2_,
        +                 long p_71247_3_,
        +                 WorldType p_71247_5_,
        +                 java.lang.String p_71247_6_)
        +
      • +
      + + + +
        +
      • +

        initialWorldChunkLoad

        +
        protected void initialWorldChunkLoad()
        +
      • +
      + + + +
        +
      • +

        canStructuresSpawn

        +
        public abstract boolean canStructuresSpawn()
        +
      • +
      + + + + + + + +
        +
      • +

        func_147135_j

        +
        public abstract EnumDifficulty func_147135_j()
        +
      • +
      + + + +
        +
      • +

        isHardcore

        +
        public abstract boolean isHardcore()
        +
      • +
      + + + +
        +
      • +

        getOpPermissionLevel

        +
        public abstract int getOpPermissionLevel()
        +
      • +
      + + + +
        +
      • +

        func_152363_m

        +
        public abstract boolean func_152363_m()
        +
      • +
      + + + +
        +
      • +

        outputPercentRemaining

        +
        protected void outputPercentRemaining(java.lang.String p_71216_1_,
        +                          int p_71216_2_)
        +
      • +
      + + + +
        +
      • +

        clearCurrentTask

        +
        protected void clearCurrentTask()
        +
      • +
      + + + +
        +
      • +

        saveAllWorlds

        +
        protected void saveAllWorlds(boolean p_71267_1_)
        +
      • +
      + + + +
        +
      • +

        stopServer

        +
        public void stopServer()
        +
      • +
      + + + +
        +
      • +

        isServerRunning

        +
        public boolean isServerRunning()
        +
      • +
      + + + +
        +
      • +

        initiateShutdown

        +
        public void initiateShutdown()
        +
      • +
      + + + +
        +
      • +

        run

        +
        public void run()
        +
        +
        Specified by:
        +
        run in interface java.lang.Runnable
        +
        +
      • +
      + + + +
        +
      • +

        getDataDirectory

        +
        protected java.io.File getDataDirectory()
        +
      • +
      + + + +
        +
      • +

        finalTick

        +
        protected void finalTick(CrashReport p_71228_1_)
        +
      • +
      + + + +
        +
      • +

        systemExitNow

        +
        protected void systemExitNow()
        +
      • +
      + + + +
        +
      • +

        tick

        +
        public void tick()
        +
      • +
      + + + +
        +
      • +

        updateTimeLightAndEntities

        +
        public void updateTimeLightAndEntities()
        +
      • +
      + + + +
        +
      • +

        getAllowNether

        +
        public boolean getAllowNether()
        +
      • +
      + + + +
        +
      • +

        startServerThread

        +
        public void startServerThread()
        +
      • +
      + + + +
        +
      • +

        getFile

        +
        public java.io.File getFile(java.lang.String p_71209_1_)
        +
      • +
      + + + +
        +
      • +

        logWarning

        +
        public void logWarning(java.lang.String p_71236_1_)
        +
      • +
      + + + +
        +
      • +

        worldServerForDimension

        +
        public WorldServer worldServerForDimension(int p_71218_1_)
        +
      • +
      + + + +
        +
      • +

        getMinecraftVersion

        +
        public java.lang.String getMinecraftVersion()
        +
      • +
      + + + +
        +
      • +

        getCurrentPlayerCount

        +
        public int getCurrentPlayerCount()
        +
      • +
      + + + +
        +
      • +

        getMaxPlayers

        +
        public int getMaxPlayers()
        +
      • +
      + + + +
        +
      • +

        getAllUsernames

        +
        public java.lang.String[] getAllUsernames()
        +
      • +
      + + + +
        +
      • +

        func_152357_F

        +
        public com.mojang.authlib.GameProfile[] func_152357_F()
        +
      • +
      + + + +
        +
      • +

        getServerModName

        +
        public java.lang.String getServerModName()
        +
      • +
      + + + + + + + +
        +
      • +

        getPossibleCompletions

        +
        public java.util.List getPossibleCompletions(ICommandSender p_71248_1_,
        +                                    java.lang.String p_71248_2_)
        +
      • +
      + + + + + + + + + + + + + + + +
        +
      • +

        canCommandSenderUseCommand

        +
        public boolean canCommandSenderUseCommand(int p_70003_1_,
        +                                 java.lang.String p_70003_2_)
        +
        +
        Specified by:
        +
        canCommandSenderUseCommand in interface ICommandSender
        +
        +
      • +
      + + + + + + + +
        +
      • +

        getKeyPair

        +
        public java.security.KeyPair getKeyPair()
        +
      • +
      + + + +
        +
      • +

        getServerOwner

        +
        public java.lang.String getServerOwner()
        +
      • +
      + + + +
        +
      • +

        setServerOwner

        +
        public void setServerOwner(java.lang.String p_71224_1_)
        +
      • +
      + + + +
        +
      • +

        isSinglePlayer

        +
        public boolean isSinglePlayer()
        +
      • +
      + + + +
        +
      • +

        getFolderName

        +
        public java.lang.String getFolderName()
        +
      • +
      + + + +
        +
      • +

        setFolderName

        +
        public void setFolderName(java.lang.String p_71261_1_)
        +
      • +
      + + + +
        +
      • +

        setWorldName

        +
        public void setWorldName(java.lang.String p_71246_1_)
        +
      • +
      + + + +
        +
      • +

        getWorldName

        +
        public java.lang.String getWorldName()
        +
      • +
      + + + +
        +
      • +

        setKeyPair

        +
        public void setKeyPair(java.security.KeyPair p_71253_1_)
        +
      • +
      + + + +
        +
      • +

        func_147139_a

        +
        public void func_147139_a(EnumDifficulty p_147139_1_)
        +
      • +
      + + + +
        +
      • +

        allowSpawnMonsters

        +
        protected boolean allowSpawnMonsters()
        +
      • +
      + + + +
        +
      • +

        isDemo

        +
        public boolean isDemo()
        +
      • +
      + + + +
        +
      • +

        setDemo

        +
        public void setDemo(boolean p_71204_1_)
        +
      • +
      + + + +
        +
      • +

        canCreateBonusChest

        +
        public void canCreateBonusChest(boolean p_71194_1_)
        +
      • +
      + + + +
        +
      • +

        getActiveAnvilConverter

        +
        public ISaveFormat getActiveAnvilConverter()
        +
      • +
      + + + +
        +
      • +

        deleteWorldAndStopServer

        +
        public void deleteWorldAndStopServer()
        +
      • +
      + + + +
        +
      • +

        getTexturePack

        +
        public java.lang.String getTexturePack()
        +
      • +
      + + + + + + + + + + + + + + + +
        +
      • +

        isDedicatedServer

        +
        public abstract boolean isDedicatedServer()
        +
      • +
      + + + +
        +
      • +

        isServerInOnlineMode

        +
        public boolean isServerInOnlineMode()
        +
      • +
      + + + +
        +
      • +

        setOnlineMode

        +
        public void setOnlineMode(boolean p_71229_1_)
        +
      • +
      + + + +
        +
      • +

        getCanSpawnAnimals

        +
        public boolean getCanSpawnAnimals()
        +
      • +
      + + + +
        +
      • +

        setCanSpawnAnimals

        +
        public void setCanSpawnAnimals(boolean p_71251_1_)
        +
      • +
      + + + +
        +
      • +

        getCanSpawnNPCs

        +
        public boolean getCanSpawnNPCs()
        +
      • +
      + + + +
        +
      • +

        setCanSpawnNPCs

        +
        public void setCanSpawnNPCs(boolean p_71257_1_)
        +
      • +
      + + + +
        +
      • +

        isPVPEnabled

        +
        public boolean isPVPEnabled()
        +
      • +
      + + + +
        +
      • +

        setAllowPvp

        +
        public void setAllowPvp(boolean p_71188_1_)
        +
      • +
      + + + +
        +
      • +

        isFlightAllowed

        +
        public boolean isFlightAllowed()
        +
      • +
      + + + +
        +
      • +

        setAllowFlight

        +
        public void setAllowFlight(boolean p_71245_1_)
        +
      • +
      + + + +
        +
      • +

        isCommandBlockEnabled

        +
        public abstract boolean isCommandBlockEnabled()
        +
      • +
      + + + +
        +
      • +

        getMOTD

        +
        public java.lang.String getMOTD()
        +
      • +
      + + + +
        +
      • +

        setMOTD

        +
        public void setMOTD(java.lang.String p_71205_1_)
        +
      • +
      + + + +
        +
      • +

        getBuildLimit

        +
        public int getBuildLimit()
        +
      • +
      + + + +
        +
      • +

        setBuildLimit

        +
        public void setBuildLimit(int p_71191_1_)
        +
      • +
      + + + + + + + + + + + + + + + + + + + +
        +
      • +

        serverIsInRunLoop

        +
        public boolean serverIsInRunLoop()
        +
      • +
      + + + +
        +
      • +

        getGuiEnabled

        +
        public boolean getGuiEnabled()
        +
      • +
      + + + +
        +
      • +

        shareToLAN

        +
        public abstract java.lang.String shareToLAN(WorldSettings.GameType p_71206_1_,
        +                          boolean p_71206_2_)
        +
      • +
      + + + +
        +
      • +

        getTickCounter

        +
        public int getTickCounter()
        +
      • +
      + + + +
        +
      • +

        enableProfiling

        +
        public void enableProfiling()
        +
      • +
      + + + + + + + + + + + + + + + +
        +
      • +

        getSpawnProtectionSize

        +
        public int getSpawnProtectionSize()
        +
      • +
      + + + +
        +
      • +

        isBlockProtected

        +
        public boolean isBlockProtected(World p_96290_1_,
        +                       int p_96290_2_,
        +                       int p_96290_3_,
        +                       int p_96290_4_,
        +                       EntityPlayer p_96290_5_)
        +
      • +
      + + + +
        +
      • +

        getForceGamemode

        +
        public boolean getForceGamemode()
        +
      • +
      + + + +
        +
      • +

        getServerProxy

        +
        public java.net.Proxy getServerProxy()
        +
      • +
      + + + +
        +
      • +

        getSystemTimeMillis

        +
        public static long getSystemTimeMillis()
        +
      • +
      + + + +
        +
      • +

        func_143007_ar

        +
        public int func_143007_ar()
        +
      • +
      + + + +
        +
      • +

        func_143006_e

        +
        public void func_143006_e(int p_143006_1_)
        +
      • +
      + + + + + + + +
        +
      • +

        func_147136_ar

        +
        public boolean func_147136_ar()
        +
      • +
      + + + +
        +
      • +

        func_147130_as

        +
        public com.mojang.authlib.minecraft.MinecraftSessionService func_147130_as()
        +
      • +
      + + + +
        +
      • +

        func_152359_aw

        +
        public com.mojang.authlib.GameProfileRepository func_152359_aw()
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        func_147132_au

        +
        public void func_147132_au()
        +
      • +
      + + + +
        +
      • +

        getServerHostname

        +
        public java.lang.String getServerHostname()
        +
      • +
      + + + +
        +
      • +

        setHostname

        +
        public void setHostname(java.lang.String p_71189_1_)
        +
      • +
      + + + + + + + +
        +
      • +

        main

        +
        public static void main(java.lang.String[] p_main_0_)
        +
      • +
      + + + +
        +
      • +

        logInfo

        +
        public void logInfo(java.lang.String p_71244_1_)
        +
      • +
      + + + +
        +
      • +

        getHostname

        +
        public java.lang.String getHostname()
        +
      • +
      + + + +
        +
      • +

        getPort

        +
        public int getPort()
        +
      • +
      + + + +
        +
      • +

        getMotd

        +
        public java.lang.String getMotd()
        +
      • +
      + + + +
        +
      • +

        getPlugins

        +
        public java.lang.String getPlugins()
        +
      • +
      + + + +
        +
      • +

        handleRConCommand

        +
        public java.lang.String handleRConCommand(java.lang.String p_71252_1_)
        +
      • +
      + + + +
        +
      • +

        isDebuggingEnabled

        +
        public boolean isDebuggingEnabled()
        +
      • +
      + + + +
        +
      • +

        logSevere

        +
        public void logSevere(java.lang.String p_71201_1_)
        +
      • +
      + + + +
        +
      • +

        logDebug

        +
        public void logDebug(java.lang.String p_71198_1_)
        +
      • +
      + + + +
        +
      • +

        getServerPort

        +
        public int getServerPort()
        +
      • +
      + + + +
        +
      • +

        setServerPort

        +
        public void setServerPort(int p_71208_1_)
        +
      • +
      + + + +
        +
      • +

        func_155759_m

        +
        public void func_155759_m(java.lang.String p_155759_1_)
        +
      • +
      + + + +
        +
      • +

        isServerStopped

        +
        public boolean isServerStopped()
        +
      • +
      + + + +
        +
      • +

        setForceGamemode

        +
        public void setForceGamemode(boolean p_104055_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/ServerEula.html b/javadoc/net/minecraft/server/ServerEula.html new file mode 100644 index 0000000..d2076f1 --- /dev/null +++ b/javadoc/net/minecraft/server/ServerEula.html @@ -0,0 +1,267 @@ + + + + + +ServerEula (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server
+

Class ServerEula

+
+
+ +
+
    +
  • +
    +
    +
    public class ServerEula
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      ServerEula(java.io.File p_i1227_1_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      booleanfunc_154346_a() 
      voidfunc_154348_b() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServerEula

        +
        public ServerEula(java.io.File p_i1227_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_154346_a

        +
        public boolean func_154346_a()
        +
      • +
      + + + +
        +
      • +

        func_154348_b

        +
        public void func_154348_b()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/dedicated/DedicatedPlayerList.html b/javadoc/net/minecraft/server/dedicated/DedicatedPlayerList.html new file mode 100644 index 0000000..5bfc530 --- /dev/null +++ b/javadoc/net/minecraft/server/dedicated/DedicatedPlayerList.html @@ -0,0 +1,404 @@ + + + + + +DedicatedPlayerList (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.dedicated
+

Class DedicatedPlayerList

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/dedicated/DedicatedServer.html b/javadoc/net/minecraft/server/dedicated/DedicatedServer.html new file mode 100644 index 0000000..41d167d --- /dev/null +++ b/javadoc/net/minecraft/server/dedicated/DedicatedServer.html @@ -0,0 +1,908 @@ + + + + + +DedicatedServer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.dedicated
+

Class DedicatedServer

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/dedicated/PropertyManager.html b/javadoc/net/minecraft/server/dedicated/PropertyManager.html new file mode 100644 index 0000000..f05d1dd --- /dev/null +++ b/javadoc/net/minecraft/server/dedicated/PropertyManager.html @@ -0,0 +1,340 @@ + + + + + +PropertyManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.dedicated
+

Class PropertyManager

+
+
+ +
+
    +
  • +
    +
    +
    public class PropertyManager
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PropertyManager(java.io.File p_i45278_1_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidgenerateNewProperties() 
      booleangetBooleanProperty(java.lang.String p_73670_1_, + boolean p_73670_2_) 
      intgetIntProperty(java.lang.String p_73669_1_, + int p_73669_2_) 
      java.io.FilegetPropertiesFile() 
      java.lang.StringgetStringProperty(java.lang.String p_73671_1_, + java.lang.String p_73671_2_) 
      voidsaveProperties() 
      voidsetProperty(java.lang.String p_73667_1_, + java.lang.Object p_73667_2_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PropertyManager

        +
        public PropertyManager(java.io.File p_i45278_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        generateNewProperties

        +
        public void generateNewProperties()
        +
      • +
      + + + +
        +
      • +

        saveProperties

        +
        public void saveProperties()
        +
      • +
      + + + +
        +
      • +

        getPropertiesFile

        +
        public java.io.File getPropertiesFile()
        +
      • +
      + + + +
        +
      • +

        getStringProperty

        +
        public java.lang.String getStringProperty(java.lang.String p_73671_1_,
        +                                 java.lang.String p_73671_2_)
        +
      • +
      + + + +
        +
      • +

        getIntProperty

        +
        public int getIntProperty(java.lang.String p_73669_1_,
        +                 int p_73669_2_)
        +
      • +
      + + + +
        +
      • +

        getBooleanProperty

        +
        public boolean getBooleanProperty(java.lang.String p_73670_1_,
        +                         boolean p_73670_2_)
        +
      • +
      + + + +
        +
      • +

        setProperty

        +
        public void setProperty(java.lang.String p_73667_1_,
        +               java.lang.Object p_73667_2_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/dedicated/package-frame.html b/javadoc/net/minecraft/server/dedicated/package-frame.html new file mode 100644 index 0000000..1515385 --- /dev/null +++ b/javadoc/net/minecraft/server/dedicated/package-frame.html @@ -0,0 +1,21 @@ + + + + + +net.minecraft.server.dedicated (Forge API) + + + + +

net.minecraft.server.dedicated

+
+

Classes

+ +
+ + diff --git a/javadoc/net/minecraft/server/dedicated/package-summary.html b/javadoc/net/minecraft/server/dedicated/package-summary.html new file mode 100644 index 0000000..55831ba --- /dev/null +++ b/javadoc/net/minecraft/server/dedicated/package-summary.html @@ -0,0 +1,139 @@ + + + + + +net.minecraft.server.dedicated (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.server.dedicated

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/dedicated/package-tree.html b/javadoc/net/minecraft/server/dedicated/package-tree.html new file mode 100644 index 0000000..c55dde9 --- /dev/null +++ b/javadoc/net/minecraft/server/dedicated/package-tree.html @@ -0,0 +1,136 @@ + + + + + +net.minecraft.server.dedicated Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.server.dedicated

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/gui/IUpdatePlayerListBox.html b/javadoc/net/minecraft/server/gui/IUpdatePlayerListBox.html new file mode 100644 index 0000000..d947de9 --- /dev/null +++ b/javadoc/net/minecraft/server/gui/IUpdatePlayerListBox.html @@ -0,0 +1,212 @@ + + + + + +IUpdatePlayerListBox (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.gui
+

Interface IUpdatePlayerListBox

+
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidupdate() 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        update

        +
        void update()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/gui/MinecraftServerGui.html b/javadoc/net/minecraft/server/gui/MinecraftServerGui.html new file mode 100644 index 0000000..35cebad --- /dev/null +++ b/javadoc/net/minecraft/server/gui/MinecraftServerGui.html @@ -0,0 +1,370 @@ + + + + + +MinecraftServerGui (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.gui
+

Class MinecraftServerGui

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable
    +
    +
    +
    +
    public class MinecraftServerGui
    +extends javax.swing.JComponent
    +
    See Also:
    Serialized Form
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      +
        +
      • + + +

        Nested classes/interfaces inherited from class javax.swing.JComponent

        +javax.swing.JComponent.AccessibleJComponent
      • +
      +
        +
      • + + +

        Nested classes/interfaces inherited from class java.awt.Container

        +java.awt.Container.AccessibleAWTContainer
      • +
      +
        +
      • + + +

        Nested classes/interfaces inherited from class java.awt.Component

        +java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy
      • +
      +
    • +
    + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from class javax.swing.JComponent

        +accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW
      • +
      +
        +
      • + + +

        Fields inherited from class java.awt.Component

        +BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT
      • +
      +
        +
      • + + +

        Fields inherited from interface java.awt.image.ImageObserver

        +ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH
      • +
      +
    • +
    + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static voidcreateServerGui(DedicatedServer p_120016_0_) 
      voidfunc_164247_a(javax.swing.JTextArea p_164247_1_, + javax.swing.JScrollPane p_164247_2_, + java.lang.String p_164247_3_) 
      +
        +
      • + + +

        Methods inherited from class javax.swing.JComponent

        +addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, disable, enable, firePropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, getAccessibleContext, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaseline, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getTransferHandler, getUIClassID, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, hide, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingOrigin, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintBorder, paintChildren, paintComponent, paintImmediately, paintImmediately, paramString, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, processKeyBinding, processKeyEvent, processMouseEvent, processMouseMotionEvent, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, setFocusTraversalKeys, setFont, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update, updateUI
      • +
      +
        +
      • + + +

        Methods inherited from class java.awt.Container

        +add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusDownCycle, validate, validateTree
      • +
      +
        +
      • + + +

        Methods inherited from class java.awt.Component

        +action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, createImage, createImage, createVolatileImage, createVolatileImage, disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        MinecraftServerGui

        +
        public MinecraftServerGui(DedicatedServer p_i2362_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        createServerGui

        +
        public static void createServerGui(DedicatedServer p_120016_0_)
        +
      • +
      + + + +
        +
      • +

        func_164247_a

        +
        public void func_164247_a(javax.swing.JTextArea p_164247_1_,
        +                 javax.swing.JScrollPane p_164247_2_,
        +                 java.lang.String p_164247_3_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/gui/PlayerListComponent.html b/javadoc/net/minecraft/server/gui/PlayerListComponent.html new file mode 100644 index 0000000..9a94b10 --- /dev/null +++ b/javadoc/net/minecraft/server/gui/PlayerListComponent.html @@ -0,0 +1,384 @@ + + + + + +PlayerListComponent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.gui
+

Class PlayerListComponent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable, javax.accessibility.Accessible, javax.swing.Scrollable, IUpdatePlayerListBox
    +
    +
    +
    +
    public class PlayerListComponent
    +extends javax.swing.JList
    +implements IUpdatePlayerListBox
    +
    See Also:
    Serialized Form
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      +
        +
      • + + +

        Nested classes/interfaces inherited from class javax.swing.JList

        +javax.swing.JList.AccessibleJList, javax.swing.JList.DropLocation
      • +
      +
        +
      • + + +

        Nested classes/interfaces inherited from class javax.swing.JComponent

        +javax.swing.JComponent.AccessibleJComponent
      • +
      +
        +
      • + + +

        Nested classes/interfaces inherited from class java.awt.Container

        +java.awt.Container.AccessibleAWTContainer
      • +
      +
        +
      • + + +

        Nested classes/interfaces inherited from class java.awt.Component

        +java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy
      • +
      +
    • +
    + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from class javax.swing.JList

        +HORIZONTAL_WRAP, VERTICAL, VERTICAL_WRAP
      • +
      +
        +
      • + + +

        Fields inherited from class javax.swing.JComponent

        +accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW
      • +
      +
        +
      • + + +

        Fields inherited from class java.awt.Component

        +BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT
      • +
      +
        +
      • + + +

        Fields inherited from interface java.awt.image.ImageObserver

        +ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH
      • +
      +
    • +
    + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidupdate() 
      +
        +
      • + + +

        Methods inherited from class javax.swing.JList

        +addListSelectionListener, addSelectionInterval, clearSelection, createSelectionModel, ensureIndexIsVisible, fireSelectionValueChanged, getAccessibleContext, getAnchorSelectionIndex, getCellBounds, getCellRenderer, getDragEnabled, getDropLocation, getDropMode, getFirstVisibleIndex, getFixedCellHeight, getFixedCellWidth, getLastVisibleIndex, getLayoutOrientation, getLeadSelectionIndex, getListSelectionListeners, getMaxSelectionIndex, getMinSelectionIndex, getModel, getNextMatch, getPreferredScrollableViewportSize, getPrototypeCellValue, getScrollableBlockIncrement, getScrollableTracksViewportHeight, getScrollableTracksViewportWidth, getScrollableUnitIncrement, getSelectedIndex, getSelectedIndices, getSelectedValue, getSelectedValues, getSelectedValuesList, getSelectionBackground, getSelectionForeground, getSelectionMode, getSelectionModel, getToolTipText, getUI, getUIClassID, getValueIsAdjusting, getVisibleRowCount, indexToLocation, isSelectedIndex, isSelectionEmpty, locationToIndex, paramString, removeListSelectionListener, removeSelectionInterval, setCellRenderer, setDragEnabled, setDropMode, setFixedCellHeight, setFixedCellWidth, setLayoutOrientation, setListData, setListData, setModel, setPrototypeCellValue, setSelectedIndex, setSelectedIndices, setSelectedValue, setSelectionBackground, setSelectionForeground, setSelectionInterval, setSelectionMode, setSelectionModel, setUI, setValueIsAdjusting, setVisibleRowCount, updateUI
      • +
      +
        +
      • + + +

        Methods inherited from class javax.swing.JComponent

        +addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, disable, enable, firePropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaseline, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getTopLevelAncestor, getTransferHandler, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, hide, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingOrigin, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paint, paintBorder, paintChildren, paintComponent, paintImmediately, paintImmediately, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, processKeyBinding, processKeyEvent, processMouseEvent, processMouseMotionEvent, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, setFocusTraversalKeys, setFont, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update
      • +
      +
        +
      • + + +

        Methods inherited from class java.awt.Container

        +add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusDownCycle, validate, validateTree
      • +
      +
        +
      • + + +

        Methods inherited from class java.awt.Component

        +action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, createImage, createImage, createVolatileImage, createVolatileImage, disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/gui/StatsComponent.html b/javadoc/net/minecraft/server/gui/StatsComponent.html new file mode 100644 index 0000000..7d2b836 --- /dev/null +++ b/javadoc/net/minecraft/server/gui/StatsComponent.html @@ -0,0 +1,357 @@ + + + + + +StatsComponent (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.gui
+

Class StatsComponent

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable
    +
    +
    +
    +
    public class StatsComponent
    +extends javax.swing.JComponent
    +
    See Also:
    Serialized Form
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      +
        +
      • + + +

        Nested classes/interfaces inherited from class javax.swing.JComponent

        +javax.swing.JComponent.AccessibleJComponent
      • +
      +
        +
      • + + +

        Nested classes/interfaces inherited from class java.awt.Container

        +java.awt.Container.AccessibleAWTContainer
      • +
      +
        +
      • + + +

        Nested classes/interfaces inherited from class java.awt.Component

        +java.awt.Component.AccessibleAWTComponent, java.awt.Component.BaselineResizeBehavior, java.awt.Component.BltBufferStrategy, java.awt.Component.FlipBufferStrategy
      • +
      +
    • +
    + +
      +
    • + + +

      Field Summary

      +
        +
      • + + +

        Fields inherited from class javax.swing.JComponent

        +accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW
      • +
      +
        +
      • + + +

        Fields inherited from class java.awt.Component

        +BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT
      • +
      +
        +
      • + + +

        Fields inherited from interface java.awt.image.ImageObserver

        +ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH
      • +
      +
    • +
    + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidpaint(java.awt.Graphics p_paint_1_) 
      +
        +
      • + + +

        Methods inherited from class javax.swing.JComponent

        +addAncestorListener, addNotify, addVetoableChangeListener, computeVisibleRect, contains, createToolTip, disable, enable, firePropertyChange, firePropertyChange, firePropertyChange, fireVetoableChange, getAccessibleContext, getActionForKeyStroke, getActionMap, getAlignmentX, getAlignmentY, getAncestorListeners, getAutoscrolls, getBaseline, getBaselineResizeBehavior, getBorder, getBounds, getClientProperty, getComponentGraphics, getComponentPopupMenu, getConditionForKeyStroke, getDebugGraphicsOptions, getDefaultLocale, getFontMetrics, getGraphics, getHeight, getInheritsPopupMenu, getInputMap, getInputMap, getInputVerifier, getInsets, getInsets, getListeners, getLocation, getMaximumSize, getMinimumSize, getNextFocusableComponent, getPopupLocation, getPreferredSize, getRegisteredKeyStrokes, getRootPane, getSize, getToolTipLocation, getToolTipText, getToolTipText, getTopLevelAncestor, getTransferHandler, getUIClassID, getVerifyInputWhenFocusTarget, getVetoableChangeListeners, getVisibleRect, getWidth, getX, getY, grabFocus, hide, isDoubleBuffered, isLightweightComponent, isManagingFocus, isOpaque, isOptimizedDrawingEnabled, isPaintingForPrint, isPaintingOrigin, isPaintingTile, isRequestFocusEnabled, isValidateRoot, paintBorder, paintChildren, paintComponent, paintImmediately, paintImmediately, paramString, print, printAll, printBorder, printChildren, printComponent, processComponentKeyEvent, processKeyBinding, processKeyEvent, processMouseEvent, processMouseMotionEvent, putClientProperty, registerKeyboardAction, registerKeyboardAction, removeAncestorListener, removeNotify, removeVetoableChangeListener, repaint, repaint, requestDefaultFocus, requestFocus, requestFocus, requestFocusInWindow, requestFocusInWindow, resetKeyboardActions, reshape, revalidate, scrollRectToVisible, setActionMap, setAlignmentX, setAlignmentY, setAutoscrolls, setBackground, setBorder, setComponentPopupMenu, setDebugGraphicsOptions, setDefaultLocale, setDoubleBuffered, setEnabled, setFocusTraversalKeys, setFont, setForeground, setInheritsPopupMenu, setInputMap, setInputVerifier, setMaximumSize, setMinimumSize, setNextFocusableComponent, setOpaque, setPreferredSize, setRequestFocusEnabled, setToolTipText, setTransferHandler, setUI, setVerifyInputWhenFocusTarget, setVisible, unregisterKeyboardAction, update, updateUI
      • +
      +
        +
      • + + +

        Methods inherited from class java.awt.Container

        +add, add, add, add, add, addContainerListener, addImpl, addPropertyChangeListener, addPropertyChangeListener, applyComponentOrientation, areFocusTraversalKeysSet, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getComponentZOrder, getContainerListeners, getFocusTraversalKeys, getFocusTraversalPolicy, getLayout, getMousePosition, insets, invalidate, isAncestorOf, isFocusCycleRoot, isFocusCycleRoot, isFocusTraversalPolicyProvider, isFocusTraversalPolicySet, layout, list, list, locate, minimumSize, paintComponents, preferredSize, printComponents, processContainerEvent, processEvent, remove, remove, removeAll, removeContainerListener, setComponentZOrder, setFocusCycleRoot, setFocusTraversalPolicy, setFocusTraversalPolicyProvider, setLayout, transferFocusDownCycle, validate, validateTree
      • +
      +
        +
      • + + +

        Methods inherited from class java.awt.Component

        +action, add, addComponentListener, addFocusListener, addHierarchyBoundsListener, addHierarchyListener, addInputMethodListener, addKeyListener, addMouseListener, addMouseMotionListener, addMouseWheelListener, bounds, checkImage, checkImage, coalesceEvents, contains, createImage, createImage, createVolatileImage, createVolatileImage, disableEvents, dispatchEvent, enable, enableEvents, enableInputMethods, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getBackground, getBounds, getColorModel, getComponentListeners, getComponentOrientation, getCursor, getDropTarget, getFocusCycleRootAncestor, getFocusListeners, getFocusTraversalKeysEnabled, getFont, getForeground, getGraphicsConfiguration, getHierarchyBoundsListeners, getHierarchyListeners, getIgnoreRepaint, getInputContext, getInputMethodListeners, getInputMethodRequests, getKeyListeners, getLocale, getLocation, getLocationOnScreen, getMouseListeners, getMouseMotionListeners, getMousePosition, getMouseWheelListeners, getName, getParent, getPeer, getPropertyChangeListeners, getPropertyChangeListeners, getSize, getToolkit, getTreeLock, gotFocus, handleEvent, hasFocus, imageUpdate, inside, isBackgroundSet, isCursorSet, isDisplayable, isEnabled, isFocusable, isFocusOwner, isFocusTraversable, isFontSet, isForegroundSet, isLightweight, isMaximumSizeSet, isMinimumSizeSet, isPreferredSizeSet, isShowing, isValid, isVisible, keyDown, keyUp, list, list, list, location, lostFocus, mouseDown, mouseDrag, mouseEnter, mouseExit, mouseMove, mouseUp, move, nextFocus, paintAll, postEvent, prepareImage, prepareImage, processComponentEvent, processFocusEvent, processHierarchyBoundsEvent, processHierarchyEvent, processInputMethodEvent, processMouseWheelEvent, remove, removeComponentListener, removeFocusListener, removeHierarchyBoundsListener, removeHierarchyListener, removeInputMethodListener, removeKeyListener, removeMouseListener, removeMouseMotionListener, removeMouseWheelListener, removePropertyChangeListener, removePropertyChangeListener, repaint, repaint, repaint, resize, resize, setBounds, setBounds, setComponentOrientation, setCursor, setDropTarget, setFocusable, setFocusTraversalKeysEnabled, setIgnoreRepaint, setLocale, setLocation, setLocation, setName, setSize, setSize, show, show, size, toString, transferFocus, transferFocusBackward, transferFocusUpCycle
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        paint

        +
        public void paint(java.awt.Graphics p_paint_1_)
        +
        +
        Overrides:
        +
        paint in class javax.swing.JComponent
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/gui/package-frame.html b/javadoc/net/minecraft/server/gui/package-frame.html new file mode 100644 index 0000000..2484efa --- /dev/null +++ b/javadoc/net/minecraft/server/gui/package-frame.html @@ -0,0 +1,25 @@ + + + + + +net.minecraft.server.gui (Forge API) + + + + +

net.minecraft.server.gui

+
+

Interfaces

+ +

Classes

+ +
+ + diff --git a/javadoc/net/minecraft/server/gui/package-summary.html b/javadoc/net/minecraft/server/gui/package-summary.html new file mode 100644 index 0000000..2b306f7 --- /dev/null +++ b/javadoc/net/minecraft/server/gui/package-summary.html @@ -0,0 +1,154 @@ + + + + + +net.minecraft.server.gui (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.server.gui

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/gui/package-tree.html b/javadoc/net/minecraft/server/gui/package-tree.html new file mode 100644 index 0000000..4f2f661 --- /dev/null +++ b/javadoc/net/minecraft/server/gui/package-tree.html @@ -0,0 +1,148 @@ + + + + + +net.minecraft.server.gui Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.server.gui

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/integrated/IntegratedPlayerList.html b/javadoc/net/minecraft/server/integrated/IntegratedPlayerList.html new file mode 100644 index 0000000..283f123 --- /dev/null +++ b/javadoc/net/minecraft/server/integrated/IntegratedPlayerList.html @@ -0,0 +1,338 @@ + + + + + +IntegratedPlayerList (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.integrated
+

Class IntegratedPlayerList

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/integrated/IntegratedServer.html b/javadoc/net/minecraft/server/integrated/IntegratedServer.html new file mode 100644 index 0000000..0875af1 --- /dev/null +++ b/javadoc/net/minecraft/server/integrated/IntegratedServer.html @@ -0,0 +1,647 @@ + + + + + +IntegratedServer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.integrated
+

Class IntegratedServer

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/integrated/package-frame.html b/javadoc/net/minecraft/server/integrated/package-frame.html new file mode 100644 index 0000000..cf5b113 --- /dev/null +++ b/javadoc/net/minecraft/server/integrated/package-frame.html @@ -0,0 +1,20 @@ + + + + + +net.minecraft.server.integrated (Forge API) + + + + +

net.minecraft.server.integrated

+
+

Classes

+ +
+ + diff --git a/javadoc/net/minecraft/server/integrated/package-summary.html b/javadoc/net/minecraft/server/integrated/package-summary.html new file mode 100644 index 0000000..5d2ca5a --- /dev/null +++ b/javadoc/net/minecraft/server/integrated/package-summary.html @@ -0,0 +1,135 @@ + + + + + +net.minecraft.server.integrated (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.server.integrated

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/integrated/package-tree.html b/javadoc/net/minecraft/server/integrated/package-tree.html new file mode 100644 index 0000000..7bac9ff --- /dev/null +++ b/javadoc/net/minecraft/server/integrated/package-tree.html @@ -0,0 +1,135 @@ + + + + + +net.minecraft.server.integrated Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.server.integrated

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/BanEntry.html b/javadoc/net/minecraft/server/management/BanEntry.html new file mode 100644 index 0000000..28b502e --- /dev/null +++ b/javadoc/net/minecraft/server/management/BanEntry.html @@ -0,0 +1,406 @@ + + + + + +BanEntry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class BanEntry

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      protected java.util.DatebanEndDate 
      protected java.lang.StringbannedBy 
      protected java.util.DatebanStartDate 
      static java.text.SimpleDateFormatdateFormat 
      protected java.lang.Stringreason 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + + + + + +
      Constructors 
      ModifierConstructor and Description
       BanEntry(java.lang.Object p_i1173_1_, + java.util.Date p_i1173_2_, + java.lang.String p_i1173_3_, + java.util.Date p_i1173_4_, + java.lang.String p_i1173_5_) 
      protected BanEntry(java.lang.Object p_i1174_1_, + com.google.gson.JsonObject p_i1174_2_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      protected voidfunc_152641_a(com.google.gson.JsonObject p_152641_1_) 
      java.util.DategetBanEndDate() 
      java.lang.StringgetBanReason() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        dateFormat

        +
        public static final java.text.SimpleDateFormat dateFormat
        +
      • +
      + + + +
        +
      • +

        banStartDate

        +
        protected final java.util.Date banStartDate
        +
      • +
      + + + +
        +
      • +

        bannedBy

        +
        protected final java.lang.String bannedBy
        +
      • +
      + + + +
        +
      • +

        banEndDate

        +
        protected final java.util.Date banEndDate
        +
      • +
      + + + +
        +
      • +

        reason

        +
        protected final java.lang.String reason
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        BanEntry

        +
        public BanEntry(java.lang.Object p_i1173_1_,
        +        java.util.Date p_i1173_2_,
        +        java.lang.String p_i1173_3_,
        +        java.util.Date p_i1173_4_,
        +        java.lang.String p_i1173_5_)
        +
      • +
      + + + +
        +
      • +

        BanEntry

        +
        protected BanEntry(java.lang.Object p_i1174_1_,
        +        com.google.gson.JsonObject p_i1174_2_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getBanEndDate

        +
        public java.util.Date getBanEndDate()
        +
      • +
      + + + +
        +
      • +

        getBanReason

        +
        public java.lang.String getBanReason()
        +
      • +
      + + + +
        +
      • +

        func_152641_a

        +
        protected void func_152641_a(com.google.gson.JsonObject p_152641_1_)
        +
        +
        Overrides:
        +
        func_152641_a in class UserListEntry
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/BanList.html b/javadoc/net/minecraft/server/management/BanList.html new file mode 100644 index 0000000..a191a09 --- /dev/null +++ b/javadoc/net/minecraft/server/management/BanList.html @@ -0,0 +1,311 @@ + + + + + +BanList (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class BanList

+
+
+ +
+
    +
  • +
    +
    +
    public class BanList
    +extends UserList
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        BanList

        +
        public BanList(java.io.File p_i1490_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        func_152708_a

        +
        public boolean func_152708_a(java.net.SocketAddress p_152708_1_)
        +
      • +
      + + + +
        +
      • +

        func_152709_b

        +
        public IPBanEntry func_152709_b(java.net.SocketAddress p_152709_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/IPBanEntry.html b/javadoc/net/minecraft/server/management/IPBanEntry.html new file mode 100644 index 0000000..45c93f7 --- /dev/null +++ b/javadoc/net/minecraft/server/management/IPBanEntry.html @@ -0,0 +1,322 @@ + + + + + +IPBanEntry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class IPBanEntry

+
+
+ +
+
    +
  • +
    +
    +
    public class IPBanEntry
    +extends BanEntry
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      IPBanEntry(com.google.gson.JsonObject p_i1160_1_) 
      IPBanEntry(java.lang.String p_i1158_1_) 
      IPBanEntry(java.lang.String p_i1159_1_, + java.util.Date p_i1159_2_, + java.lang.String p_i1159_3_, + java.util.Date p_i1159_4_, + java.lang.String p_i1159_5_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      protected voidfunc_152641_a(com.google.gson.JsonObject p_152641_1_) 
      + +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        IPBanEntry

        +
        public IPBanEntry(java.lang.String p_i1158_1_)
        +
      • +
      + + + +
        +
      • +

        IPBanEntry

        +
        public IPBanEntry(java.lang.String p_i1159_1_,
        +          java.util.Date p_i1159_2_,
        +          java.lang.String p_i1159_3_,
        +          java.util.Date p_i1159_4_,
        +          java.lang.String p_i1159_5_)
        +
      • +
      + + + +
        +
      • +

        IPBanEntry

        +
        public IPBanEntry(com.google.gson.JsonObject p_i1160_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152641_a

        +
        protected void func_152641_a(com.google.gson.JsonObject p_152641_1_)
        +
        +
        Overrides:
        +
        func_152641_a in class BanEntry
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/ItemInWorldManager.html b/javadoc/net/minecraft/server/management/ItemInWorldManager.html new file mode 100644 index 0000000..e058c6d --- /dev/null +++ b/javadoc/net/minecraft/server/management/ItemInWorldManager.html @@ -0,0 +1,516 @@ + + + + + +ItemInWorldManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class ItemInWorldManager

+
+
+ +
+
    +
  • +
    +
    Direct Known Subclasses:
    +
    DemoWorldManager
    +
    +
    +
    +
    public class ItemInWorldManager
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ItemInWorldManager

        +
        public ItemInWorldManager(World p_i1524_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + + + + + +
        +
      • +

        isCreative

        +
        public boolean isCreative()
        +
      • +
      + + + + + + + +
        +
      • +

        updateBlockRemoving

        +
        public void updateBlockRemoving()
        +
      • +
      + + + +
        +
      • +

        onBlockClicked

        +
        public void onBlockClicked(int p_73074_1_,
        +                  int p_73074_2_,
        +                  int p_73074_3_,
        +                  int p_73074_4_)
        +
      • +
      + + + +
        +
      • +

        uncheckedTryHarvestBlock

        +
        public void uncheckedTryHarvestBlock(int p_73082_1_,
        +                            int p_73082_2_,
        +                            int p_73082_3_)
        +
      • +
      + + + +
        +
      • +

        cancelDestroyingBlock

        +
        public void cancelDestroyingBlock(int p_73073_1_,
        +                         int p_73073_2_,
        +                         int p_73073_3_)
        +
      • +
      + + + +
        +
      • +

        tryHarvestBlock

        +
        public boolean tryHarvestBlock(int p_73084_1_,
        +                      int p_73084_2_,
        +                      int p_73084_3_)
        +
      • +
      + + + + + + + +
        +
      • +

        activateBlockOrUseItem

        +
        public boolean activateBlockOrUseItem(EntityPlayer p_73078_1_,
        +                             World p_73078_2_,
        +                             ItemStack p_73078_3_,
        +                             int p_73078_4_,
        +                             int p_73078_5_,
        +                             int p_73078_6_,
        +                             int p_73078_7_,
        +                             float p_73078_8_,
        +                             float p_73078_9_,
        +                             float p_73078_10_)
        +
      • +
      + + + +
        +
      • +

        setWorld

        +
        public void setWorld(WorldServer p_73080_1_)
        +
      • +
      + + + +
        +
      • +

        getBlockReachDistance

        +
        public double getBlockReachDistance()
        +
      • +
      + + + +
        +
      • +

        setBlockReachDistance

        +
        public void setBlockReachDistance(double distance)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/LowerStringMap.html b/javadoc/net/minecraft/server/management/LowerStringMap.html new file mode 100644 index 0000000..d7b174f --- /dev/null +++ b/javadoc/net/minecraft/server/management/LowerStringMap.html @@ -0,0 +1,489 @@ + + + + + +LowerStringMap (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class LowerStringMap

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.util.Map
    +
    +
    +
    +
    public class LowerStringMap
    +extends java.lang.Object
    +implements java.util.Map
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      +
        +
      • + + +

        Nested classes/interfaces inherited from interface java.util.Map

        +java.util.Map.Entry<K,V>
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      LowerStringMap() 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidclear() 
      booleancontainsKey(java.lang.Object p_containsKey_1_) 
      booleancontainsValue(java.lang.Object p_containsValue_1_) 
      java.util.SetentrySet() 
      java.lang.Objectget(java.lang.Object p_get_1_) 
      booleanisEmpty() 
      java.util.SetkeySet() 
      java.lang.Objectput(java.lang.Object p_put_1_, + java.lang.Object p_put_2_) 
      java.lang.Objectput(java.lang.String p_put_1_, + java.lang.Object p_put_2_) 
      voidputAll(java.util.Map p_putAll_1_) 
      java.lang.Objectremove(java.lang.Object p_remove_1_) 
      intsize() 
      java.util.Collectionvalues() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
        +
      • + + +

        Methods inherited from interface java.util.Map

        +equals, hashCode
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        LowerStringMap

        +
        public LowerStringMap()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        size

        +
        public int size()
        +
        +
        Specified by:
        +
        size in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        isEmpty

        +
        public boolean isEmpty()
        +
        +
        Specified by:
        +
        isEmpty in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        containsKey

        +
        public boolean containsKey(java.lang.Object p_containsKey_1_)
        +
        +
        Specified by:
        +
        containsKey in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        containsValue

        +
        public boolean containsValue(java.lang.Object p_containsValue_1_)
        +
        +
        Specified by:
        +
        containsValue in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        get

        +
        public java.lang.Object get(java.lang.Object p_get_1_)
        +
        +
        Specified by:
        +
        get in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public java.lang.Object put(java.lang.String p_put_1_,
        +                   java.lang.Object p_put_2_)
        +
      • +
      + + + +
        +
      • +

        remove

        +
        public java.lang.Object remove(java.lang.Object p_remove_1_)
        +
        +
        Specified by:
        +
        remove in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        putAll

        +
        public void putAll(java.util.Map p_putAll_1_)
        +
        +
        Specified by:
        +
        putAll in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        clear

        +
        public void clear()
        +
        +
        Specified by:
        +
        clear in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        keySet

        +
        public java.util.Set keySet()
        +
        +
        Specified by:
        +
        keySet in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        values

        +
        public java.util.Collection values()
        +
        +
        Specified by:
        +
        values in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        entrySet

        +
        public java.util.Set entrySet()
        +
        +
        Specified by:
        +
        entrySet in interface java.util.Map
        +
        +
      • +
      + + + +
        +
      • +

        put

        +
        public java.lang.Object put(java.lang.Object p_put_1_,
        +                   java.lang.Object p_put_2_)
        +
        +
        Specified by:
        +
        put in interface java.util.Map
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/PlayerManager.html b/javadoc/net/minecraft/server/management/PlayerManager.html new file mode 100644 index 0000000..c384722 --- /dev/null +++ b/javadoc/net/minecraft/server/management/PlayerManager.html @@ -0,0 +1,394 @@ + + + + + +PlayerManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class PlayerManager

+
+
+ +
+
    +
  • +
    +
    +
    public class PlayerManager
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerManager

        +
        public PlayerManager(WorldServer p_i1176_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getWorldServer

        +
        public WorldServer getWorldServer()
        +
      • +
      + + + +
        +
      • +

        updatePlayerInstances

        +
        public void updatePlayerInstances()
        +
      • +
      + + + +
        +
      • +

        func_152621_a

        +
        public boolean func_152621_a(int p_152621_1_,
        +                    int p_152621_2_)
        +
      • +
      + + + +
        +
      • +

        markBlockForUpdate

        +
        public void markBlockForUpdate(int p_151250_1_,
        +                      int p_151250_2_,
        +                      int p_151250_3_)
        +
      • +
      + + + +
        +
      • +

        addPlayer

        +
        public void addPlayer(EntityPlayerMP p_72683_1_)
        +
      • +
      + + + +
        +
      • +

        filterChunkLoadQueue

        +
        public void filterChunkLoadQueue(EntityPlayerMP p_72691_1_)
        +
      • +
      + + + +
        +
      • +

        removePlayer

        +
        public void removePlayer(EntityPlayerMP p_72695_1_)
        +
      • +
      + + + +
        +
      • +

        updatePlayerPertinentChunks

        +
        public void updatePlayerPertinentChunks(EntityPlayerMP p_72685_1_)
        +
      • +
      + + + +
        +
      • +

        isPlayerWatchingChunk

        +
        public boolean isPlayerWatchingChunk(EntityPlayerMP p_72694_1_,
        +                            int p_72694_2_,
        +                            int p_72694_3_)
        +
      • +
      + + + +
        +
      • +

        func_152622_a

        +
        public void func_152622_a(int p_152622_1_)
        +
      • +
      + + + +
        +
      • +

        getFurthestViewableBlock

        +
        public static int getFurthestViewableBlock(int p_72686_0_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/PlayerPositionComparator.html b/javadoc/net/minecraft/server/management/PlayerPositionComparator.html new file mode 100644 index 0000000..ed09819 --- /dev/null +++ b/javadoc/net/minecraft/server/management/PlayerPositionComparator.html @@ -0,0 +1,287 @@ + + + + + +PlayerPositionComparator (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class PlayerPositionComparator

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.util.Comparator
    +
    +
    +
    +
    public class PlayerPositionComparator
    +extends java.lang.Object
    +implements java.util.Comparator
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      intcompare(EntityPlayerMP p_compare_1_, + EntityPlayerMP p_compare_2_) 
      intcompare(java.lang.Object p_compare_1_, + java.lang.Object p_compare_2_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
        +
      • + + +

        Methods inherited from interface java.util.Comparator

        +equals
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerPositionComparator

        +
        public PlayerPositionComparator(ChunkCoordinates p_i1499_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        compare

        +
        public int compare(java.lang.Object p_compare_1_,
        +          java.lang.Object p_compare_2_)
        +
        +
        Specified by:
        +
        compare in interface java.util.Comparator
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/PlayerProfileCache.html b/javadoc/net/minecraft/server/management/PlayerProfileCache.html new file mode 100644 index 0000000..e00d731 --- /dev/null +++ b/javadoc/net/minecraft/server/management/PlayerProfileCache.html @@ -0,0 +1,370 @@ + + + + + +PlayerProfileCache (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class PlayerProfileCache

+
+
+ +
+
    +
  • +
    +
    +
    public class PlayerProfileCache
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.text.SimpleDateFormatfield_152659_a 
      protected com.google.gson.Gsonfield_152660_b 
      +
    • +
    + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidfunc_152649_a(com.mojang.authlib.GameProfile p_152649_1_) 
      com.mojang.authlib.GameProfilefunc_152652_a(java.util.UUID p_152652_1_) 
      java.lang.String[]func_152654_a() 
      com.mojang.authlib.GameProfilefunc_152655_a(java.lang.String p_152655_1_) 
      voidfunc_152657_b() 
      voidfunc_152658_c() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        field_152659_a

        +
        public static final java.text.SimpleDateFormat field_152659_a
        +
      • +
      + + + +
        +
      • +

        field_152660_b

        +
        protected final com.google.gson.Gson field_152660_b
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PlayerProfileCache

        +
        public PlayerProfileCache(MinecraftServer p_i1171_1_,
        +                  java.io.File p_i1171_2_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152649_a

        +
        public void func_152649_a(com.mojang.authlib.GameProfile p_152649_1_)
        +
      • +
      + + + +
        +
      • +

        func_152655_a

        +
        public com.mojang.authlib.GameProfile func_152655_a(java.lang.String p_152655_1_)
        +
      • +
      + + + +
        +
      • +

        func_152654_a

        +
        public java.lang.String[] func_152654_a()
        +
      • +
      + + + +
        +
      • +

        func_152652_a

        +
        public com.mojang.authlib.GameProfile func_152652_a(java.util.UUID p_152652_1_)
        +
      • +
      + + + +
        +
      • +

        func_152657_b

        +
        public void func_152657_b()
        +
      • +
      + + + +
        +
      • +

        func_152658_c

        +
        public void func_152658_c()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/PreYggdrasilConverter.html b/javadoc/net/minecraft/server/management/PreYggdrasilConverter.html new file mode 100644 index 0000000..259e54e --- /dev/null +++ b/javadoc/net/minecraft/server/management/PreYggdrasilConverter.html @@ -0,0 +1,421 @@ + + + + + +PreYggdrasilConverter (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class PreYggdrasilConverter

+
+
+ +
+
    +
  • +
    +
    +
    public class PreYggdrasilConverter
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        field_152728_a

        +
        public static final java.io.File field_152728_a
        +
      • +
      + + + +
        +
      • +

        field_152729_b

        +
        public static final java.io.File field_152729_b
        +
      • +
      + + + +
        +
      • +

        field_152730_c

        +
        public static final java.io.File field_152730_c
        +
      • +
      + + + +
        +
      • +

        field_152731_d

        +
        public static final java.io.File field_152731_d
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PreYggdrasilConverter

        +
        public PreYggdrasilConverter()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152719_a

        +
        public static java.lang.String func_152719_a(java.lang.String p_152719_0_)
        +
      • +
      + + + +
        +
      • +

        func_152724_a

        +
        public static boolean func_152724_a(MinecraftServer p_152724_0_)
        +                             throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        func_152722_b

        +
        public static boolean func_152722_b(MinecraftServer p_152722_0_)
        +                             throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        func_152718_c

        +
        public static boolean func_152718_c(MinecraftServer p_152718_0_)
        +                             throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        func_152710_d

        +
        public static boolean func_152710_d(MinecraftServer p_152710_0_)
        +                             throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + + + + + +
        +
      • +

        func_152714_a

        +
        public static boolean func_152714_a(PropertyManager p_152714_0_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/ServerConfigurationManager.html b/javadoc/net/minecraft/server/management/ServerConfigurationManager.html new file mode 100644 index 0000000..57d6788 --- /dev/null +++ b/javadoc/net/minecraft/server/management/ServerConfigurationManager.html @@ -0,0 +1,1195 @@ + + + + + +ServerConfigurationManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class ServerConfigurationManager

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        field_152613_a

        +
        public static final java.io.File field_152613_a
        +
      • +
      + + + +
        +
      • +

        field_152614_b

        +
        public static final java.io.File field_152614_b
        +
      • +
      + + + +
        +
      • +

        field_152615_c

        +
        public static final java.io.File field_152615_c
        +
      • +
      + + + +
        +
      • +

        field_152616_d

        +
        public static final java.io.File field_152616_d
        +
      • +
      + + + +
        +
      • +

        playerEntityList

        +
        public final java.util.List playerEntityList
        +
      • +
      + + + +
        +
      • +

        maxPlayers

        +
        protected int maxPlayers
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        ServerConfigurationManager

        +
        public ServerConfigurationManager(MinecraftServer p_i1500_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + + + + + +
        +
      • +

        setPlayerManager

        +
        public void setPlayerManager(WorldServer[] p_72364_1_)
        +
      • +
      + + + + + + + +
        +
      • +

        getEntityViewDistance

        +
        public int getEntityViewDistance()
        +
      • +
      + + + + + + + +
        +
      • +

        writePlayerData

        +
        protected void writePlayerData(EntityPlayerMP p_72391_1_)
        +
      • +
      + + + +
        +
      • +

        playerLoggedIn

        +
        public void playerLoggedIn(EntityPlayerMP p_72377_1_)
        +
      • +
      + + + +
        +
      • +

        updatePlayerPertinentChunks

        +
        public void updatePlayerPertinentChunks(EntityPlayerMP p_72358_1_)
        +
      • +
      + + + +
        +
      • +

        playerLoggedOut

        +
        public void playerLoggedOut(EntityPlayerMP p_72367_1_)
        +
      • +
      + + + +
        +
      • +

        allowUserToConnect

        +
        public java.lang.String allowUserToConnect(java.net.SocketAddress p_148542_1_,
        +                                  com.mojang.authlib.GameProfile p_148542_2_)
        +
      • +
      + + + +
        +
      • +

        createPlayerForUser

        +
        public EntityPlayerMP createPlayerForUser(com.mojang.authlib.GameProfile p_148545_1_)
        +
      • +
      + + + + + + + +
        +
      • +

        transferPlayerToDimension

        +
        public void transferPlayerToDimension(EntityPlayerMP p_72356_1_,
        +                             int p_72356_2_)
        +
      • +
      + + + +
        +
      • +

        transferPlayerToDimension

        +
        public void transferPlayerToDimension(EntityPlayerMP p_72356_1_,
        +                             int p_72356_2_,
        +                             Teleporter teleporter)
        +
      • +
      + + + +
        +
      • +

        transferEntityToWorld

        +
        public void transferEntityToWorld(Entity p_82448_1_,
        +                         int p_82448_2_,
        +                         WorldServer p_82448_3_,
        +                         WorldServer p_82448_4_)
        +
      • +
      + + + + + + + +
        +
      • +

        sendPlayerInfoToAllPlayers

        +
        public void sendPlayerInfoToAllPlayers()
        +
      • +
      + + + +
        +
      • +

        sendPacketToAllPlayers

        +
        public void sendPacketToAllPlayers(Packet p_148540_1_)
        +
      • +
      + + + +
        +
      • +

        sendPacketToAllPlayersInDimension

        +
        public void sendPacketToAllPlayersInDimension(Packet p_148537_1_,
        +                                     int p_148537_2_)
        +
      • +
      + + + +
        +
      • +

        func_152609_b

        +
        public java.lang.String func_152609_b(boolean p_152609_1_)
        +
      • +
      + + + +
        +
      • +

        getAllUsernames

        +
        public java.lang.String[] getAllUsernames()
        +
      • +
      + + + +
        +
      • +

        func_152600_g

        +
        public com.mojang.authlib.GameProfile[] func_152600_g()
        +
      • +
      + + + +
        +
      • +

        func_152608_h

        +
        public UserListBans func_152608_h()
        +
      • +
      + + + +
        +
      • +

        getBannedIPs

        +
        public BanList getBannedIPs()
        +
      • +
      + + + +
        +
      • +

        func_152605_a

        +
        public void func_152605_a(com.mojang.authlib.GameProfile p_152605_1_)
        +
      • +
      + + + +
        +
      • +

        func_152610_b

        +
        public void func_152610_b(com.mojang.authlib.GameProfile p_152610_1_)
        +
      • +
      + + + +
        +
      • +

        func_152607_e

        +
        public boolean func_152607_e(com.mojang.authlib.GameProfile p_152607_1_)
        +
      • +
      + + + +
        +
      • +

        func_152596_g

        +
        public boolean func_152596_g(com.mojang.authlib.GameProfile p_152596_1_)
        +
      • +
      + + + +
        +
      • +

        func_152612_a

        +
        public EntityPlayerMP func_152612_a(java.lang.String p_152612_1_)
        +
      • +
      + + + +
        +
      • +

        findPlayers

        +
        public java.util.List findPlayers(ChunkCoordinates p_82449_1_,
        +                         int p_82449_2_,
        +                         int p_82449_3_,
        +                         int p_82449_4_,
        +                         int p_82449_5_,
        +                         int p_82449_6_,
        +                         int p_82449_7_,
        +                         java.util.Map p_82449_8_,
        +                         java.lang.String p_82449_9_,
        +                         java.lang.String p_82449_10_,
        +                         World p_82449_11_)
        +
      • +
      + + + +
        +
      • +

        sendToAllNear

        +
        public void sendToAllNear(double p_148541_1_,
        +                 double p_148541_3_,
        +                 double p_148541_5_,
        +                 double p_148541_7_,
        +                 int p_148541_9_,
        +                 Packet p_148541_10_)
        +
      • +
      + + + +
        +
      • +

        sendToAllNearExcept

        +
        public void sendToAllNearExcept(EntityPlayer p_148543_1_,
        +                       double p_148543_2_,
        +                       double p_148543_4_,
        +                       double p_148543_6_,
        +                       double p_148543_8_,
        +                       int p_148543_10_,
        +                       Packet p_148543_11_)
        +
      • +
      + + + +
        +
      • +

        saveAllPlayerData

        +
        public void saveAllPlayerData()
        +
      • +
      + + + +
        +
      • +

        func_152601_d

        +
        public void func_152601_d(com.mojang.authlib.GameProfile p_152601_1_)
        +
      • +
      + + + +
        +
      • +

        func_152597_c

        +
        public void func_152597_c(com.mojang.authlib.GameProfile p_152597_1_)
        +
      • +
      + + + + + + + +
        +
      • +

        func_152598_l

        +
        public java.lang.String[] func_152598_l()
        +
      • +
      + + + +
        +
      • +

        func_152603_m

        +
        public UserListOps func_152603_m()
        +
      • +
      + + + +
        +
      • +

        func_152606_n

        +
        public java.lang.String[] func_152606_n()
        +
      • +
      + + + +
        +
      • +

        loadWhiteList

        +
        public void loadWhiteList()
        +
      • +
      + + + +
        +
      • +

        updateTimeAndWeatherForPlayer

        +
        public void updateTimeAndWeatherForPlayer(EntityPlayerMP p_72354_1_,
        +                                 WorldServer p_72354_2_)
        +
      • +
      + + + +
        +
      • +

        syncPlayerInventory

        +
        public void syncPlayerInventory(EntityPlayerMP p_72385_1_)
        +
      • +
      + + + +
        +
      • +

        getCurrentPlayerCount

        +
        public int getCurrentPlayerCount()
        +
      • +
      + + + +
        +
      • +

        getMaxPlayers

        +
        public int getMaxPlayers()
        +
      • +
      + + + +
        +
      • +

        getAvailablePlayerDat

        +
        public java.lang.String[] getAvailablePlayerDat()
        +
      • +
      + + + +
        +
      • +

        setWhiteListEnabled

        +
        public void setWhiteListEnabled(boolean p_72371_1_)
        +
      • +
      + + + +
        +
      • +

        getPlayerList

        +
        public java.util.List getPlayerList(java.lang.String p_72382_1_)
        +
      • +
      + + + +
        +
      • +

        getViewDistance

        +
        public int getViewDistance()
        +
      • +
      + + + + + + + +
        +
      • +

        getHostPlayerData

        +
        public NBTTagCompound getHostPlayerData()
        +
      • +
      + + + + + + + +
        +
      • +

        setCommandsAllowedForAll

        +
        public void setCommandsAllowedForAll(boolean p_72387_1_)
        +
      • +
      + + + +
        +
      • +

        removeAllPlayers

        +
        public void removeAllPlayers()
        +
      • +
      + + + +
        +
      • +

        sendChatMsgImpl

        +
        public void sendChatMsgImpl(IChatComponent p_148544_1_,
        +                   boolean p_148544_2_)
        +
      • +
      + + + +
        +
      • +

        sendChatMsg

        +
        public void sendChatMsg(IChatComponent p_148539_1_)
        +
      • +
      + + + + + + + +
        +
      • +

        func_152611_a

        +
        public void func_152611_a(int p_152611_1_)
        +
      • +
      + + + +
        +
      • +

        isWhiteListEnabled

        +
        public boolean isWhiteListEnabled()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/UserList.html b/javadoc/net/minecraft/server/management/UserList.html new file mode 100644 index 0000000..aa8fcb6 --- /dev/null +++ b/javadoc/net/minecraft/server/management/UserList.html @@ -0,0 +1,482 @@ + + + + + +UserList (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class UserList

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        field_152693_a

        +
        protected static final org.apache.logging.log4j.Logger field_152693_a
        +
      • +
      + + + +
        +
      • +

        field_152694_b

        +
        protected final com.google.gson.Gson field_152694_b
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UserList

        +
        public UserList(java.io.File p_i1144_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152689_b

        +
        public boolean func_152689_b()
        +
      • +
      + + + +
        +
      • +

        func_152686_a

        +
        public void func_152686_a(boolean p_152686_1_)
        +
      • +
      + + + +
        +
      • +

        func_152687_a

        +
        public void func_152687_a(UserListEntry p_152687_1_)
        +
      • +
      + + + +
        +
      • +

        func_152683_b

        +
        public UserListEntry func_152683_b(java.lang.Object p_152683_1_)
        +
      • +
      + + + +
        +
      • +

        func_152684_c

        +
        public void func_152684_c(java.lang.Object p_152684_1_)
        +
      • +
      + + + +
        +
      • +

        func_152691_c

        +
        public java.io.File func_152691_c()
        +
      • +
      + + + +
        +
      • +

        func_152685_a

        +
        public java.lang.String[] func_152685_a()
        +
      • +
      + + + +
        +
      • +

        func_152681_a

        +
        protected java.lang.String func_152681_a(java.lang.Object p_152681_1_)
        +
      • +
      + + + +
        +
      • +

        func_152692_d

        +
        protected boolean func_152692_d(java.lang.Object p_152692_1_)
        +
      • +
      + + + +
        +
      • +

        func_152682_a

        +
        protected UserListEntry func_152682_a(com.google.gson.JsonObject p_152682_1_)
        +
      • +
      + + + +
        +
      • +

        func_152688_e

        +
        protected java.util.Map func_152688_e()
        +
      • +
      + + + +
        +
      • +

        func_152678_f

        +
        public void func_152678_f()
        +                   throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      + + + +
        +
      • +

        func_152690_d

        +
        public boolean func_152690_d()
        +
      • +
      + + + +
        +
      • +

        func_152679_g

        +
        public void func_152679_g()
        +                   throws java.io.IOException
        +
        Throws:
        +
        java.io.IOException
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/UserListBans.html b/javadoc/net/minecraft/server/management/UserListBans.html new file mode 100644 index 0000000..0309a95 --- /dev/null +++ b/javadoc/net/minecraft/server/management/UserListBans.html @@ -0,0 +1,358 @@ + + + + + +UserListBans (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class UserListBans

+
+
+ +
+
    +
  • +
    +
    +
    public class UserListBans
    +extends UserList
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UserListBans

        +
        public UserListBans(java.io.File p_i1138_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        func_152702_a

        +
        public boolean func_152702_a(com.mojang.authlib.GameProfile p_152702_1_)
        +
      • +
      + + + +
        +
      • +

        func_152685_a

        +
        public java.lang.String[] func_152685_a()
        +
        +
        Overrides:
        +
        func_152685_a in class UserList
        +
        +
      • +
      + + + +
        +
      • +

        func_152701_b

        +
        protected java.lang.String func_152701_b(com.mojang.authlib.GameProfile p_152701_1_)
        +
      • +
      + + + +
        +
      • +

        func_152703_a

        +
        public com.mojang.authlib.GameProfile func_152703_a(java.lang.String p_152703_1_)
        +
      • +
      + + + +
        +
      • +

        func_152681_a

        +
        protected java.lang.String func_152681_a(java.lang.Object p_152681_1_)
        +
        +
        Overrides:
        +
        func_152681_a in class UserList
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/UserListBansEntry.html b/javadoc/net/minecraft/server/management/UserListBansEntry.html new file mode 100644 index 0000000..aa63c50 --- /dev/null +++ b/javadoc/net/minecraft/server/management/UserListBansEntry.html @@ -0,0 +1,322 @@ + + + + + +UserListBansEntry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class UserListBansEntry

+
+
+ +
+
    +
  • +
    +
    +
    public class UserListBansEntry
    +extends BanEntry
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      UserListBansEntry(com.mojang.authlib.GameProfile p_i1134_1_) 
      UserListBansEntry(com.mojang.authlib.GameProfile p_i1135_1_, + java.util.Date p_i1135_2_, + java.lang.String p_i1135_3_, + java.util.Date p_i1135_4_, + java.lang.String p_i1135_5_) 
      UserListBansEntry(com.google.gson.JsonObject p_i1136_1_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      protected voidfunc_152641_a(com.google.gson.JsonObject p_152641_1_) 
      + +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UserListBansEntry

        +
        public UserListBansEntry(com.mojang.authlib.GameProfile p_i1134_1_)
        +
      • +
      + + + +
        +
      • +

        UserListBansEntry

        +
        public UserListBansEntry(com.mojang.authlib.GameProfile p_i1135_1_,
        +                 java.util.Date p_i1135_2_,
        +                 java.lang.String p_i1135_3_,
        +                 java.util.Date p_i1135_4_,
        +                 java.lang.String p_i1135_5_)
        +
      • +
      + + + +
        +
      • +

        UserListBansEntry

        +
        public UserListBansEntry(com.google.gson.JsonObject p_i1136_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152641_a

        +
        protected void func_152641_a(com.google.gson.JsonObject p_152641_1_)
        +
        +
        Overrides:
        +
        func_152641_a in class BanEntry
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/UserListEntry.html b/javadoc/net/minecraft/server/management/UserListEntry.html new file mode 100644 index 0000000..36cca9b --- /dev/null +++ b/javadoc/net/minecraft/server/management/UserListEntry.html @@ -0,0 +1,275 @@ + + + + + +UserListEntry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class UserListEntry

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + + + + + +
      Constructors 
      ModifierConstructor and Description
       UserListEntry(java.lang.Object p_i1146_1_) 
      protected UserListEntry(java.lang.Object p_i1147_1_, + com.google.gson.JsonObject p_i1147_2_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      protected voidfunc_152641_a(com.google.gson.JsonObject p_152641_1_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UserListEntry

        +
        public UserListEntry(java.lang.Object p_i1146_1_)
        +
      • +
      + + + +
        +
      • +

        UserListEntry

        +
        protected UserListEntry(java.lang.Object p_i1147_1_,
        +             com.google.gson.JsonObject p_i1147_2_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152641_a

        +
        protected void func_152641_a(com.google.gson.JsonObject p_152641_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/UserListOps.html b/javadoc/net/minecraft/server/management/UserListOps.html new file mode 100644 index 0000000..4826976 --- /dev/null +++ b/javadoc/net/minecraft/server/management/UserListOps.html @@ -0,0 +1,345 @@ + + + + + +UserListOps (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class UserListOps

+
+
+ +
+
    +
  • +
    +
    +
    public class UserListOps
    +extends UserList
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UserListOps

        +
        public UserListOps(java.io.File p_i1152_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        func_152685_a

        +
        public java.lang.String[] func_152685_a()
        +
        +
        Overrides:
        +
        func_152685_a in class UserList
        +
        +
      • +
      + + + +
        +
      • +

        func_152699_b

        +
        protected java.lang.String func_152699_b(com.mojang.authlib.GameProfile p_152699_1_)
        +
      • +
      + + + +
        +
      • +

        func_152700_a

        +
        public com.mojang.authlib.GameProfile func_152700_a(java.lang.String p_152700_1_)
        +
      • +
      + + + +
        +
      • +

        func_152681_a

        +
        protected java.lang.String func_152681_a(java.lang.Object p_152681_1_)
        +
        +
        Overrides:
        +
        func_152681_a in class UserList
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/UserListOpsEntry.html b/javadoc/net/minecraft/server/management/UserListOpsEntry.html new file mode 100644 index 0000000..8809140 --- /dev/null +++ b/javadoc/net/minecraft/server/management/UserListOpsEntry.html @@ -0,0 +1,290 @@ + + + + + +UserListOpsEntry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class UserListOpsEntry

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + + + + +
      Constructors 
      Constructor and Description
      UserListOpsEntry(com.mojang.authlib.GameProfile p_i1149_1_, + int p_i1149_2_) 
      UserListOpsEntry(com.google.gson.JsonObject p_i1150_1_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      protected voidfunc_152641_a(com.google.gson.JsonObject p_152641_1_) 
      intfunc_152644_a() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UserListOpsEntry

        +
        public UserListOpsEntry(com.mojang.authlib.GameProfile p_i1149_1_,
        +                int p_i1149_2_)
        +
      • +
      + + + +
        +
      • +

        UserListOpsEntry

        +
        public UserListOpsEntry(com.google.gson.JsonObject p_i1150_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152644_a

        +
        public int func_152644_a()
        +
      • +
      + + + +
        +
      • +

        func_152641_a

        +
        protected void func_152641_a(com.google.gson.JsonObject p_152641_1_)
        +
        +
        Overrides:
        +
        func_152641_a in class UserListEntry
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/UserListWhitelist.html b/javadoc/net/minecraft/server/management/UserListWhitelist.html new file mode 100644 index 0000000..7647e44 --- /dev/null +++ b/javadoc/net/minecraft/server/management/UserListWhitelist.html @@ -0,0 +1,358 @@ + + + + + +UserListWhitelist (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class UserListWhitelist

+
+
+ +
+
    +
  • +
    +
    +
    public class UserListWhitelist
    +extends UserList
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UserListWhitelist

        +
        public UserListWhitelist(java.io.File p_i1132_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        func_152685_a

        +
        public java.lang.String[] func_152685_a()
        +
        +
        Overrides:
        +
        func_152685_a in class UserList
        +
        +
      • +
      + + + +
        +
      • +

        func_152705_a

        +
        public boolean func_152705_a(com.mojang.authlib.GameProfile p_152705_1_)
        +
      • +
      + + + +
        +
      • +

        func_152704_b

        +
        protected java.lang.String func_152704_b(com.mojang.authlib.GameProfile p_152704_1_)
        +
      • +
      + + + +
        +
      • +

        func_152706_a

        +
        public com.mojang.authlib.GameProfile func_152706_a(java.lang.String p_152706_1_)
        +
      • +
      + + + +
        +
      • +

        func_152681_a

        +
        protected java.lang.String func_152681_a(java.lang.Object p_152681_1_)
        +
        +
        Overrides:
        +
        func_152681_a in class UserList
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/UserListWhitelistEntry.html b/javadoc/net/minecraft/server/management/UserListWhitelistEntry.html new file mode 100644 index 0000000..283f212 --- /dev/null +++ b/javadoc/net/minecraft/server/management/UserListWhitelistEntry.html @@ -0,0 +1,275 @@ + + + + + +UserListWhitelistEntry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.management
+

Class UserListWhitelistEntry

+
+
+ +
+
    +
  • +
    +
    +
    public class UserListWhitelistEntry
    +extends UserListEntry
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      protected voidfunc_152641_a(com.google.gson.JsonObject p_152641_1_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        UserListWhitelistEntry

        +
        public UserListWhitelistEntry(com.mojang.authlib.GameProfile p_i1129_1_)
        +
      • +
      + + + +
        +
      • +

        UserListWhitelistEntry

        +
        public UserListWhitelistEntry(com.google.gson.JsonObject p_i1130_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_152641_a

        +
        protected void func_152641_a(com.google.gson.JsonObject p_152641_1_)
        +
        +
        Overrides:
        +
        func_152641_a in class UserListEntry
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/package-frame.html b/javadoc/net/minecraft/server/management/package-frame.html new file mode 100644 index 0000000..1f52189 --- /dev/null +++ b/javadoc/net/minecraft/server/management/package-frame.html @@ -0,0 +1,36 @@ + + + + + +net.minecraft.server.management (Forge API) + + + + +

net.minecraft.server.management

+
+

Classes

+ +
+ + diff --git a/javadoc/net/minecraft/server/management/package-summary.html b/javadoc/net/minecraft/server/management/package-summary.html new file mode 100644 index 0000000..e973ec9 --- /dev/null +++ b/javadoc/net/minecraft/server/management/package-summary.html @@ -0,0 +1,199 @@ + + + + + +net.minecraft.server.management (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.server.management

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/management/package-tree.html b/javadoc/net/minecraft/server/management/package-tree.html new file mode 100644 index 0000000..e61e24f --- /dev/null +++ b/javadoc/net/minecraft/server/management/package-tree.html @@ -0,0 +1,152 @@ + + + + + +net.minecraft.server.management Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.server.management

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/network/NetHandlerHandshakeTCP.html b/javadoc/net/minecraft/server/network/NetHandlerHandshakeTCP.html new file mode 100644 index 0000000..65c2364 --- /dev/null +++ b/javadoc/net/minecraft/server/network/NetHandlerHandshakeTCP.html @@ -0,0 +1,318 @@ + + + + + +NetHandlerHandshakeTCP (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.network
+

Class NetHandlerHandshakeTCP

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/network/NetHandlerLoginServer.html b/javadoc/net/minecraft/server/network/NetHandlerLoginServer.html new file mode 100644 index 0000000..05c5e7f --- /dev/null +++ b/javadoc/net/minecraft/server/network/NetHandlerLoginServer.html @@ -0,0 +1,423 @@ + + + + + +NetHandlerLoginServer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.network
+

Class NetHandlerLoginServer

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/network/NetHandlerStatusServer.html b/javadoc/net/minecraft/server/network/NetHandlerStatusServer.html new file mode 100644 index 0000000..7efd47d --- /dev/null +++ b/javadoc/net/minecraft/server/network/NetHandlerStatusServer.html @@ -0,0 +1,335 @@ + + + + + +NetHandlerStatusServer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.server.network
+

Class NetHandlerStatusServer

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/network/package-frame.html b/javadoc/net/minecraft/server/network/package-frame.html new file mode 100644 index 0000000..b1cb4de --- /dev/null +++ b/javadoc/net/minecraft/server/network/package-frame.html @@ -0,0 +1,21 @@ + + + + + +net.minecraft.server.network (Forge API) + + + + +

net.minecraft.server.network

+
+

Classes

+ +
+ + diff --git a/javadoc/net/minecraft/server/network/package-summary.html b/javadoc/net/minecraft/server/network/package-summary.html new file mode 100644 index 0000000..981afb6 --- /dev/null +++ b/javadoc/net/minecraft/server/network/package-summary.html @@ -0,0 +1,139 @@ + + + + + +net.minecraft.server.network (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.server.network

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/network/package-tree.html b/javadoc/net/minecraft/server/network/package-tree.html new file mode 100644 index 0000000..38de517 --- /dev/null +++ b/javadoc/net/minecraft/server/network/package-tree.html @@ -0,0 +1,128 @@ + + + + + +net.minecraft.server.network Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.server.network

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/package-frame.html b/javadoc/net/minecraft/server/package-frame.html new file mode 100644 index 0000000..c71db16 --- /dev/null +++ b/javadoc/net/minecraft/server/package-frame.html @@ -0,0 +1,20 @@ + + + + + +net.minecraft.server (Forge API) + + + + +

net.minecraft.server

+
+

Classes

+ +
+ + diff --git a/javadoc/net/minecraft/server/package-summary.html b/javadoc/net/minecraft/server/package-summary.html new file mode 100644 index 0000000..44f22db --- /dev/null +++ b/javadoc/net/minecraft/server/package-summary.html @@ -0,0 +1,135 @@ + + + + + +net.minecraft.server (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.server

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/server/package-tree.html b/javadoc/net/minecraft/server/package-tree.html new file mode 100644 index 0000000..34641c5 --- /dev/null +++ b/javadoc/net/minecraft/server/package-tree.html @@ -0,0 +1,127 @@ + + + + + +net.minecraft.server Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.server

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + -- cgit v1.2.3