01: // ================================================================
02: // Copyright (c) 2000-2005 CollabNet. All rights reserved.
03: //
04: // Redistribution and use in source and binary forms, with or without
05: // modification, are permitted provided that the following conditions are
06: // met:
07: //
08: // 1. Redistributions of source code must retain the above copyright
09: // notice, this list of conditions and the following disclaimer.
10: //
11: // 2. Redistributions in binary form must reproduce the above copyright
12: // notice, this list of conditions and the following disclaimer in the
13: // documentation and/or other materials provided with the distribution.
14: //
15: // 3. The end-user documentation included with the redistribution, if
16: // any, must include the following acknowlegement: "This product includes
17: // software developed by Collab.Net <http://www.Collab.Net/>."
18: // Alternately, this acknowlegement may appear in the software itself, if
19: // and wherever such third-party acknowlegements normally appear.
20: //
21: // 4. The hosted project names must not be used to endorse or promote
22: // products derived from this software without prior written
23: // permission. For written permission, please contact info@collab.net.
24: //
25: // 5. Products derived from this software may not use the "Tigris" or
26: // "Scarab" names nor may "Tigris" or "Scarab" appear in their names without
27: // prior written permission of Collab.Net.
28: //
29: // THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
30: // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
31: // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32: // IN NO EVENT SHALL COLLAB.NET OR ITS CONTRIBUTORS BE LIABLE FOR ANY
33: // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34: // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
35: // GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
36: // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
37: // IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
38: // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
39: // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40: //
41: // ====================================================================
42: //
43: // This software consists of voluntary contributions made by many
44: // individuals on behalf of Collab.Net.
45:
46: package org.tigris.scarab.om;
47:
48: import org.apache.torque.TorqueException;
49:
50: /**
51: * This class manages MITListItem objects.
52: * The skeleton for this class was autogenerated by Torque * You should add additional methods to this class to meet the
53: * application requirements. This class will only be generated as
54: * long as it does not already exist in the output directory.
55: */
56: public class MITListItemManager extends BaseMITListItemManager {
57: /**
58: * Creates a new <code>MITListItemManager</code> instance.
59: *
60: * @exception TorqueException if an error occurs
61: */
62: public MITListItemManager() throws TorqueException {
63: super();
64: }
65:
66: }
|