[Util] Custom YAML files made easy

Discussion in 'Resources' started by StaticE, May 4, 2013.

Thread Status:
Not open for further replies.
  1. Offline

    StaticE

    Custom YAML File Utility

    So I looked around a little bit and couldn't find any utility classes out there that make working with custom configuration files easier, so I figured I'd make a handy little class that you can use for your plugins.

    This is basically a class that has a bunch of necessary methods for creating and working with custom configuration files. There is a good amount of detail on the github page and written in comments in the class its self on how to use this utilities methods correctly.

    GitHub project/repository:
    https://github.com/SEPlugins/Custom-YML-File-Utility

    The Class:
    https://github.com/SEPlugins/Custom-YML-File-Utility/blob/master/CustomYML.java

    Simple Example Plugin:
    https://github.com/SEPlugins/Custom-YML-File-Utility/blob/master/MainClass.java

    I tested it out in multiple ways, so it should work fine. Just read through the ReadMe on the github page before you mess around with it ;).
     
  2. Offline

    HackintoshMan

    SE Plugins Looks well put together, I may have to try this out!
     
  3. Looks good, but I have a little suggestion...
    Code:
    public static MainClass plugin;
        public CustomYML(MainClass plugin){
            CustomYML.plugin = plugin;
        }
    You should replace MainClass with JavaPlugin, than it is compatible with almost every plugin :)
     
  4. Offline

    SkriptDesign

    Works nice! But i will create my third yml file with this. how to di this?
     
Thread Status:
Not open for further replies.

Share This Page