Package com.zaranux.os.client.programs

Examples of com.zaranux.os.client.programs.Explorer


        run(program);
    }*/
   
    if(getArgs() != null)
    {
      Explorer e = new Explorer(getArgs());
      run(e);
    }
     
  }
View Full Code Here


  {
    Terminal t = new Terminal();
    run(t);
    t.move(100, 100);

    Explorer e1 = new Explorer();
    run(e1);
    e1.move(400, 270);
   
    Explorer e2 = new Explorer();
    run(e2);
    e2.move(600, 130);
   
  }
View Full Code Here

            }else if(ne.getCtrlKey() &&  ( keycode == 'e' || keycode == 'E' ))
            {
              event.cancel();
              ne.stopPropagation();
              run(new Explorer());
             
            }else if(ne.getCtrlKey() &&  ( keycode == 'l' || keycode == 'L' ))
            {
              event.cancel();
              ne.stopPropagation();
View Full Code Here

TOP

Related Classes of com.zaranux.os.client.programs.Explorer

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.