001/* ----------------------------------------------------------------------------
002   The Kiwi Toolkit - A Java Class Library
003   Copyright (C) 1998-2004 Mark A. Lindner
004
005   This library is free software; you can redistribute it and/or
006   modify it under the terms of the GNU General Public License as
007   published by the Free Software Foundation; either version 2 of the
008   License, or (at your option) any later version.
009
010   This library is distributed in the hope that it will be useful,
011   but WITHOUT ANY WARRANTY; without even the implied warranty of
012   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
013   General Public License for more details.
014
015   You should have received a copy of the GNU General Public License
016   along with this library; if not, write to the Free Software
017   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
018   02111-1307, USA.
019 
020   The author may be contacted at: mark_a_lindner@yahoo.com
021   ----------------------------------------------------------------------------
022   $Log: ModelProperties.java,v $
023   Revision 1.1  2004/05/13 21:38:44  markl
024   new class
025
026   ----------------------------------------------------------------------------
027*/
028
029package kiwi.ui.model;
030
031/** A list of basic data model properties.
032 *
033 * @author Mark Lindner
034 * @since Kiwi 2.0
035 */
036
037public interface ModelProperties
038  {
039  /** The "column names" property. The value of this property is expected
040   * to be an array of <code>String</code>s.
041   */
042  
043  public static final String COLUMN_NAMES_PROPERTY = "__columnNames__";
044
045  /** The "column types" property. The value of this property is expected
046   * to be an array of <code>Class</code>es.
047   */
048  
049  public static final String COLUMN_TYPES_PROPERTY = "__columnTypes__";  
050  }
051
052/* end of source file */