The SmartUI API makes your UI smart
Here is SmartUI
The SmartUI API makes it possible to build GUIs or inventories in a very simple and straightforward way.
It also greatly simplifies creating and adding ItemStacks and inventories, making the workflow simpler and easier than ever before.
With the API, existing Bukkit ItemStacks can also be converted to SmartItems and backwards, so that later use of the API does not cause any after-effects or side effects.
Examples
To show how simple and structured the use of the SmartUI API is in contrast to the BukkitAPI, some examples are shown here.
Simple Inventory
Extremely simple inventory
Fusion with Bukkit-Inventory
Fusion with Bukkit-Itemstack
Create an Item
SmartItem item = new SmartItem().name("An Item").type(Material.CAKE);
Create an Inventory
SmartInventory inventory = new SmartInventory();
Apply the Item to the Inventory
inventory.place(12, item);
That's all there is to it! Incredibly fast and easy!