All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openmdx.base.jpa3.Segment Maven / Gradle / Ivy

There is a newer version: 2.18.10
Show newest version
// ----------------------------------------------------------------------------
// Instance/Begin
// ----------------------------------------------------------------------------
//////////////////////////////////////////////////////////////////////////////
//
// Name: $Id: AbstractMapper.java,v 1.10 2011/07/08 13:20:51 wfro Exp $
// Generated by: openMDX Java Mapper
// Date: Mon Mar 09 17:04:35 CET 2020
//
// GENERATED - DO NOT CHANGE MANUALLY
//
//////////////////////////////////////////////////////////////////////////////
package org.openmdx.base.jpa3;

/**
 * Abstract class Segment
 *

* isFrozen */ @SuppressWarnings("serial") public class Segment extends org.w3c.jpa3.AbstractObject implements org.openmdx.base.cci2.Segment { /** * Constructor */ public Segment( ){ // Implements Serializable } /** * The the object's JDO identity key */ private java.lang.String openmdxjdoIdentity; /** * Retrieve the object's JDO identity key * @return the value of the object's JDO identity key */ @Override protected java.lang.String getOpenmdxjdoIdentity( ){ return this.openmdxjdoIdentity; } /** * Set the object's JDO identity key */ @Override protected void setOpenmdxjdoIdentity( String value ){ this.openmdxjdoIdentity = value; } // ---------------------------------------------------------------------------- // Instance/ReferenceDeclaration // ---------------------------------------------------------------------------- /** * Reference extent. */ @SuppressWarnings("unused") private transient java.util.Set extent; // ---------------------------------------------------------------------------- // Instance/ReferenceGet0_nWithQuery // ---------------------------------------------------------------------------- /** * Retrieves a set containing all the elements for the reference extent. * @return A set containing all the elements for this reference. */ public org.openmdx.base.cci2.SegmentSupportsExtent.Extent getExtent( ){ throw new javax.jdo.JDOFatalUserException( "This signature is not handled by data object", new UnsupportedOperationException("This signature is not handled by data object. Use query on member 'extent'."), this ); } // ---------------------------------------------------------------------------- // Instance/DeclareValue // ---------------------------------------------------------------------------- /** * Attribute description. */ java.lang.String description; // ---------------------------------------------------------------------------- // Instance/AttributeGet0_1 // ---------------------------------------------------------------------------- /** * Retrieves the possibly null value for the optional attribute description. * @return The possibly null value for attribute description. */ public final java.lang.String getDescription( ){ return this.description; } // ---------------------------------------------------------------------------- // Instance/AttributeSet0_1 // ---------------------------------------------------------------------------- /** * Sets a new value for the attribute description. * @param description The possibly null new value for attribute description. */ public void setDescription( java.lang.String description ){ super.openmdxjdoMakeDirty(); this.description = description; } // ---------------------------------------------------------------------------- // Instance/ReferenceDeclaration // ---------------------------------------------------------------------------- /** * Instance referenced by provider. */ java.lang.String provider; // ---------------------------------------------------------------------------- // Instance/ReferenceGetx_1NoQualifier // ---------------------------------------------------------------------------- /** * Retrieves the value for the reference provider. * @return The non-null value for this reference. */ public org.openmdx.base.cci2.Provider getProvider( ) { throw new javax.jdo.JDOFatalUserException( "This signature is not handled by data object", new UnsupportedOperationException("This signature is not handled by data object. Use getProvider_Id()."), this ); } public java.lang.String getProvider_Id( ) { return this.provider; } // ---------------------------------------------------------------------------- // Instance/End // ---------------------------------------------------------------------------- // ---------------------------------------------------------------------------- // Instance/ReferenceSetNoQualifier // ---------------------------------------------------------------------------- /** * Sets a new value for the reference provider. * @param provider The new non-null value for this reference. */ public void setProvider( org.openmdx.base.jpa3.Provider provider ){ throw new javax.jdo.JDOFatalUserException( "Typed set not handled by data object", new UnsupportedOperationException("Use setProvider_Id() instead."), this ); } public void setProvider_Id( java.lang.String provider ) { super.openmdxjdoMakeDirty(); this.provider = provider; } // ---------------------------------------------------------------------------- // Instance/Containment // ---------------------------------------------------------------------------- }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy