Class ShopSign

java.lang.Object
com.vk2gpz.autosell.object.ShopSign

public class ShopSign extends Object
This class represents a shop sign in the AutoSell plugin. It contains the location of the sign and the name of the shop.
  • Constructor Details

    • ShopSign

      public ShopSign(String signLocation, String shopName)
      Constructor to initialize the ShopSign object with sign location and shop name.
      Parameters:
      signLocation - The location of the sign in the format "x,y,z,world".
      shopName - The name of the shop associated with the sign.
    • ShopSign

      public ShopSign(org.bukkit.Location location, String shopName)
      Constructor to initialize the ShopSign object with a Location object and shop name.
      Parameters:
      location - The location of the sign as a Location object.
      shopName - The name of the shop associated with the sign.
  • Method Details

    • getShopName

      public String getShopName()
    • setShopName

      public void setShopName(String shopName)
    • getSignLocation

      public String getSignLocation()
    • setSignLocation

      public void setSignLocation(String signLocation)
    • getShop

      public Shop getShop()