KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > tigris > scarab > om > FrequencyPeer


1 package org.tigris.scarab.om;
2
3 import java.util.List JavaDoc;
4 import org.apache.torque.util.Criteria;
5
6 /**
7  * You should add additional methods to this class to meet the
8  * application requirements. This class will only be generated as
9  * long as it does not already exist in the output directory.
10  */

11 public class FrequencyPeer
12     extends org.tigris.scarab.om.BaseFrequencyPeer
13 {
14
15     /**
16      * Returns list of all frequency values.
17      */

18     public static List JavaDoc getFrequencies() throws Exception JavaDoc
19     {
20         return doSelect(new Criteria());
21     }
22
23 }
24
Popular Tags