Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/RuntimeCollective/webapps/bean/SequenceBean.java


1   /* $Header: /home/CVS/rjp/src/com/RuntimeCollective/webapps/bean/SequenceBean.java,v 1.3 2003/09/30 15:13:09 joe Exp $
2    * $Revision: 1.3 $
3    * $Date: 2003/09/30 15:13:09 $
4    *
5    * ====================================================================
6    *
7    * Josephine : http://www.runtime-collective.com/josephine/index.html
8    *
9    * Copyright (C) 2003 Runtime Collective
10   * 
11   * This product includes software developed by the
12   * Apache Software Foundation (http://www.apache.org/).
13   *
14   * This library is free software; you can redistribute it and/or
15   * modify it under the terms of the GNU Lesser General Public
16   * License as published by the Free Software Foundation; either
17   * version 2.1 of the License, or (at your option) any later version.
18   *
19   * This library is distributed in the hope that it will be useful,
20   * but WITHOUT ANY WARRANTY; without even the implied warranty of
21   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22   * Lesser General Public License for more details.
23   *
24   * You should have received a copy of the GNU Lesser General Public
25   * License along with this library; if not, write to the Free Software
26   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27   *
28   */
29  
30  package com.RuntimeCollective.webapps.bean;
31  
32  /** An interface for beans that can be identified by a sequence property -- this can either be a string representing an integer or a single letter. The sequence is used to denote the order of beans within a <code>BeanSequence</code>. 
33   *
34   * @author Joe Faith
35   * @version $Id: SequenceBean.java,v 1.3 2003/09/30 15:13:09 joe Exp $
36   * @see com.RuntimeCollective.webapps.BeanSequence
37   */
38  public interface SequenceBean extends EntityBean {
39  
40      /** Get the bean sequence. */
41      public String getSequence();
42  
43      /** Set the bean sequence. */
44      public void setSequence(String sequence);
45  
46  }