fop-marcos

Collection of macros to to help during the FOP exam.
git clone git://git.oshgnacknak.de/fop-marcos.git
Log | Files | Refs | README

class (663B)


      1 public abstract class C<T1> extends D implements I<T1> {
      2 
      3 	protected List<T1> l1;
      4 	protected List<T1> l2;
      5 	protected List<T1> l3;
      6 	
      7 	public C(int i1, int i2, int i3, List<T1> l1, List<T1> l2, List<T1> l3) {
      8 		super(i1, i2, i3);
      9 		this.l1 = l1;
     10 		this.l2 = l2;
     11 		this.l3 = l3;
     12 	}
     13 
     14 	@Override
     15 	public <T2> T1 m1(T1 t1, T2 t2) throws Exception {
     16 		return null;
     17 	}
     18 	
     19 	@Override
     20 	public <T2> T1 m2(T1 t1, T2 t2) throws Exception {
     21 		return null;
     22 	}
     23 
     24 	public static <T> T m2(T t) throws Exception {
     25 		return null;
     26 	}
     27 
     28 	
     29 	public abstract <T> T m6(T t) throws Exception;
     30 	public abstract <T> T m7(T t) throws Exception;
     31 	public abstract <T> T m8(T t) throws Exception;
     32 }