Skip to content

Commit

Permalink
Enhance the java doc of dubbo-container module (#3437)
Browse files Browse the repository at this point in the history
Fixes #2994
  • Loading branch information
dreamer-nitj authored and beiwei30 committed Feb 11, 2019
1 parent b2901f5 commit e9e176b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
public interface Container {

/**
* start.
* start method to load the container.
*/
void start();

/**
* stop.
* stop method to unload the container.
*/
void stop();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@

/**
* Main. (API, Static, ThreadSafe)
*
* This class is entry point loading containers.
*/
public class Main {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@

/**
* Log4jContainer. (SPI, Singleton, ThreadSafe)
*
* The container class implementation for Log4j
*/
public class Log4jContainer implements Container {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@

/**
* LogbackContainer. (SPI, Singleton, ThreadSafe)
*
* The container class implementation for Logback
*/
public class LogbackContainer implements Container {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@

/**
* SpringContainer. (SPI, Singleton, ThreadSafe)
*
* The container class implementation for Spring
*/
public class SpringContainer implements Container {

Expand Down

0 comments on commit e9e176b

Please sign in to comment.