com.azalient.apo.basics
Class OpeningStatus

java.lang.Object
  extended by com.azalient.apo.basics.OpeningStatus

public class OpeningStatus
extends Object

A utility class holding status flags for reading data files.


Constructor Summary
OpeningStatus()
           
 
Method Summary
 boolean clearBeforeOpen()
          [Internal] Returns true if store being opened should be cleared before reading begins
 void clearBeforeOpen(boolean b)
          [Internal] Set the store to clear itself before open.
 boolean ok()
          Returns true if most recent file-read process completed successfully
 void ok(boolean ok)
          [Internal] Set to true if most recent file-read process completed successfully
 boolean tableOK()
          Returns true if most recent table was successfully opened
 void tableOK(boolean ok)
          [Internal] Set table opening status
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OpeningStatus

public OpeningStatus()
Method Detail

ok

public void ok(boolean ok)
[Internal] Set to true if most recent file-read process completed successfully

Internal - Not recommended for use. Public as a side-effect of implementation method

ok

public boolean ok()
Returns true if most recent file-read process completed successfully


tableOK

public void tableOK(boolean ok)
[Internal] Set table opening status

Internal - Not recommended for use. Public as a side-effect of implementation method

tableOK

public boolean tableOK()
Returns true if most recent table was successfully opened


clearBeforeOpen

public void clearBeforeOpen(boolean b)
[Internal] Set the store to clear itself before open. The default is true.

Internal - Not recommended for use. Public as a side-effect of implementation method

clearBeforeOpen

public boolean clearBeforeOpen()
[Internal] Returns true if store being opened should be cleared before reading begins

Internal - Not recommended for use. Public as a side-effect of implementation method