Package com.zaranux.os.client.core

Examples of com.zaranux.os.client.core.Program


   
  }
 
  public Program getProgram()
  {
    Program program = null;
      if(isExecutable())
      {
        Log.debug("Executing " + absolutePath);
        String[] args = new String[1];
        args[0] = absolutePath;
View Full Code Here


        sounds.add(f.getAbsolutePath());
      else if(tf.isImage())
        images.add(f.getAbsolutePath());
      else if(tf.isExecutable())
      {
        Program program = tf.getProgram();
        if(program != null) filesystemTreeGrid.run(program);
      }
    }
    if(sounds.size() > 0)
    {
View Full Code Here

      {
        String[] args = new String[1];
        args[0] = absolutePath;
        Log.debug("going to play");

        Program program = tf.getProgram();
        if(program != null)
        {
          // run in the background do not waith for callback call just return success
          // make inti its parent so even if the terminal closes it stays up
          run(program, true);
View Full Code Here

TOP

Related Classes of com.zaranux.os.client.core.Program

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.