001package com.ericlam.mc.eldgui.component.factory; 002 003import com.ericlam.mc.eldgui.component.ComponentFactory; 004 005/** 006 * 按鈕的組件工廠 007 */ 008public interface ButtonFactory extends ComponentFactory<ButtonFactory> { 009 010 /** 011 * 012 * @param title 標題 013 * @return this 014 */ 015 ButtonFactory title(String title); 016 017 /** 018 * 019 * @param lore 敘述 020 * @return this 021 */ 022 ButtonFactory lore(String... lore); 023 024 025}