Package de.martinet.apps.tcgui.domain

Examples of de.martinet.apps.tcgui.domain.Status


  public Status getStatus() {
    String command = "truecrypt -v -l";
    ArrayList<String> res = execute(command);

    // creating a new status to be filled with the parsed information
    Status status = new Status();

    //
    status
        .getStati()
        .addAll(
            (Collection<? extends MappingInformation>) buildMappingInformation(res));
    return status;
View Full Code Here


    return saveMenuItem;
  }

  private void fillStatus()
  {
    Status tmpStatus =  infoMgr.getStatus();
   
 
    // first remove old rows
    for(int i = 0; i < ((DefaultTableModel) jTblDriveList.getModel()).getRowCount(); i++)
    {
      ((DefaultTableModel) jTblDriveList.getModel()).removeRow(i);
    }
    //jTblDriveList = getJTblDriveList();
    for(MappingInformation mapInf : tmpStatus.getStati())
    {
      // create a new vector to add a row
      Vector<String> vec = new Vector<String>();
      // Device
      vec.add(mapInf.getSourceVolume());
View Full Code Here

TOP

Related Classes of de.martinet.apps.tcgui.domain.Status

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.