Advertisement
Guest User

With statement simulation

a guest
May 31st, 2010
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.43 KB | None | 0 0
  1.     //http://stackoverflow.com/questions/2945359/simulating-pythons-with-statement-in-java/2945558#2945558
  2.     package test;
  3.     import java.io.IOException;
  4.     import static test.WithUtil.with;
  5.     class WithDemo {
  6.         ConnectionFactory factory;
  7.         public Item getItem( final int itemId ) {
  8.             final _<Item> item = new _<Item>();
  9.             final _<Connection> c = new _<Connection>();
  10.             with( factory, c, new Runnable(){
  11.                 public void run(){
  12.                    item._ = c._.query( itemId );
  13.                 }
  14.             });
  15.             return item._;
  16.         }
  17.     }
  18.     class _<E>{ public E _; }
  19.     class Item{}
  20.     class Connection{
  21.         public Item query( int id ){
  22.             return null;
  23.         }
  24.         public void close() throws IOException{}
  25.         public void open() throws IOException{}
  26.     }
  27.     class ConnectionFactory {
  28.         public static Connection getConnection(){ return new Connection(); }
  29.     }
  30.  
  31.     class WithUtil {
  32.         public static void with( ConnectionFactory factory, _<Connection> c, Runnable block ) {
  33.             try {
  34.                 c._ = factory.getConnection();
  35.                 c._.open();
  36.                 block.run();
  37.             } catch( Exception ioe ){
  38.             }finally{
  39.                 if( c._ != null ) try {
  40.                     c._.close();
  41.                 } catch( IOException ioe ){}
  42.             }
  43.         }
  44.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement