Borneq

net.sf.junace.IHandleState

Sep 8th, 2013
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package net.sf.junace;
  2.  
  3. public interface IHandleState {
  4.     final static int ACE_CALLBACK_RETURN_OK = 0; // also "yes" at requests
  5.     final static int ACE_CALLBACK_RETURN_NO = 1; // no, do not retry
  6.     final static int ACE_CALLBACK_RETURN_CANCEL = 2; // abort operation
  7.     int startArchive();
  8.     int startFile();
  9.     int progress();
  10. }
Advertisement
Add Comment
Please, Sign In to add comment