Classes Files

mama/MamaFieldCacheReadOnlyField.java

Namespaces

Name
com::wombat::mama

Classes

  Name
interface com::wombat::mama::MamaFieldCacheReadOnlyField

Source code

//--------------------------------------------------------------------------
// Copyright (c) 1999-2006 Wombat Financial Software Inc., of Incline
// Village, NV.  All rights reserved.
//
// This software and documentation constitute an unpublished work and
// contain valuable trade secrets and proprietary information belonging
// to Wombat.  None of this material may be copied, duplicated or
// disclosed without the express written permission of Wombat.
//
// WOMBAT EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING THIS
// SOFTWARE AND DOCUMENTATION, INCLUDING ANY WARRANTIES OF
// MERCHANTABILITY AND/OR FITNESS FOR ANY PARTICULAR PURPOSE, AND
// WARRANTIES OF PERFORMANCE, AND ANY WARRANTY THAT MIGHT OTHERWISE ARISE
// FROM COURSE OF DEALING OR USAGE OF TRADE. NO WARRANTY IS EITHER
// EXPRESS OR IMPLIED WITH RESPECT TO THE USE OF THE SOFTWARE OR
// DOCUMENTATION.
//
// Under no circumstances shall Wombat be liable for incidental, special,
// indirect, direct or consequential damages or loss of profits,
// interruption of business, or related expenses which may arise from use
// of software or documentation, including but not limited to those
// resulting from defects in software and/or documentation, or loss or
// inaccuracy of data of any kind.
//
//----------------------------------------------------------------------------


package com.wombat.mama;

public interface MamaFieldCacheReadOnlyField
{   
    
    public MamaFieldCacheField copy ();

    public String getAsString ();

    public MamaFieldDescriptor getDescriptor();

    public short getType();

    public boolean getTrackModState ();
  
    public short getModState ();

    public boolean isUnmodified ();

    public boolean isModified ();

    public boolean isTouched ();
}

Updated on 2023-03-31 at 15:29:45 +0100