1 package net.sf.voruta;
2
3 /***
4 *
5 * @author baliuka
6 */
7 public abstract class AbstractDemo implements Demo,PrivateDA{
8
9 /*** Creates a new instance of AbstractManager */
10 public AbstractDemo() {
11 }
12
13 public void checkExists( int id ){
14
15 if(!exists(id)){
16 throw new IllegalStateException( id + " not found");
17 }
18 }
19
20 public int plain(){
21 DbUtils.getLog().debug("executing private method demo");
22 execute("test");
23 return 777;
24 }
25
26
27 }
This page was automatically generated by Maven