Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Dubbo-Container] Fix Enhance the java doc of dubbo-container module #3437

Merged
merged 1 commit into from
Feb 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
beiwei30 marked this conversation as resolved.
Show resolved Hide resolved
*/
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