KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > db > queries > oracle > TKDBContentNewContent


1 /**
2  * Jedes Selectstatement erhaelt eine eigene Klasse
3  */

4 package com.teamkonzept.webman.mainint.db.queries.oracle;
5
6 import com.teamkonzept.db.*;
7 import java.sql.*;
8 import com.teamkonzept.webman.mainint.WebmanExceptionHandler;
9 import com.teamkonzept.webman.mainint.db.queries.content.*;
10
11
12 public class TKDBContentNewContent extends CompositeQuery
13 {
14
15     protected void initConcreteCompositeQuery() throws SQLException
16     {
17
18     registerQuery(ContInsert.class);
19     registerQuery(ContGetMaxID.class);
20
21
22     }
23
24 }
25
Popular Tags