summaryrefslogblamecommitdiff
path: root/test/files/pos/t3349/AbstractTupleSet.java
blob: 38e4743ef483ac90713583f11e888d55eb629928 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                            
   
 
public abstract class AbstractTupleSet implements TupleSet {
  public void addColumn(String name, Class type) {
    throw new UnsupportedOperationException();
  }

  public void addColumn(String name, String expr) {
    throw new UnsupportedOperationException();
  }
}