PageRenderTime 46ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-2-pre4/jars/MacOS/macos/script/ScriptFilter.java

#
Java | 56 lines | 13 code | 5 blank | 38 comment | 2 complexity | 583cda5de0883a27d7b7e642db90fe0d MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /*
  2. * :tabSize=8:indentSize=8:noTabs=false:
  3. * :folding=explicit:collapseFolds=1:
  4. *
  5. * ScriptFilter.java
  6. * Copyright (C) 2002 Kris Kopicki
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. package macos.script;
  23. //{{{ Imports
  24. import java.io.*;
  25. //}}}
  26. public class ScriptFilter implements FileFilter
  27. {
  28. //{{{ accept() method
  29. public boolean accept(File pathname)
  30. {
  31. if (pathname.getName().endsWith(".scpt"))
  32. return true;
  33. if (pathname.getName().endsWith(".applescript"))
  34. return true;
  35. // Replace this is Cocoa API calls later
  36. /*try
  37. {
  38. MRJOSType type = MRJFileUtils.getFileType(pathname);
  39. MRJOSType creator = MRJFileUtils.getFileCreator(pathname);
  40. if (type.equals(new MRJOSType("osas")))
  41. return true;
  42. else if (type.equals(new MRJOSType("APPL")) && creator.equals(new MRJOSType("dplt")))
  43. return true;
  44. }
  45. catch (Exception e)
  46. {
  47. return false;
  48. }*/
  49. return false;
  50. } //}}}
  51. }