You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

255 lines
7.6 KiB

//Copyright 2020 Siemens Digital Industries Software
//==================================================
//Copyright $2020.
//Siemens Product Lifecycle Management Software Inc.
//All Rights Reserved.
//==================================================
//Copyright 2020 Siemens Digital Industries Software
/*==================================================================================================
File description:
This file contains the declaration for the Business Object, EDADerivedItemConfigDef
Filename: EDADerivedItemConfigDef.hxx
Module: eda
@BMIDE autogenerated
==================================================================================================*/
#ifndef TEAMCENTER__EDADERIVEDITEMCONFIGDEF__HXX
#define TEAMCENTER__EDADERIVEDITEMCONFIGDEF__HXX
#include <string>
#include <unidefs.h>
#include <common/tc_deprecation_macros.h>
#include <tccore/POM_object.hxx>
#include <eda/libeda_exports.h>
namespace Teamcenter
{
class EDADerivedItemConfigDef;
}
namespace Teamcenter
{
class EDADerivedItemConfigDefImpl;
}
namespace Teamcenter
{
class EDADerivedItemConfigDefDelegate;
}
namespace Teamcenter
{
class EDADerivedItemConfigDefDispatch;
}
namespace Teamcenter
{
class EDADerivedItemConfigDefGenImpl;
}
namespace Teamcenter
{
class RootObjectImpl;
}
class EDA_API Teamcenter::EDADerivedItemConfigDef
: public ::Teamcenter::POM_object
{
public:
/**
* Get the Interface Name
* @return - return desc for getInterfaceName
*/
static const std::string& getInterfaceName();
///
/// Getter for a Boolean Property
/// @version Tc 8
/// @param value - Parameter Value
/// @param isNull - Returns true if the Parameter value is null
/// @return - Status. 0 if successful
///
int getAdd_to_bom( bool &value, bool &isNull ) const;
///
/// Getter for a string Property
/// @version Tc 8
/// @param value - Parameter value
/// @param isNull - Returns true if the Parameter value is null
/// @return - Status. 0 if successful
///
int getContext( std::string &value, bool &isNull ) const;
///
/// Getter for a Tag Property
/// @version Tc 8
/// @param value - Parameter value
/// @param isNull - Returns true if the Parameter value is null
/// @return - Status. 0 if successful
///
int getItem_type( tag_t &value, bool &isNull ) const;
///
/// Getter for a string Property
/// @version Tc 8
/// @param value - Parameter value
/// @param isNull - Returns true if the Parameter value is null
/// @return - Status. 0 if successful
///
int getName( std::string &value, bool &isNull ) const;
///
/// Getter for a string Property
/// @version Tc 8
/// @param value - Parameter value
/// @param isNull - Returns true if the Parameter value is null
/// @return - Status. 0 if successful
///
int getParent_type( std::string &value, bool &isNull ) const;
///
/// Getter for a string Property
/// @version Tc 8
/// @param value - Parameter value
/// @param isNull - Returns true if the Parameter value is null
/// @return - Status. 0 if successful
///
int getPostfix( std::string &value, bool &isNull ) const;
///
/// Getter for a string Property
/// @version Tc 8
/// @param value - Parameter value
/// @param isNull - Returns true if the Parameter value is null
/// @return - Status. 0 if successful
///
int getPrefix( std::string &value, bool &isNull ) const;
///
/// Getter for a Tag Property
/// @version Tc 8
/// @param value - Parameter value
/// @param isNull - Returns true if the Parameter value is null
/// @return - Status. 0 if successful
///
int getRelation_type( tag_t &value, bool &isNull ) const;
///
/// Setter for a Boolean Property
/// @version Tc 8
/// @param value - Value to be set for the parameter
/// @param isNull - If true, set the parameter value to null
/// @return - Status. 0 if successful
///
int setAdd_to_bom( bool value, bool isNull=false );
///
/// Setter for a string Property
/// @version Tc 8
/// @param value - Value to be set for the parameter
/// @param isNull - If true, set the parameter value to null
/// @return - Status. 0 if successful
///
int setContext( const std::string &value, bool isNull=false );
///
/// Setter for a Tag Property
/// @version Tc 8
/// @param value - Value to be set for the parameter
/// @param isNull - If true, set the parameter value to null
/// @return - Status. 0 if successful
///
int setItem_type( const tag_t &value, bool isNull=false );
///
/// Setter for a string Property
/// @version Tc 8
/// @param value - Value to be set for the parameter
/// @param isNull - If true, set the parameter value to null
/// @return - Status. 0 if successful
///
int setName( const std::string &value, bool isNull=false );
///
/// Setter for a string Property
/// @version Tc 8
/// @param value - Value to be set for the parameter
/// @param isNull - If true, set the parameter value to null
/// @return - Status. 0 if successful
///
int setParent_type( const std::string &value, bool isNull=false );
///
/// Setter for a string Property
/// @version Tc 8
/// @param value - Value to be set for the parameter
/// @param isNull - If true, set the parameter value to null
/// @return - Status. 0 if successful
///
int setPostfix( const std::string &value, bool isNull=false );
///
/// Setter for a string Property
/// @version Tc 8
/// @param value - Value to be set for the parameter
/// @param isNull - If true, set the parameter value to null
/// @return - Status. 0 if successful
///
int setPrefix( const std::string &value, bool isNull=false );
///
/// Setter for a Tag Property
/// @version Tc 8
/// @param value - Value to be set for the parameter
/// @param isNull - If true, set the parameter value to null
/// @return - Status. 0 if successful
///
int setRelation_type( const tag_t &value, bool isNull=false );
protected:
// Method to initialize
virtual void initialize( ::Teamcenter::RootObjectImpl* impl );
/**
* Constructor
*/
EDADerivedItemConfigDef();
/**
* Destructor
*/
virtual ~EDADerivedItemConfigDef();
private:
// Getter method for the Implementation Object
EDADerivedItemConfigDefImpl* getEDADerivedItemConfigDefImpl() const;
// Setter method for the Implementation Object
::Teamcenter::RootObjectImpl* setEDADerivedItemConfigDefImpl( ::Teamcenter::RootObjectImpl* impl );
// Method to set the delete impl boolean
void setDeleteImpl( bool del );
// Pointer to the Implementation object
EDADerivedItemConfigDefImpl* m_edaderiveditemconfigdefImpl;
// Flag to indicate if Implementation object needs to be deleted
bool m_deleteImpl;
/**
* Name of the Business Object
*/
static std::string name;
/**
* Private default constructor. We do not want this class instantiated without the business object passed in.
* @param EDADerivedItemConfigDef - desc for EDADerivedItemConfigDef parameter
*/
EDADerivedItemConfigDef( const EDADerivedItemConfigDef& );
EDADerivedItemConfigDef& operator=( const EDADerivedItemConfigDef& );
friend class EDADerivedItemConfigDefDelegate;
friend class EDADerivedItemConfigDefDispatch;
friend class EDADerivedItemConfigDefGenImpl;
};
#include <eda/libeda_undef.h>
#endif // TEAMCENTER__EDADERIVEDITEMCONFIGDEF__HXX