Some examples in java
@Component
public class BaseHandler implements MessageHandler {
private final ShowInventory showInventory;
private final ShowPlayerInfo showPlayerInfo;
@Autowired
public BaseHandler(ShowInventory showInventory, ShowPlayerInfo showPlayerInfo) {
this.showInventory = showInventory;
this.showPlayerInfo = showPlayerInfo;
}
}
Некий текст