C++ main module for mmsd Package
1.0
|
This class is a class for MetaModel exchange. More...
#include <MM_Structure.h>
Public Member Functions | |
virtual SP::UI_Class | NewInstance () const |
create a new instance of class More... | |
void | setData (SP::MM_Data data) |
set & get the data More... | |
SP::MM_Data | getData () const |
get the build data More... | |
virtual tBoolean | isBoolean (tBoolean &isVector) const |
virtual tBoolean | isChar (tBoolean &isVector, tBoolean &isUnsigned) const |
virtual tBoolean | isShortInt (tBoolean &isVector, tBoolean &isUnsigned) const |
virtual tBoolean | isInt (tBoolean &isVector, tBoolean &isUnsigned) const |
virtual tBoolean | isLongInt (tBoolean &isVector, tBoolean &isUnsigned) const |
virtual tBoolean | isLongLongInt (tBoolean &isVector, tBoolean &isUnsigned) const |
virtual tBoolean | isFloat (tBoolean &isVector) const |
virtual tBoolean | isDouble (tBoolean &isVector) const |
virtual tBoolean | isLongDouble (tBoolean &isVector) const |
virtual tBoolean | isString (tBoolean &isVector) const |
virtual tBoolean | isDoubleFullMatrix () const |
virtual tBoolean | isClass () const |
verify if the data is a struct with fields names More... | |
virtual tBoolean | hasField (const tString &field) const |
verify if the mData is a class which contains field More... | |
virtual tBoolean | hasFields (const vector< tString > &fields) const |
verify if the mData is a struct with fields names More... | |
virtual tBoolean | getString (tString &name) const |
get the string value of argvalue More... | |
virtual tBoolean | getScalar (tBoolean &value) const |
get the boolean value of argvalue More... | |
virtual tBoolean | getScalar (char &value) const |
get the boolean value of argvalue More... | |
virtual tBoolean | getScalar (unsigned char &value) const |
get the boolean value of argvalue More... | |
virtual tBoolean | getScalar (int &value) const |
get the integer value of argvalue More... | |
virtual tBoolean | getScalar (short int &value) const |
get the integer value of argvalue More... | |
virtual tBoolean | getScalar (long int &value) const |
get the integer value of argvalue More... | |
virtual tBoolean | getScalar (long long int &value) const |
get the integer value of argvalue More... | |
virtual tBoolean | getScalar (unsigned long long int &value) const |
get the integer value of argvalue More... | |
virtual tBoolean | getScalar (unsigned long int &value) const |
get the integer value of argvalue More... | |
virtual tBoolean | getScalar (double &value) const |
get the double value of argvalue More... | |
virtual tBoolean | getScalar (long double &value) const |
get the double value of argvalue More... | |
virtual tBoolean | getVector (vector< tString > &names) const |
get the string vector value of argvalue More... | |
virtual tBoolean | getVector (int &n, tString *&value, tBoolean &isCopied) const |
get the vector value of argvalue More... | |
virtual tBoolean | getVector (int &n, bool *&value, tBoolean &isCopied) const |
get the vector value of argvalue More... | |
virtual tBoolean | getVector (int &n, unsigned char *&value, tBoolean &isCopied) const |
get the vector value of argvalue More... | |
virtual tBoolean | getVector (int &n, unsigned int *&value, tBoolean &isCopied) const |
get the vector value of argvalue More... | |
virtual tBoolean | getVector (int &n, int *&value, tBoolean &isCopied) const |
get the vector value of argvalue More... | |
virtual tBoolean | getVector (int &n, unsigned long int *&value, tBoolean &isCopied) const |
get the vector value of argvalue More... | |
virtual tBoolean | getVector (int &n, long int *&value, tBoolean &isCopied) const |
get the vector value of argvalue More... | |
virtual tBoolean | getVector (int &n, long long int *&value, tBoolean &isCopied) const |
get the vector value of argvalue More... | |
virtual tBoolean | getVector (int &n, double *&value, tBoolean &isCopied) const |
get the vector value of argvalue More... | |
virtual tBoolean | getVector (int &n, long double *&value, tBoolean &isCopied) const |
get the vector value of argvalue More... | |
virtual tBoolean | getFullMatrix (int &nRows, int &nCols, double *&value, tBoolean &isCopied) const |
get the double full matrix value of argvalue More... | |
void | createValue (const tString &type, const tString &card, const tString &value, const tString &separator, const tString &start, const tString &end) |
set generic value More... | |
virtual void | createString (const tString &value) |
create a string More... | |
virtual void | createScalar (const unsigned char &value) |
create a scalar More... | |
virtual void | createScalar (const short int &value) |
create a scalar More... | |
virtual void | createScalar (const unsigned int &value) |
create a scalar More... | |
virtual void | createScalar (const int &value) |
create a scalar More... | |
virtual void | createScalar (const long int &value) |
create a scalar More... | |
virtual void | createScalar (const long long int &value) |
create a scalar More... | |
virtual void | createScalar (const unsigned long long int &value) |
create a scalar More... | |
virtual void | createScalar (const tBoolean &value) |
create a scalar More... | |
virtual void | createScalar (const double &value) |
create a scalar More... | |
virtual void | createScalar (const long double &value) |
create a scalar More... | |
virtual double * | createDoubleVector (const int &n) |
create a vector of double of size n More... | |
virtual int * | createIntVector (const int &n) |
create a vector of int of size n More... | |
virtual void | createVector (const vector< tString > &values) |
create a vector size of values must be n More... | |
virtual void | createVector (const vector< bool > &values) |
create a vector size of values must be n More... | |
virtual void | createVector (const vector< unsigned char > &values) |
create a vector size of values must be n More... | |
virtual void | createVector (const vector< int > &values) |
create a vector size of values must be n More... | |
virtual void | createVector (const vector< double > &values) |
create a vector size of values must be n More... | |
virtual void | createVector (const vector< long double > &values) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const tString *values) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const tBoolean *values) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const unsigned char *values) |
virtual void | createVector (const int &n, const unsigned int *values) |
virtual void | createVector (const int &n, const int *values) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const long int *values) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const long long int *values) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const double *values) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const long double *values) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const tString *&values, const tBoolean &isCopied) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const tBoolean *&values, const tBoolean &isCopied) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const unsigned char *&values, const tBoolean &isCopied) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const unsigned int *&values, const tBoolean &isCopied) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const int *&values, const tBoolean &isCopied) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const long int *&values, const tBoolean &isCopied) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, long int *&values, const tBoolean &isCopied) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const long long int *&values, const tBoolean &isCopied) |
create a vector of long long int size of values must be n More... | |
virtual void | createVector (const int &n, long long int *&values, const tBoolean &isCopied) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const double *&values, const tBoolean &isCopied) |
create a vector size of values must be n More... | |
virtual void | createVector (const int &n, const long double *&values, const tBoolean &isCopied) |
create a vector size of values must be n More... | |
virtual void | createFullMatrix (const int &nRows, const int &nCols, const double *values, tBoolean &isCopied) |
create a matrix values must be of size nRows*nCols More... | |
virtual double * | createFullMatrix (const int &nRows, const int &nCols) |
create a matrix of size nRows * nCols return the values in column storage More... | |
virtual void | createClass (const tString &id) |
create the empty structure More... | |
virtual tBoolean | createClass (const tString &id, CORE_SharedPointersVMap< tString, UI_Class > &fields) |
creathe the class More... | |
virtual void | createClassesList (const tString &fieldName, const tBoolean &isComposite, const int &n) |
create a multiple association of size n with name fieldname of type isComoposite More... | |
virtual tBoolean | setClassIntoList (const tString &fieldName, const int &index, UI_Class &fieldValue) |
set the index-th element of the classes list supposed to be composite or not depending on isComposite value More... | |
virtual tBoolean | setField (const tString &fieldName, const tBoolean &isComposite, UI_Class &fieldValue) |
set the field fieldName of the class More... | |
virtual tBoolean | setField (const tString &fieldName, UI_Class &fieldValue) |
set the field fieldName of the class More... | |
virtual void | getFieldNames (vector< tString > &fields) const |
get the field names More... | |
virtual tString | getClassName () const |
get the field type More... | |
virtual int | getClassesListSize (const tString &name) const |
get the number of classes in the structure More... | |
virtual tBoolean | getClassFromList (const tString &name, const int &index, UI_Class &uiClass) const |
get the data field at index of the list More... | |
virtual tBoolean | getField (const tString &field, UI_Class &uiClass) const |
get the field More... | |
virtual void | printErrorMessage (const tString &msg) const |
print the message & quit More... | |
virtual void | printMessage (const tString &msg) const |
print the message on screen More... | |
virtual tString | toString () const |
turn the class into string More... | |
void | setFactory (SP::CORE_ClassFactory fact) |
void | setInterfaceType (const tFlag &f) |
set the interface type More... | |
int | getInterfaceType () const |
set the interface type More... | |
void | setIsArrayCopied (const tBoolean &v) |
set if the arrays must be copied More... | |
tBoolean | isArrayCopied () const |
return true if the array must be copied More... | |
void | setVersion (const tString &v) |
set the version More... | |
tString | getVersion () const |
set the version More... | |
virtual tBoolean | isInteger (tBoolean &isVector, tBoolean &isUnsigned) const |
virtual tBoolean | getScalar (tString &name) const |
get the string value of argvalue More... | |
virtual tBoolean | getVector (vector< bool > &value) const |
get the int vector value of argvalue More... | |
virtual tBoolean | getVector (vector< unsigned char > &value) const |
get the int vector value of argvalue More... | |
virtual tBoolean | getVector (vector< int > &value) const |
get the int vector value of argvalue More... | |
virtual tBoolean | getVector (vector< double > &value) const |
get the int vector value of argvalue More... | |
virtual tBoolean | getVector (vector< long double > &value) const |
get the int vector value of argvalue More... | |
tBoolean | getFullSymmetricMatrix (int &nRows, double *&value, tBoolean &isCopied) const |
tBoolean | getPackedSymmetricMatrix (int &nRows, double *&value, tBoolean &isCopied) const |
template<class T > | |
tBoolean | getVector2D (CORE_Array2D< T > &array2D, tBoolean &isCopied) const |
get a 2D vector (or dynamical matrix with different row size) More... | |
template<class T , class Q > | |
tBoolean | getPrimitiveMap (map< T, Q > &primitiveMap) const |
get a primitive map More... | |
template<class T , class Q > | |
tBoolean | getPrimitiveMap (CORE_Map< T, Q > &primitiveMap) const |
get a primitive map More... | |
virtual void | createScalar (const tString &value) |
create a scalar More... | |
virtual void | createVector (const vector< tBoolean > &values)=0 |
create a vector of string More... | |
virtual void | createFullMatrix (const int &nRows, const int &nCols, const double *values) |
create a matrix values must be of size nRows*nCols More... | |
virtual void | createFullSymmetricMatrix (const int &nRows, const double *values, const tBoolean &isCopied) |
create a full symmetric matrix values must be of size nRows*nRows More... | |
virtual void | createFullSymmetricMatrix (const int &nRows, const double *values) |
create a full symmetric matrix More... | |
virtual void | createPackedSymmetricMatrix (const int &nRows, const double *values, const tBoolean &isCopied) |
create a packed symmetric matrix values must be of size nRows*(nRows+1)/2 More... | |
virtual void | createPackedSymmetricMatrix (const int &nRows, const double *values) |
create a packed symmetric matrix values must be of size nRows*(nRows+1)/2 More... | |
template<class T > | |
void | createVector2D (const CORE_Array2D< T > &array2D, const tBoolean &isCopied) |
template<class T > | |
void | createVector2D (const CORE_Array2D< T > &array2D) |
template<class T , class Q > | |
void | createPrimitiveMap (const map< T, Q > &primitiveMap) |
template<class T , class Q > | |
void | createPrimitiveMap (const CORE_Map< T, Q > &primitiveMap) |
void | saveClass (const UI_Object &obj) |
save class obj in the UI class structure More... | |
tBoolean | loadField (const tString &name, tString &v) const |
tBoolean | loadField (const tString &name, bool &v) const |
tBoolean | loadField (const tString &name, unsigned char &v) const |
tBoolean | loadField (const tString &name, char &v) const |
tBoolean | loadField (const tString &name, short &v) const |
tBoolean | loadField (const tString &name, int &v) const |
tBoolean | loadField (const tString &name, long int &v) const |
tBoolean | loadField (const tString &name, long long int &v) const |
tBoolean | loadField (const tString &name, unsigned long long int &v) const |
tBoolean | loadField (const tString &name, double &v) const |
tBoolean | loadField (const tString &name, long double &v) const |
tBoolean | loadField (const tString &name, vector< tString > &v) const |
tBoolean | loadField (const tString &name, vector< tBoolean > &v) const |
tBoolean | loadField (const tString &name, vector< unsigned char > &v) const |
tBoolean | loadField (const tString &name, vector< int > &v) const |
tBoolean | loadField (const tString &name, vector< double > &v) const |
tBoolean | loadField (const tString &name, vector< long double > &v) const |
template<class T > | |
tBoolean | loadField (const tString &name, CORE_Array< T > &v) const |
template<class T > | |
tBoolean | loadField (const tString &name, CORE_Array< T > &v, tBoolean &isCopied) const |
template<class T > | |
tBoolean | loadField (const tString &name, CORE_Array2D< T > &array2D, tBoolean &isCopied) const |
template<class T > | |
tBoolean | loadField (const tString &name, CORE_Array2D< T > &array2D) const |
template<class T > | |
tBoolean | loadField (const tString &name, CORE_Vector< T > &v) const |
tBoolean | loadField (const tString &name, int &n, tString *&v, tBoolean &isCopied) const |
tBoolean | loadField (const tString &name, int &n, tBoolean *&v, tBoolean &isCopied) const |
tBoolean | loadField (const tString &name, int &n, unsigned char *&v, tBoolean &isCopied) const |
tBoolean | loadField (const tString &name, int &n, int *&v, tBoolean &isCopied) const |
tBoolean | loadField (const tString &name, int &n, unsigned long int *&v, tBoolean &isCopied) const |
tBoolean | loadField (const tString &name, int &n, double *&v, tBoolean &isCopied) const |
tBoolean | loadField (const tString &name, int &n, long double *&v, tBoolean &isCopied) const |
tBoolean | loadField (const tString &name, int &n, long double *&v) const |
tBoolean | loadField (const tString &name, int &n, double *&v) const |
tBoolean | loadField (const tString &name, int &n, tString *&v) const |
tBoolean | loadField (const tString &name, int &n, int *&v) const |
tBoolean | loadField (const tString &name, const int &n, long double v[]) const |
tBoolean | loadField (const tString &name, const int &n, double v[]) const |
tBoolean | loadField (const tString &name, const int &n, int v[]) const |
template<class T , class Q > | |
tBoolean | loadField (const tString &name, map< T, Q > &primitiveMap) const |
template<class T , class Q > | |
tBoolean | loadField (const tString &name, CORE_Map< T, Q > &primitiveMap) const |
tBoolean | loadFullMatrixField (const tString &name, int &nRows, int &nCols, double *&values, tBoolean &isCopied) const |
tBoolean | loadFullMatrixField (const tString &name, int &nRows, int &nCols, double *&values) const |
tBoolean | loadFullSymmetricMatrixField (const tString &name, int &nRows, double *&values, tBoolean &isCopied) const |
tBoolean | loadFullSymmetricMatrixField (const tString &name, int &nRows, double *&values) const |
tBoolean | loadPackedSymmetricMatrixField (const tString &name, int &nRows, double *&values, tBoolean &isCopied) const |
tBoolean | loadPackedSymmetricMatrixField (const tString &name, int &nRows, double *&values) const |
tBoolean | saveField (const tString &name, const tString &v) |
tBoolean | saveField (const tString &name, const tBoolean &v) |
tBoolean | saveField (const tString &name, const char &v) |
tBoolean | saveField (const tString &name, const unsigned char &v) |
tBoolean | saveField (const tString &name, const short int &v) |
tBoolean | saveField (const tString &name, const int &v) |
tBoolean | saveField (const tString &name, const long int &v) |
tBoolean | saveField (const tString &name, const long long int &v) |
tBoolean | saveField (const tString &name, const unsigned long long int &v) |
tBoolean | saveField (const tString &name, const double &v) |
tBoolean | saveField (const tString &name, const long double &v) |
template<class T > | |
tBoolean | saveField (const tString &name, const int &n, const T *v) |
template<class T > | |
tBoolean | saveField (const tString &name, const int &n, const T *v, const tBoolean &isCopied) |
template<class T > | |
tBoolean | saveField (const tString &name, const vector< T > &v) |
template<class T , class Q > | |
tBoolean | saveField (const tString &name, const map< T, Q > &primitiveMap) |
template<class T > | |
tBoolean | saveField (const tString &name, const CORE_Array< T > &v) |
template<class T > | |
tBoolean | saveField (const tString &name, const CORE_Array2D< T > &v) |
template<class T > | |
tBoolean | saveField (const tString &name, const CORE_Vector< T > &v) |
template<class T , class Q > | |
tBoolean | saveField (const tString &name, const CORE_Map< T, Q > &primitiveMap) |
tBoolean | createFullMatrixField (const tString &name, const int &nRows, const int &nCols) |
tBoolean | saveFullMatrixField (const tString &name, const int &nRows, const int &nCols, const double *values) |
tBoolean | saveFullSymmetricMatrixField (const tString &name, const int &nRows, const double *values) |
tBoolean | savePackedSymmetricMatrixField (const tString &name, const int &nRows, const double *values) |
virtual void | finalize () |
method called for finalizing the saving in UI_CLass More... | |
void | saveAssociation (const tString &name, const tBoolean &isComposite, const CORE_Object *obj) |
save the association with single cardinality More... | |
void | saveAssociation (const tString &name, const CORE_Object *obj) |
save the association with single cardinality More... | |
template<class T > | |
void | saveAssociation (const tString &name, const boost::shared_ptr< T > &obj) |
save the association with single cardiality More... | |
template<class T > | |
void | saveAssociation (const tString &name, const boost::weak_ptr< T > &obj) |
save the association with single cardiality More... | |
template<class T > | |
void | saveAssociation (const tString &name, const CORE_SharedPointersList< T > &obj) |
save the association with multiple cardinality More... | |
template<class T > | |
void | saveAssociation (const tString &name, const CORE_WeakPointersList< T > &obj) |
save the association with multiple cardinality More... | |
template<class T , class V > | |
void | saveAssociation (const tString &name, const CORE_SharedPointersVMap< T, V > &objs) |
save the association with multiple cardinality More... | |
SP::CORE_Object | loadAssociation (const tString &name, const tBoolean &isComposite) const |
load the association Note that the factory class must be set to create the class If nit the return object is null. More... | |
SP::CORE_Object | loadAssociation (const tString &name) const |
load the association Note that the factory class must be set to create the class If nit the return object is null. More... | |
template<class T > | |
void | loadAssociation (const tString &name, boost::shared_ptr< T > &object) const |
template<class T > | |
void | loadAssociation (const tString &name, boost::weak_ptr< T > &object) const |
template<class T > | |
void | loadAssociation (const tString &name, CORE_SharedPointersList< T > &objs) const |
load the association with multiple cardinality More... | |
template<class T > | |
void | loadAssociation (const tString &name, CORE_WeakPointersList< T > &objs) const |
load the association with multiple cardinality More... | |
template<class K , class V > | |
void | loadAssociation (const tString &name, CORE_SharedPointersVMap< K, V > &objs) const |
load the association with multiple cardinality More... | |
template<class T , class V > | |
void | loadAssociation (const tString &name, CORE_SharedPointersVMap< T, V > &objects) const |
void | getSharedPointer (SP::CORE_Object &p) |
get the shared pointer of this class into p More... | |
void | getSharedPointer (SPC::CORE_Object &p) const |
get the shared pointer of this class into p More... | |
tString | getIdentityString () const |
return the identity string of the object of the form className_at_address More... | |
tString | getPointerAddress () const |
return the identity string of the object More... | |
template<class T > | |
tBoolean | isInstanceOf () const |
return true if the object is an instance of T More... | |
virtual void | print () |
print the class More... | |
virtual ostream & | print (ostream &out) const |
print the class More... | |
virtual void | print (const tString &message) |
print the class More... | |
virtual void | print (const tInteger &str) |
print More... | |
virtual void | print (const tRelativeInteger &str) |
print More... | |
virtual void | print (const tReal &str) |
print More... | |
virtual void | print (const int &str) |
print More... | |
Static Public Member Functions | |
static SP::MM_Structure | New () |
creta a matlab class More... | |
static tString | getClassName (const tString &identityString) |
return the class name of the object using only the identity string More... | |
template<class T > | |
static tString | getTypeName () |
get type name More... | |
static tBoolean | is64Architecture () |
return true if the machine is a 64 bits machine More... | |
static tBoolean | is32Architecture () |
return true if the machine is a 32 bits machine More... | |
static tString | pointer2String (const void *obj) |
return the string represantation of a pointer More... | |
static void | setOutput (ostream &out) |
set output More... | |
static ostream & | getOutput () |
get output More... | |
static void | printObjectsInMemory () |
print object in memory More... | |
static ostream & | print (ostream &out, const tString &message) |
print the class More... | |
static void | outputPrint (const tString &message) |
Static Public Attributes | |
static tBoolean | mIsMemoryTesting =false |
indicator to store all classes created and deleted only for debuging version More... | |
Protected Member Functions | |
MM_Structure (void) | |
create an object More... | |
virtual | ~MM_Structure (void) |
destroy an object. More... | |
void | setThis (SP::CORE_Object p) |
set this weak shared pointer called toDoAfterThis setting method More... | |
virtual void | setType (tString type) |
set the type of the object More... | |
virtual void | toDoAfterThisSetting () |
method called after setThis() method this method can oly be called once. More... | |
This class is a class for MetaModel exchange.
|
protected |
create an object
References CORE_Object::setType().
Referenced by New().
|
protectedvirtual |
destroy an object.
|
virtual |
create the empty structure
Implements UI_Class.
References MM_Class::New().
|
inlinevirtual |
creathe the class
Reimplemented from UI_Class.
References UI_Class::createClass().
|
virtual |
create a multiple association of size n with name fieldname of type isComoposite
Implements UI_Class.
References MM_Class::createCompositeAssociation(), and null.
|
virtual |
create a vector of double of size n
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a matrix values must be of size nRows*nCols
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a matrix of size nRows * nCols return the values in column storage
Implements UI_Class.
References createValue(), and MM_Attribute::New().
|
inlinevirtualinherited |
create a matrix values must be of size nRows*nCols
References UI_Class::createFullMatrix(), and tBoolean.
|
inlineinherited |
References UI_Class::NewInstance(), and UI_Class::setField().
|
inlinevirtualinherited |
create a full symmetric matrix values must be of size nRows*nRows
References UI_Class::createVector().
Referenced by UI_Class::createFullSymmetricMatrix().
|
inlinevirtualinherited |
create a full symmetric matrix
values must be of size nRows*nRows
References UI_Class::createFullSymmetricMatrix(), and tBoolean.
|
virtual |
create a vector of int of size n
Implements UI_Class.
References MM_Attribute::New().
|
inlinevirtualinherited |
create a packed symmetric matrix values must be of size nRows*(nRows+1)/2
References UI_Class::createVector().
Referenced by UI_Class::createPackedSymmetricMatrix().
|
inlinevirtualinherited |
create a packed symmetric matrix values must be of size nRows*(nRows+1)/2
References UI_Class::createPackedSymmetricMatrix(), and tBoolean.
|
inlineinherited |
References UI_Class::createClass(), and UI_Class::saveField().
|
inlineinherited |
References UI_Class::createClass(), CORE_Object::getIdentityString(), CORE_Map< Key, Value >::getKeys(), CORE_Map< Key, Value >::getValues(), and UI_Class::saveField().
|
virtual |
create a scalar
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a scalar
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a scalar
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a scalar
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a scalar
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a scalar
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a scalar
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a scalar
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a scalar
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a scalar
Implements UI_Class.
References MM_Attribute::New().
|
inlinevirtualinherited |
|
virtual |
create a string
Implements UI_Class.
References MM_Attribute::New().
|
inline |
set generic value
References MM_Attribute::New().
Referenced by createFullMatrix().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
Referenced by createVector().
|
virtual |
create a vector size of values must be n
References MM_Attribute::New().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
inlinevirtual |
create a vector size of values must be n
References createVector().
|
inlinevirtual |
create a vector size of values must be n
Reimplemented from UI_Class.
References createVector().
|
inlinevirtual |
|
inlinevirtual |
|
inlinevirtual |
create a vector size of values must be n
Reimplemented from UI_Class.
References createVector().
|
inlinevirtual |
create a vector size of values must be n
Reimplemented from UI_Class.
References createVector().
|
inlinevirtual |
create a vector size of values must be n
References createVector().
|
inlinevirtual |
create a vector size of values must be n
Reimplemented from UI_Class.
References createVector().
|
inlinevirtual |
create a vector size of values must be n
Reimplemented from UI_Class.
References createVector().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a vector size of values must be n
References MM_Attribute::New().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
pure virtualinherited |
create a vector of string
|
inlinevirtual |
create a vector size of values must be n
References createVector().
|
virtual |
create a vector of long long int size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
inlinevirtual |
create a vector size of values must be n
References createVector().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
virtual |
create a vector size of values must be n
Implements UI_Class.
References MM_Attribute::New().
|
inlineinherited |
References UI_Class::createClass(), CORE_Object::getClassName(), CORE_Array2D< T >::getRowIndices(), CORE_Array2D< T >::getRowsNumber(), CORE_Array2D< T >::getValues(), CORE_Array2D< T >::getValuesNumber(), and UI_Class::saveField().
Referenced by UI_Class::createVector2D().
|
inlineinherited |
|
inlinevirtualinherited |
method called for finalizing the saving in UI_CLass
Referenced by UI_Class::createClass(), and UI_Class::saveClass().
|
inlinevirtual |
get the number of classes in the structure
Implements UI_Class.
References MM_Class::getAssociationCardinality(), and null.
|
inlinevirtual |
get the data field at index of the list
Implements UI_Class.
References MM_Class::getAssociation(), null, and setData().
return the class name of the object using only the identity string
Referenced by UI_Class::createVector2D(), LAP_DoublePackedUpperMatrix::matrixProduct(), LAP_DoubleBandedUpperMatrix::matrixProduct(), LAP_DoubleFullUpperMatrix::matrixProduct(), and CORE_Object::printObjectsInMemory().
|
inlinevirtual |
get the field type
Implements UI_Class.
References MM_Class::getClassId(), and null.
|
inline |
get the build data
Referenced by setClassIntoList(), and setField().
|
inlinevirtual |
get the field
Implements UI_Class.
References MM_Class::getField(), null, and setData().
|
inlinevirtual |
get the field names
Implements UI_Class.
References MM_Class::getFieldNames(), and null.
|
inlinevirtual |
get the double full matrix value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isDoubleFullMatrix(), and tBoolean.
|
inlineinherited |
return the identity string of the object of the form className_at_address
References CORE_Object::getClassName(), CORE_Object::pointer2String(), and tString.
Referenced by UI_Class::createPrimitiveMap(), UI_Class::saveAssociation(), UI_Class::saveClass(), UI_ClassFactory::saveIntoClass(), MATH_StiefelFunction::toString(), LAP_2DView::toString(), CORE_Object::toString(), MATH_StiefelOptimizer::toString(), and MM_Class::toString().
|
inlineinherited |
set the interface type
Referenced by UI_Class::loadAssociation(), MMSD_Cluster::loadFromUIClass(), MMSD_Model::loadFromUIClass(), UI_Class::saveAssociation(), MMSD_Cluster::saveToUIClass(), and MMSD_Model::saveToUIClass().
|
inlinestaticinherited |
get output
|
inlineinherited |
return the identity string of the object
References CORE_Object::pointer2String().
|
inlineinherited |
get a primitive map
References UI_Class::hasField(), and UI_Class::loadField().
|
inlineinherited |
get a primitive map
References CORE_Map< Key, Value >::clear(), UI_Class::hasField(), UI_Class::loadField(), and CORE_Map< Key, Value >::put().
get the boolean value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isString(), and tBoolean.
|
inlinevirtual |
get the boolean value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
|
inlinevirtual |
get the boolean value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
|
inlinevirtual |
get the integer value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
get the string value of argvalue
References UI_Class::getString().
|
inlinevirtual |
get the integer value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
|
inlinevirtual |
get the integer value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
|
inlinevirtual |
get the integer value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
|
inlinevirtual |
get the integer value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
|
inlinevirtual |
get the integer value of argvalue
References MM_Attribute::getValue().
|
inlinevirtual |
get the double value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
|
inlinevirtual |
get the double value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
|
inlineinherited |
get the shared pointer of this class into p
Referenced by CORE_Map< Key, Value >::getSharedPointer(), CORE_Array< tFlag >::getSharedPointer(), LAP_ConstVector< lapack_real >::getSharedPointer(), STAT_Combinatorial< T >::getSharedPointer(), LAP_Vector< lapack_int >::getSharedPointer(), CORE_Vector< T >::getSharedPointer(), CORE_Matrix< T >::getSharedPointer(), and CORE_Object::printObjectsInMemory().
|
inlineinherited |
get the shared pointer of this class into p
get the string value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
|
inlinestaticinherited |
get type name
References tString.
get the string vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue().
|
inlinevirtual |
get the vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isString(), tBoolean, and tString.
|
inlinevirtual |
get the vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isBoolean(), and tBoolean.
|
inlinevirtual |
get the vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isChar(), and tBoolean.
|
inlinevirtual |
get the vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isInt(), and tBoolean.
|
inlinevirtual |
get the vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isInt(), and tBoolean.
|
inlinevirtualinherited |
get the int vector value of argvalue
References UI_Class::getVector(), null, and tBoolean.
|
inlinevirtual |
get the vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isLongInt(), and tBoolean.
|
inlinevirtualinherited |
get the int vector value of argvalue
References UI_Class::getVector(), null, and tBoolean.
|
inlinevirtual |
get the vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isLongInt(), and tBoolean.
|
inlinevirtualinherited |
get the int vector value of argvalue
References UI_Class::getVector(), null, and tBoolean.
|
inlinevirtual |
get the vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isLongLongInt(), and tBoolean.
|
inlinevirtualinherited |
get the int vector value of argvalue
References UI_Class::getVector(), null, and tBoolean.
|
inlinevirtual |
get the vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isDouble(), and tBoolean.
|
inlinevirtualinherited |
get the int vector value of argvalue
References UI_Class::getVector(), null, and tBoolean.
|
inlinevirtual |
get the vector value of argvalue
Implements UI_Class.
References MM_Attribute::getValue(), isLongDouble(), and tBoolean.
|
inlineinherited |
get a 2D vector (or dynamical matrix with different row size)
References UI_Class::getField(), UI_Class::NewInstance(), null, CORE_Array2D< T >::setValues(), and tBoolean.
|
inlineinherited |
set the version
References UI_Class::loadField(), and tString.
verify if the mData is a class which contains field
Implements UI_Class.
References MM_Class::hasField(), and null.
verify if the mData is a struct with fields names
Implements UI_Class.
References MM_Class::hasField(), and null.
|
inlinestaticinherited |
return true if the machine is a 32 bits machine
References CORE_Object::is64Architecture().
|
staticinherited |
return true if the machine is a 64 bits machine
Referenced by CORE_Object::is32Architecture().
|
inlineinherited |
return true if the array must be copied
Referenced by UI_Class::loadAssociation(), UI_Class::loadField(), and UI_Class::saveAssociation().
Implements UI_Class.
References MM_Attribute::isBoolean(), MM_Attribute::isVector(), and null.
Referenced by getVector().
|
inlinevirtual |
Implements UI_Class.
References MM_Attribute::isChar(), MM_Attribute::isVector(), and null.
Referenced by getVector().
|
inlinevirtual |
Implements UI_Class.
References MM_Attribute::isDouble(), MM_Attribute::isVector(), and null.
Referenced by getVector().
|
inlinevirtual |
Implements UI_Class.
References MM_Attribute::isDouble(), MM_Attribute::isMatrix(), and null.
Referenced by getFullMatrix().
Implements UI_Class.
References MM_Attribute::isFloat(), MM_Attribute::isVector(), and null.
|
inlineinherited |
return true if the object is an instance of T
References null.
|
inlinevirtual |
Implements UI_Class.
References MM_Attribute::isInt(), MM_Attribute::isVector(), and null.
Referenced by getVector().
|
inlinevirtualinherited |
References UI_Class::isChar(), UI_Class::isInt(), UI_Class::isLongInt(), UI_Class::isLongLongInt(), and UI_Class::isShortInt().
Implements UI_Class.
References MM_Attribute::isLongDouble(), MM_Attribute::isVector(), and null.
Referenced by getVector().
|
inlinevirtual |
Implements UI_Class.
References MM_Attribute::isLongInt(), MM_Attribute::isVector(), and null.
Referenced by getVector().
|
inlinevirtual |
Implements UI_Class.
References MM_Attribute::isLongLongInt(), MM_Attribute::isVector(), and null.
Referenced by getVector().
|
inlinevirtual |
Implements UI_Class.
References MM_Attribute::isShortInt(), MM_Attribute::isVector(), and null.
Implements UI_Class.
References MM_Attribute::isString(), MM_Attribute::isVector(), and null.
Referenced by getScalar(), and getVector().
|
inherited |
References CORE_SharedPointersVMap< Key, Value >::clear(), UI_Class::getField(), UI_Class::getInterfaceType(), UI_Object::hasBeenLoaded(), UI_Class::hasField(), UI_Class::isArrayCopied(), UI_Object::loadFromUIClass(), UI_Class::NewInstance(), null, CORE_SharedPointersVMap< Key, Value >::put(), and UI_Object::setHasBeenLoaded().
|
inherited |
load the association Note that the factory class must be set to create the class If nit the return object is null.
References UI_Class::getField(), UI_Class::getInterfaceType(), UI_Object::hasBeenLoaded(), UI_Class::hasField(), UI_Class::isArrayCopied(), UI_Object::loadFromUIClass(), UI_Class::NewInstance(), null, UI_Object::setHasBeenLoaded(), and tString.
Referenced by UI_Class::loadAssociation(), MMSD_Cluster::loadFromUIClass(), and MMSD_Model::loadFromUIClass().
|
inlineinherited |
load the association Note that the factory class must be set to create the class If nit the return object is null.
References UI_Class::loadAssociation().
|
inlineinherited |
|
inlineinherited |
|
inherited |
load the association with multiple cardinality
References CORE_SharedPointersList< T >::add(), CORE_SharedPointersList< T >::clear(), UI_Class::getClassesListSize(), UI_Class::getClassFromList(), UI_Class::getInterfaceType(), UI_Object::hasBeenLoaded(), UI_Class::hasField(), UI_Class::isArrayCopied(), UI_Object::loadFromUIClass(), UI_Class::NewInstance(), null, UI_Object::setHasBeenLoaded(), and tString.
|
inherited |
load the association with multiple cardinality
References CORE_WeakPointersList< T >::add(), CORE_WeakPointersList< T >::clear(), UI_Class::getClassesListSize(), UI_Class::getClassFromList(), UI_Class::getInterfaceType(), UI_Class::hasField(), UI_Class::isArrayCopied(), UI_Class::NewInstance(), null, and UI_Object::setHasBeenLoaded().
|
inherited |
load the association with multiple cardinality
References UI_Class::getField(), and UI_Class::NewInstance().
Referenced by UI_Class::getPrimitiveMap(), UI_Class::getVersion(), UI_Class::loadField(), MATH_KeplerFunction::loadFromUIClass(), MATH_QuadraticPolynom::loadFromUIClass(), MATH_CubicPolynom::loadFromUIClass(), MATH_Equation::loadFromUIClass(), MATH_TranscendentEquation::loadFromUIClass(), MMSD_Law::loadFromUIClass(), MMSD_DataSet::loadFromUIClass(), MMSD_Cluster::loadFromUIClass(), and MMSD_Model::loadFromUIClass().
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
|
inlineinherited |
References UI_Class::isArrayCopied(), UI_Class::loadField(), null, CORE_Array< T >::setValues(), CORE_Array< T >::setValuesByReference(), and tBoolean.
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
|
inlineinherited |
References CORE_Vector< T >::getValues(), UI_Class::loadField(), and tBoolean.
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References CORE_Map< Key, Value >::clear(), UI_Class::getField(), and UI_Class::NewInstance().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
Referenced by MMSD_Law::loadFromUIClass(), MMSD_DataSet::loadFromUIClass(), MMSD_Cluster::loadFromUIClass(), and UI_Class::loadFullMatrixField().
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
Referenced by UI_Class::loadFullSymmetricMatrixField().
|
inlineinherited |
References UI_Class::loadFullSymmetricMatrixField(), and tBoolean.
|
inlineinherited |
References UI_Class::getField(), and UI_Class::NewInstance().
Referenced by UI_Class::loadPackedSymmetricMatrixField().
|
inlineinherited |
References UI_Class::loadPackedSymmetricMatrixField(), and tBoolean.
|
inlinestatic |
creta a matlab class
References MM_Structure().
Referenced by MM_ClassFactory::loadFromFile(), NewInstance(), and MM_ClassFactory::saveIntoFile().
|
inlinevirtual |
|
staticinherited |
print on output
References null, and CORE_Object::print().
Referenced by CORE_Exception::CORE_Exception().
|
staticinherited |
return the string represantation of a pointer
References tString.
Referenced by CORE_Object::CORE_Object(), CORE_Object::getIdentityString(), CORE_Object::getPointerAddress(), and CORE_Object::~CORE_Object().
|
inlinevirtualinherited |
print the class
References CORE_Object::toString().
Referenced by CORE_Object::outputPrint(), CORE_Out::print(), CORE_Object::print(), CORE_Out::printInt(), CORE_Out::println(), CORE_Out::printReal(), CORE_Out::printString(), and CORE_Out::setAction().
|
inlinevirtualinherited |
print the class
References CORE_Object::print(), and CORE_Object::toString().
|
virtualinherited |
print the class
Reimplemented in CORE_Out.
References null, and CORE_Object::print().
|
virtualinherited |
References null.
|
virtualinherited |
References null.
|
inlinestaticinherited |
print the class
|
inlinevirtual |
print the message & quit
Implements UI_Class.
|
inlinevirtual |
print the message on screen
Implements UI_Class.
|
staticinherited |
print object in memory
References CORE_Object::getClassName(), CORE_Object::getSharedPointer(), and CORE_Object::mIsMemoryTesting.
Referenced by main().
|
inherited |
save the association with single cardinality
References CORE_Object::getIdentityString(), UI_Class::getInterfaceType(), UI_Class::isArrayCopied(), UI_Class::NewInstance(), null, UI_Object::saveToUIClass(), and UI_Class::setField().
Referenced by UI_Class::saveAssociation(), MMSD_Cluster::saveToUIClass(), and MMSD_Model::saveToUIClass().
|
inlineinherited |
save the association with single cardinality
References UI_Class::saveAssociation().
|
inlineinherited |
save the association with single cardiality
References UI_Class::saveAssociation().
|
inlineinherited |
save the association with single cardiality
References UI_Class::saveAssociation().
|
inherited |
save the association with multiple cardinality
References UI_Class::createClassesList(), CORE_SharedPointersList< T >::get(), CORE_Object::getIdentityString(), UI_Class::getInterfaceType(), CORE_SharedPointersList< T >::getSize(), UI_Class::isArrayCopied(), UI_Class::NewInstance(), null, UI_Object::saveToUIClass(), UI_Class::setClassIntoList(), and tBoolean.
|
inherited |
save the association with multiple cardinality
References UI_Class::createClassesList(), CORE_WeakPointersList< T >::get(), CORE_Object::getIdentityString(), UI_Class::getInterfaceType(), CORE_WeakPointersList< T >::getSize(), UI_Class::isArrayCopied(), UI_Class::NewInstance(), null, UI_Object::saveToUIClass(), UI_Class::setClassIntoList(), and tBoolean.
|
inherited |
save the association with multiple cardinality
References CORE_SharedPointersVMap< Key, Value >::get(), CORE_Object::getIdentityString(), UI_Class::getInterfaceType(), CORE_SharedPointersVMap< Key, Value >::getKeys(), CORE_SharedPointersVMap< Key, Value >::getSize(), UI_Class::isArrayCopied(), UI_Class::NewInstance(), null, UI_Object::saveToUIClass(), UI_Class::setField(), tBoolean, and tString.
|
inlineinherited |
save class obj in the UI class structure
References UI_Class::createClass(), UI_Class::finalize(), CORE_Object::getIdentityString(), CORE_ClassFactory::New(), null, UI_Object::saveToUIClass(), and UI_Class::setFactory().
References UI_Class::NewInstance(), and UI_Class::setField().
Referenced by UI_Class::createPrimitiveMap(), UI_Class::createVector2D(), UI_Class::saveField(), MATH_KeplerFunction::saveToUIClass(), MATH_QuadraticPolynom::saveToUIClass(), MATH_CubicPolynom::saveToUIClass(), MATH_Equation::saveToUIClass(), MATH_TranscendentEquation::saveToUIClass(), MMSD_Law::saveToUIClass(), MMSD_DataSet::saveToUIClass(), MMSD_Cluster::saveToUIClass(), MMSD_Model::saveToUIClass(), and UI_Class::setVersion().
References UI_Class::NewInstance(), and UI_Class::setField().
References UI_Class::NewInstance(), and UI_Class::setField().
References UI_Class::NewInstance(), and UI_Class::setField().
References UI_Class::NewInstance(), and UI_Class::setField().
References UI_Class::NewInstance(), and UI_Class::setField().
References UI_Class::NewInstance(), and UI_Class::setField().
References UI_Class::NewInstance(), and UI_Class::setField().
|
inlineinherited |
References UI_Class::NewInstance(), and UI_Class::setField().
References UI_Class::NewInstance(), and UI_Class::setField().
References UI_Class::NewInstance(), and UI_Class::setField().
|
inlineinherited |
References UI_Class::NewInstance(), and UI_Class::setField().
|
inlineinherited |
References UI_Class::NewInstance(), and UI_Class::setField().
|
inlineinherited |
References UI_Class::NewInstance(), and UI_Class::setField().
|
inlineinherited |
References CORE_Array< T >::getSize(), CORE_Array< T >::getValues(), UI_Class::saveField(), and tBoolean.
|
inlineinherited |
References UI_Class::NewInstance(), and UI_Class::setField().
|
inlineinherited |
References CORE_Vector< T >::getValues(), and UI_Class::saveField().
|
inlineinherited |
References UI_Class::NewInstance(), and UI_Class::setField().
|
inlineinherited |
References UI_Class::NewInstance(), UI_Class::setField(), and tBoolean.
Referenced by MMSD_Law::saveToUIClass(), MMSD_DataSet::saveToUIClass(), and MMSD_Cluster::saveToUIClass().
|
inlineinherited |
References UI_Class::NewInstance(), UI_Class::setField(), and tBoolean.
|
inlineinherited |
References UI_Class::NewInstance(), UI_Class::setField(), and tBoolean.
|
virtual |
set the index-th element of the classes list supposed to be composite or not depending on isComposite value
Implements UI_Class.
References MM_Class::getCompositeAssociation(), getData(), MM_Class::getSimpleAssociation(), and null.
|
inline |
set & get the data
Referenced by getClassFromList(), and getField().
|
inlineinherited |
|
virtual |
set the field fieldName of the class
Implements UI_Class.
References getData(), null, and MM_Class::setField().
Referenced by setField().
|
inlinevirtual |
set the field fieldName of the class
Reimplemented from UI_Class.
References setField().
|
inlineinherited |
set the interface type
|
inlineinherited |
set if the arrays must be copied
|
inlinestaticinherited |
set output
|
inlineprotectedinherited |
set this weak shared pointer called toDoAfterThis setting method
References CORE_Object::toDoAfterThisSetting().
|
inlineprotectedvirtualinherited |
set the type of the object
Referenced by LAP_IntegerVector::LAP_IntegerVector(), MATH_BetaFunction::MATH_BetaFunction(), MATH_C1Function::MATH_C1Function(), MATH_DigammaFunction::MATH_DigammaFunction(), MATH_EigenFunction::MATH_EigenFunction(), MATH_Equation::MATH_Equation(), MATH_Function::MATH_Function(), MATH_GammaFunction::MATH_GammaFunction(), MATH_KeplerFunction::MATH_KeplerFunction(), MATH_LogGammaFunction::MATH_LogGammaFunction(), MATH_NewtonEquation::MATH_NewtonEquation(), MATH_StiefelFunction::MATH_StiefelFunction(), MATH_StiefelOptimizer::MATH_StiefelOptimizer(), MATH_TranscendentEquation::MATH_TranscendentEquation(), MATH_TrigammaFunction::MATH_TrigammaFunction(), MATH_ZeroEquation::MATH_ZeroEquation(), MATH_ZKeplerFunction::MATH_ZKeplerFunction(), MM_Attribute::MM_Attribute(), MM_Class::MM_Class(), MM_ClassFactory::MM_ClassFactory(), MM_Data::MM_Data(), MM_Structure(), MMSD_ClassFactory::MMSD_ClassFactory(), MMSD_Cluster::MMSD_Cluster(), MMSD_ConstDoubleVector::MMSD_ConstDoubleVector(), MMSD_ConstraintGaussianCluster::MMSD_ConstraintGaussianCluster(), MMSD_ConstraintGaussianModel::MMSD_ConstraintGaussianModel(), MMSD_DataSet::MMSD_DataSet(), MMSD_DataSetClassFactory::MMSD_DataSetClassFactory(), MMSD_DoubleFullMatrix::MMSD_DoubleFullMatrix(), MMSD_DoubleSymmetricMatrix::MMSD_DoubleSymmetricMatrix(), MMSD_DoubleVector::MMSD_DoubleVector(), MMSD_FluryGautschiGaussianLaw::MMSD_FluryGautschiGaussianLaw(), MMSD_GaussianCluster::MMSD_GaussianCluster(), MMSD_GaussianFDFunction::MMSD_GaussianFDFunction(), MMSD_GaussianLaw::MMSD_GaussianLaw(), MMSD_GaussianModel::MMSD_GaussianModel(), MMSD_Law::MMSD_Law(), MMSD_Model::MMSD_Model(), MMSD_ModelClassFactory::MMSD_ModelClassFactory(), MMSD_Object::MMSD_Object(), MMSD_StiefelFunction::MMSD_StiefelFunction(), MMSD_StiefelGaussianLaw::MMSD_StiefelGaussianLaw(), STAT_BernoulliDistribution::STAT_BernoulliDistribution(), STAT_BinomialDistribution::STAT_BinomialDistribution(), STAT_Combinatorial< T >::STAT_Combinatorial(), STAT_DiracDistribution::STAT_DiracDistribution(), STAT_Distribution::STAT_Distribution(), STAT_ExponentialDistribution::STAT_ExponentialDistribution(), STAT_GammaDistribution::STAT_GammaDistribution(), STAT_GeometricDistribution::STAT_GeometricDistribution(), STAT_InverseNormalDistribution::STAT_InverseNormalDistribution(), STAT_NormalDistribution::STAT_NormalDistribution(), STAT_Object::STAT_Object(), STAT_PoissonDistribution::STAT_PoissonDistribution(), STAT_UniformDistribution::STAT_UniformDistribution(), and STAT_UniformLaplaceTransform::STAT_UniformLaplaceTransform().
|
inlineinherited |
|
inlineprotectedvirtualinherited |
method called after setThis() method this method can oly be called once.
Reimplemented in STAT_UniformLaplaceTransform.
Referenced by CORE_Object::setThis(), and STAT_UniformLaplaceTransform::toDoAfterThisSetting().
|
inlinevirtual |
turn the class into string
Reimplemented from CORE_Object.
|
staticinherited |
indicator to store all classes created and deleted only for debuging version
Referenced by CORE_Object::CORE_Object(), main(), CORE_Object::printObjectsInMemory(), and CORE_Object::~CORE_Object().