mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-06 16:51:37 +00:00
Improve comments.
This commit is contained in:
@@ -10,24 +10,24 @@ public abstract class Service {
|
|||||||
/**
|
/**
|
||||||
* The server context.
|
* The server context.
|
||||||
*/
|
*/
|
||||||
private ServerContext ctx;
|
private ServerContext context;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the server context.
|
* Gets the {@link ServerContext}.
|
||||||
*
|
*
|
||||||
* @return The context.
|
* @return The context.
|
||||||
*/
|
*/
|
||||||
public final ServerContext getContext() {
|
public final ServerContext getContext() {
|
||||||
return ctx;
|
return context;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the server context.
|
* Sets the {@link ServerContext}.
|
||||||
*
|
*
|
||||||
* @param ctx The context.
|
* @param context The context.
|
||||||
*/
|
*/
|
||||||
public final void setContext(ServerContext ctx) {
|
public final void setContext(ServerContext context) {
|
||||||
this.ctx = ctx;
|
this.context = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user