Package tool

Examples of tool.Language


   
    if(args.length == 1)
    {
      if(args[0]=="lang")
      {
        Language la = new Language();
        la.editLang();
      }
    }
    new MotherFrame();
  }
View Full Code Here


  private JFrame frame;
  private Plot2DPanel plot;
 
  public Graph(double[] x, double[] y)
  {
    this.la = new Language();
    this.drawGraph(x,y);
  }
View Full Code Here

 
  private void createWindow()
  {
    //window
   
    this.la = new Language();
    this.setTitle(this.la.getText("title"));
    this.setBounds(0, 0, 500, 200);
   
   
    //menus
View Full Code Here

 
    if(args.length == 1)
    {     
      if(args[0]=="lang")
      {
        Language la = new Language();
        la.editLang();
      }
    }
    new MotherFrame();
  }
View Full Code Here

TOP

Related Classes of tool.Language

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.