Package | Description |
---|---|
prodoc |
Main package of OpenProdoc containing most classes
|
Modifier and Type | Method and Description |
---|---|
Attribute |
PDObjDefs.ConvertRec(Record Rec)
Generates an Attribute from a Record containing definition (Ex.loaded from DDBB)
|
Attribute |
Attribute.Copy()
Creates a copy of the current Attribute.
|
Attribute |
Record.getAttr(int NumAttr)
Return the Attribute with the position specified in the record
|
Attribute |
Record.getAttr(java.lang.String NameAttr)
Returns the Attribute of the Record with the specified name
|
Attribute |
Record.nextAttr()
After initialization with
Record.initList() , allows to travel by the set of Attributes of the Record |
Modifier and Type | Method and Description |
---|---|
void |
PDObjDefs.addAtribute(Attribute Attr)
Add (and saves) a new attribute to the current object definition
|
void |
Record.addAttr(Attribute newAttr)
Adds an attribute to the current record
|
void |
PDObjDefs.AddObjectTables(java.lang.String Name,
Attribute NewAttr)
Update the definition of a created object type, adding an additional attribute
and updating the created tables
|
void |
Record.delAttr(Attribute DelAttr)
Removes an Attribute from the current Record
|
void |
PDObjDefs.DelObjectTables(java.lang.String Name,
Attribute OldAttr)
Removes an attribute from a created object type, updating definition and tables created
|
boolean |
Attribute.equalDef(Attribute Attr)
Compares if the current Attribute is equals in DEFINITION to the Attribute parameter
|
boolean |
Attribute.equals(Attribute Attr)
Compares if the current Attribute is equals in all elements (including values an definition) to the Attribute parameter
|
Constructor and Description |
---|
Condition(Attribute Attr)
Constructor that creates a condition where name_of_attribute = "value of attribute"
|
Condition(Attribute Attr,
int pComparation)
Constructor that creates a condition where name_of_attribute COMPARATION value_of_attribute
|