Package jNab.core.misc

Examples of jNab.core.misc.SerFileNameFilter


     * @param burrow the burrow where to store bunnies.
     * @param pluginFactory the pulign factory used to create plugins.
     */
    public void loadBunnies(Burrow burrow, PluginFactory pluginFactory)
    {
  for (File f : new File(this.serializedFilesPath, "bunnies").listFiles(new SerFileNameFilter()))
  {
      try
      {
    FileInputStream fis = new FileInputStream(f);
    Bunny bunny = this.readBunnyFromInputStream(fis, pluginFactory);
View Full Code Here

TOP

Related Classes of jNab.core.misc.SerFileNameFilter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.