Z3
IDisposable.java
Go to the documentation of this file.
1 /*++
2 Copyright (c) 2012 Microsoft Corporation
3 
4 Module Name:
5 
6  IDisposable.java
7 
8 Abstract:
9 
10  Compatability interface (C# -> Java)
11 
12 Author:
13 
14  Christoph Wintersteiger (cwinter) 2012-03-16
15 
16 Notes:
17 
18 --*/
19 
20 package com.microsoft.z3;
21 
22 public class IDisposable
23 {
24  public void dispose()
25  {
26  }
27 }