2010-12-21 15:32:27 +00:00
|
|
|
|
|
|
|
package org.bukkit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a server implementation
|
|
|
|
*/
|
|
|
|
public interface Server {
|
|
|
|
/**
|
|
|
|
* Gets the name of this server implementation
|
|
|
|
*
|
|
|
|
* @return name of this server implementation
|
|
|
|
*/
|
|
|
|
public String getName();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the version string of this server implementation.
|
|
|
|
*
|
|
|
|
* @return version of this server implementation
|
|
|
|
*/
|
|
|
|
public String getVersion();
|
2010-12-22 15:21:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets a list of all currently logged in players
|
|
|
|
*
|
|
|
|
* @return An array of Players that are currently online
|
|
|
|
*/
|
|
|
|
public Player[] getOnlinePlayers();
|
2010-12-21 15:32:27 +00:00
|
|
|
}
|