Math2mat

/home/ythoma/docs/math2mat/svn/wp1/framework/m2mGUI/src/m2m/frontend/threads/ValidateProjectsThread.java

Go to the documentation of this file.
00001 
00021 package m2m.frontend.threads;
00022 
00023 import m2m.backend.processing.ProjectsValidator;
00024 
00029 public class ValidateProjectsThread extends Thread {
00030 
00031         // Path to verify
00032         private String path;
00033         
00038         public ValidateProjectsThread (String path) 
00039         {
00040                 this.path = path;
00041         }
00042         
00047         public void run() {
00048                 ProjectsValidator.testDir(path);                
00049         }
00050 }
 All Classes Namespaces Files Functions Variables Enumerations