Package com.centraview.account.common

Examples of com.centraview.account.common.AccountingLineElement


    Iterator itr = s.iterator();
    Vector v = new Vector();
    while (itr.hasNext())
    {
      Object o = itr.next();
      AccountingLineElement ale = (AccountingLineElement) this.get(o);
      int currid = ale.getElementId();
      if (currid == lineID) ale.setLineStatus("Deleted");
      {
        if (!ale.getLineStatus().equals("New"))
          {
            ale.setLineStatus("Deleted");ale.setLineStatus("Deleted");
          }else
          v.add(o);
      }//if

    }//while
View Full Code Here


    Set s = this.keySet();
    Iterator itr = s.iterator();

    while (itr.hasNext())
    {
      AccountingLineElement ale = (AccountingLineElement) this.get(itr.next());
      int currid = ale.getElementId();
      if (Arrays.binarySearch(lineID,currid) != -1) ale.setLineStatus("Deleted");

    }//while


  }//removeLiine(int[])
View Full Code Here

TOP

Related Classes of com.centraview.account.common.AccountingLineElement

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.