mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-13 14:27:08 +03:00
0024830: Remove redundant keyword 'mutable' in CDL declarations
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
This commit is contained in:
@@ -24,84 +24,84 @@ uses
|
||||
Boolean from Standard
|
||||
is
|
||||
|
||||
Create returns mutable Address;
|
||||
Create returns Address;
|
||||
---Purpose: Returns a Address
|
||||
|
||||
Init (me : mutable;
|
||||
hasAinternalLocation : Boolean from Standard;
|
||||
aInternalLocation : mutable HAsciiString from TCollection;
|
||||
aInternalLocation : HAsciiString from TCollection;
|
||||
hasAstreetNumber : Boolean from Standard;
|
||||
aStreetNumber : mutable HAsciiString from TCollection;
|
||||
aStreetNumber : HAsciiString from TCollection;
|
||||
hasAstreet : Boolean from Standard;
|
||||
aStreet : mutable HAsciiString from TCollection;
|
||||
aStreet : HAsciiString from TCollection;
|
||||
hasApostalBox : Boolean from Standard;
|
||||
aPostalBox : mutable HAsciiString from TCollection;
|
||||
aPostalBox : HAsciiString from TCollection;
|
||||
hasAtown : Boolean from Standard;
|
||||
aTown : mutable HAsciiString from TCollection;
|
||||
aTown : HAsciiString from TCollection;
|
||||
hasAregion : Boolean from Standard;
|
||||
aRegion : mutable HAsciiString from TCollection;
|
||||
aRegion : HAsciiString from TCollection;
|
||||
hasApostalCode : Boolean from Standard;
|
||||
aPostalCode : mutable HAsciiString from TCollection;
|
||||
aPostalCode : HAsciiString from TCollection;
|
||||
hasAcountry : Boolean from Standard;
|
||||
aCountry : mutable HAsciiString from TCollection;
|
||||
aCountry : HAsciiString from TCollection;
|
||||
hasAfacsimileNumber : Boolean from Standard;
|
||||
aFacsimileNumber : mutable HAsciiString from TCollection;
|
||||
aFacsimileNumber : HAsciiString from TCollection;
|
||||
hasAtelephoneNumber : Boolean from Standard;
|
||||
aTelephoneNumber : mutable HAsciiString from TCollection;
|
||||
aTelephoneNumber : HAsciiString from TCollection;
|
||||
hasAelectronicMailAddress : Boolean from Standard;
|
||||
aElectronicMailAddress : mutable HAsciiString from TCollection;
|
||||
aElectronicMailAddress : HAsciiString from TCollection;
|
||||
hasAtelexNumber : Boolean from Standard;
|
||||
aTelexNumber : mutable HAsciiString from TCollection) is virtual;
|
||||
aTelexNumber : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetInternalLocation(me : mutable; aInternalLocation : mutable HAsciiString);
|
||||
SetInternalLocation(me : mutable; aInternalLocation : HAsciiString);
|
||||
UnSetInternalLocation (me:mutable);
|
||||
InternalLocation (me) returns mutable HAsciiString;
|
||||
InternalLocation (me) returns HAsciiString;
|
||||
HasInternalLocation (me) returns Boolean;
|
||||
SetStreetNumber(me : mutable; aStreetNumber : mutable HAsciiString);
|
||||
SetStreetNumber(me : mutable; aStreetNumber : HAsciiString);
|
||||
UnSetStreetNumber (me:mutable);
|
||||
StreetNumber (me) returns mutable HAsciiString;
|
||||
StreetNumber (me) returns HAsciiString;
|
||||
HasStreetNumber (me) returns Boolean;
|
||||
SetStreet(me : mutable; aStreet : mutable HAsciiString);
|
||||
SetStreet(me : mutable; aStreet : HAsciiString);
|
||||
UnSetStreet (me:mutable);
|
||||
Street (me) returns mutable HAsciiString;
|
||||
Street (me) returns HAsciiString;
|
||||
HasStreet (me) returns Boolean;
|
||||
SetPostalBox(me : mutable; aPostalBox : mutable HAsciiString);
|
||||
SetPostalBox(me : mutable; aPostalBox : HAsciiString);
|
||||
UnSetPostalBox (me:mutable);
|
||||
PostalBox (me) returns mutable HAsciiString;
|
||||
PostalBox (me) returns HAsciiString;
|
||||
HasPostalBox (me) returns Boolean;
|
||||
SetTown(me : mutable; aTown : mutable HAsciiString);
|
||||
SetTown(me : mutable; aTown : HAsciiString);
|
||||
UnSetTown (me:mutable);
|
||||
Town (me) returns mutable HAsciiString;
|
||||
Town (me) returns HAsciiString;
|
||||
HasTown (me) returns Boolean;
|
||||
SetRegion(me : mutable; aRegion : mutable HAsciiString);
|
||||
SetRegion(me : mutable; aRegion : HAsciiString);
|
||||
UnSetRegion (me:mutable);
|
||||
Region (me) returns mutable HAsciiString;
|
||||
Region (me) returns HAsciiString;
|
||||
HasRegion (me) returns Boolean;
|
||||
SetPostalCode(me : mutable; aPostalCode : mutable HAsciiString);
|
||||
SetPostalCode(me : mutable; aPostalCode : HAsciiString);
|
||||
UnSetPostalCode (me:mutable);
|
||||
PostalCode (me) returns mutable HAsciiString;
|
||||
PostalCode (me) returns HAsciiString;
|
||||
HasPostalCode (me) returns Boolean;
|
||||
SetCountry(me : mutable; aCountry : mutable HAsciiString);
|
||||
SetCountry(me : mutable; aCountry : HAsciiString);
|
||||
UnSetCountry (me:mutable);
|
||||
Country (me) returns mutable HAsciiString;
|
||||
Country (me) returns HAsciiString;
|
||||
HasCountry (me) returns Boolean;
|
||||
SetFacsimileNumber(me : mutable; aFacsimileNumber : mutable HAsciiString);
|
||||
SetFacsimileNumber(me : mutable; aFacsimileNumber : HAsciiString);
|
||||
UnSetFacsimileNumber (me:mutable);
|
||||
FacsimileNumber (me) returns mutable HAsciiString;
|
||||
FacsimileNumber (me) returns HAsciiString;
|
||||
HasFacsimileNumber (me) returns Boolean;
|
||||
SetTelephoneNumber(me : mutable; aTelephoneNumber : mutable HAsciiString);
|
||||
SetTelephoneNumber(me : mutable; aTelephoneNumber : HAsciiString);
|
||||
UnSetTelephoneNumber (me:mutable);
|
||||
TelephoneNumber (me) returns mutable HAsciiString;
|
||||
TelephoneNumber (me) returns HAsciiString;
|
||||
HasTelephoneNumber (me) returns Boolean;
|
||||
SetElectronicMailAddress(me : mutable; aElectronicMailAddress : mutable HAsciiString);
|
||||
SetElectronicMailAddress(me : mutable; aElectronicMailAddress : HAsciiString);
|
||||
UnSetElectronicMailAddress (me:mutable);
|
||||
ElectronicMailAddress (me) returns mutable HAsciiString;
|
||||
ElectronicMailAddress (me) returns HAsciiString;
|
||||
HasElectronicMailAddress (me) returns Boolean;
|
||||
SetTelexNumber(me : mutable; aTelexNumber : mutable HAsciiString);
|
||||
SetTelexNumber(me : mutable; aTelexNumber : HAsciiString);
|
||||
UnSetTelexNumber (me:mutable);
|
||||
TelexNumber (me) returns mutable HAsciiString;
|
||||
TelexNumber (me) returns HAsciiString;
|
||||
HasTelexNumber (me) returns Boolean;
|
||||
|
||||
fields
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable ApplicationContext;
|
||||
Create returns ApplicationContext;
|
||||
---Purpose: Returns a ApplicationContext
|
||||
|
||||
Init (me : mutable;
|
||||
aApplication : mutable HAsciiString from TCollection) is virtual;
|
||||
aApplication : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetApplication(me : mutable; aApplication : mutable HAsciiString);
|
||||
Application (me) returns mutable HAsciiString;
|
||||
SetApplication(me : mutable; aApplication : HAsciiString);
|
||||
Application (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,19 +24,19 @@ uses
|
||||
ApplicationContext from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ApplicationContextElement;
|
||||
Create returns ApplicationContextElement;
|
||||
---Purpose: Returns a ApplicationContextElement
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aFrameOfReference : mutable ApplicationContext from StepBasic) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aFrameOfReference : ApplicationContext from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetFrameOfReference(me : mutable; aFrameOfReference : mutable ApplicationContext);
|
||||
FrameOfReference (me) returns mutable ApplicationContext;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetFrameOfReference(me : mutable; aFrameOfReference : ApplicationContext);
|
||||
FrameOfReference (me) returns ApplicationContext;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,25 +25,25 @@ uses
|
||||
ApplicationContext from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ApplicationProtocolDefinition;
|
||||
Create returns ApplicationProtocolDefinition;
|
||||
---Purpose: Returns a ApplicationProtocolDefinition
|
||||
|
||||
Init (me : mutable;
|
||||
aStatus : mutable HAsciiString from TCollection;
|
||||
aApplicationInterpretedModelSchemaName : mutable HAsciiString from TCollection;
|
||||
aStatus : HAsciiString from TCollection;
|
||||
aApplicationInterpretedModelSchemaName : HAsciiString from TCollection;
|
||||
aApplicationProtocolYear : Integer from Standard;
|
||||
aApplication : mutable ApplicationContext from StepBasic) is virtual;
|
||||
aApplication : ApplicationContext from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetStatus(me : mutable; aStatus : mutable HAsciiString);
|
||||
Status (me) returns mutable HAsciiString;
|
||||
SetApplicationInterpretedModelSchemaName(me : mutable; aApplicationInterpretedModelSchemaName : mutable HAsciiString);
|
||||
ApplicationInterpretedModelSchemaName (me) returns mutable HAsciiString;
|
||||
SetStatus(me : mutable; aStatus : HAsciiString);
|
||||
Status (me) returns HAsciiString;
|
||||
SetApplicationInterpretedModelSchemaName(me : mutable; aApplicationInterpretedModelSchemaName : HAsciiString);
|
||||
ApplicationInterpretedModelSchemaName (me) returns HAsciiString;
|
||||
SetApplicationProtocolYear(me : mutable; aApplicationProtocolYear : Integer);
|
||||
ApplicationProtocolYear (me) returns Integer;
|
||||
SetApplication(me : mutable; aApplication : mutable ApplicationContext);
|
||||
Application (me) returns mutable ApplicationContext;
|
||||
SetApplication(me : mutable; aApplication : ApplicationContext);
|
||||
Application (me) returns ApplicationContext;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,19 +24,19 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable Approval;
|
||||
Create returns Approval;
|
||||
---Purpose: Returns a Approval
|
||||
|
||||
Init (me : mutable;
|
||||
aStatus : mutable ApprovalStatus from StepBasic;
|
||||
aLevel : mutable HAsciiString from TCollection) is virtual;
|
||||
aStatus : ApprovalStatus from StepBasic;
|
||||
aLevel : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetStatus(me : mutable; aStatus : mutable ApprovalStatus);
|
||||
Status (me) returns mutable ApprovalStatus;
|
||||
SetLevel(me : mutable; aLevel : mutable HAsciiString);
|
||||
Level (me) returns mutable HAsciiString;
|
||||
SetStatus(me : mutable; aStatus : ApprovalStatus);
|
||||
Status (me) returns ApprovalStatus;
|
||||
SetLevel(me : mutable; aLevel : HAsciiString);
|
||||
Level (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,12 +24,12 @@ uses
|
||||
is
|
||||
|
||||
Init (me : mutable;
|
||||
aAssignedApproval : mutable Approval from StepBasic) is virtual;
|
||||
aAssignedApproval : Approval from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetAssignedApproval(me : mutable; aAssignedApproval : mutable Approval);
|
||||
AssignedApproval (me) returns mutable Approval;
|
||||
SetAssignedApproval(me : mutable; aAssignedApproval : Approval);
|
||||
AssignedApproval (me) returns Approval;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ApprovalDateTime;
|
||||
Create returns ApprovalDateTime;
|
||||
|
||||
Init (me : mutable;
|
||||
aDateTime : DateTimeSelect;
|
||||
|
@@ -25,22 +25,22 @@ uses
|
||||
ApprovalRole from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ApprovalPersonOrganization;
|
||||
Create returns ApprovalPersonOrganization;
|
||||
---Purpose: Returns a ApprovalPersonOrganization
|
||||
|
||||
Init (me : mutable;
|
||||
aPersonOrganization : PersonOrganizationSelect from StepBasic;
|
||||
aAuthorizedApproval : mutable Approval from StepBasic;
|
||||
aRole : mutable ApprovalRole from StepBasic) is virtual;
|
||||
aAuthorizedApproval : Approval from StepBasic;
|
||||
aRole : ApprovalRole from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetPersonOrganization(me : mutable; aPersonOrganization : PersonOrganizationSelect);
|
||||
PersonOrganization (me) returns PersonOrganizationSelect;
|
||||
SetAuthorizedApproval(me : mutable; aAuthorizedApproval : mutable Approval);
|
||||
AuthorizedApproval (me) returns mutable Approval;
|
||||
SetRole(me : mutable; aRole : mutable ApprovalRole);
|
||||
Role (me) returns mutable ApprovalRole;
|
||||
SetAuthorizedApproval(me : mutable; aAuthorizedApproval : Approval);
|
||||
AuthorizedApproval (me) returns Approval;
|
||||
SetRole(me : mutable; aRole : ApprovalRole);
|
||||
Role (me) returns ApprovalRole;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,25 +24,25 @@ uses
|
||||
Approval from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ApprovalRelationship;
|
||||
Create returns ApprovalRelationship;
|
||||
---Purpose: Returns a ApprovalRelationship
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aDescription : mutable HAsciiString from TCollection;
|
||||
aRelatingApproval : mutable Approval from StepBasic;
|
||||
aRelatedApproval : mutable Approval from StepBasic) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aDescription : HAsciiString from TCollection;
|
||||
aRelatingApproval : Approval from StepBasic;
|
||||
aRelatedApproval : Approval from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : mutable HAsciiString);
|
||||
Description (me) returns mutable HAsciiString;
|
||||
SetRelatingApproval(me : mutable; aRelatingApproval : mutable Approval);
|
||||
RelatingApproval (me) returns mutable Approval;
|
||||
SetRelatedApproval(me : mutable; aRelatedApproval : mutable Approval);
|
||||
RelatedApproval (me) returns mutable Approval;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HAsciiString);
|
||||
Description (me) returns HAsciiString;
|
||||
SetRelatingApproval(me : mutable; aRelatingApproval : Approval);
|
||||
RelatingApproval (me) returns Approval;
|
||||
SetRelatedApproval(me : mutable; aRelatedApproval : Approval);
|
||||
RelatedApproval (me) returns Approval;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable ApprovalRole;
|
||||
Create returns ApprovalRole;
|
||||
---Purpose: Returns a ApprovalRole
|
||||
|
||||
Init (me : mutable;
|
||||
aRole : mutable HAsciiString from TCollection) is virtual;
|
||||
aRole : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetRole(me : mutable; aRole : mutable HAsciiString);
|
||||
Role (me) returns mutable HAsciiString;
|
||||
SetRole(me : mutable; aRole : HAsciiString);
|
||||
Role (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable ApprovalStatus;
|
||||
Create returns ApprovalStatus;
|
||||
---Purpose: Returns a ApprovalStatus
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is virtual;
|
||||
aName : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -20,6 +20,6 @@ class AreaUnit from StepBasic inherits NamedUnit from StepBasic
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable AreaUnit from StepBasic;
|
||||
Create returns AreaUnit from StepBasic;
|
||||
|
||||
end AreaUnit;
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
Integer from Standard
|
||||
is
|
||||
|
||||
Create returns mutable CalendarDate;
|
||||
Create returns CalendarDate;
|
||||
---Purpose: Returns a CalendarDate
|
||||
|
||||
|
||||
|
@@ -25,24 +25,24 @@ uses
|
||||
DimensionalExponents from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ConversionBasedUnit;
|
||||
Create returns ConversionBasedUnit;
|
||||
---Purpose: Returns a ConversionBasedUnit
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aDimensions : mutable DimensionalExponents from StepBasic) is redefined;
|
||||
aDimensions : DimensionalExponents from StepBasic) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aDimensions : mutable DimensionalExponents from StepBasic;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aConversionFactor : mutable MeasureWithUnit from StepBasic) is virtual;
|
||||
aDimensions : DimensionalExponents from StepBasic;
|
||||
aName : HAsciiString from TCollection;
|
||||
aConversionFactor : MeasureWithUnit from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetConversionFactor(me : mutable; aConversionFactor : mutable MeasureWithUnit);
|
||||
ConversionFactor (me) returns mutable MeasureWithUnit;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetConversionFactor(me : mutable; aConversionFactor : MeasureWithUnit);
|
||||
ConversionFactor (me) returns MeasureWithUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,12 +24,12 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ConversionBasedUnitAndAreaUnit from StepBasic;
|
||||
Create returns ConversionBasedUnitAndAreaUnit from StepBasic;
|
||||
---Purpose: Returns a ConversionBasedUnitAndAreaUnit
|
||||
|
||||
SetAreaUnit(me: mutable; anAreaUnit: mutable AreaUnit from StepBasic);
|
||||
SetAreaUnit(me: mutable; anAreaUnit: AreaUnit from StepBasic);
|
||||
|
||||
AreaUnit(me) returns mutable AreaUnit from StepBasic;
|
||||
AreaUnit(me) returns AreaUnit from StepBasic;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -27,21 +27,21 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ConversionBasedUnitAndLengthUnit;
|
||||
Create returns ConversionBasedUnitAndLengthUnit;
|
||||
---Purpose: Returns a ConversionBasedUnitAndLengthUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aConversionFactor: mutable MeasureWithUnit from StepBasic) is redefined;
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic;
|
||||
aName : HAsciiString from TCollection;
|
||||
aConversionFactor: MeasureWithUnit from StepBasic) is redefined;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetLengthUnit(me: mutable; aLengthUnit: mutable LengthUnit);
|
||||
SetLengthUnit(me: mutable; aLengthUnit: LengthUnit);
|
||||
|
||||
LengthUnit (me) returns mutable LengthUnit;
|
||||
LengthUnit (me) returns LengthUnit;
|
||||
|
||||
-- Specific Methods for ANDOR Field Data Access --
|
||||
|
||||
|
@@ -26,21 +26,21 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ConversionBasedUnitAndMassUnit;
|
||||
Create returns ConversionBasedUnitAndMassUnit;
|
||||
---Purpose: Returns a ConversionBasedUnitAndLengthUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aConversionFactor: mutable MeasureWithUnit from StepBasic) is redefined;
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic;
|
||||
aName : HAsciiString from TCollection;
|
||||
aConversionFactor: MeasureWithUnit from StepBasic) is redefined;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetMassUnit(me: mutable; aMassUnit: mutable MassUnit);
|
||||
SetMassUnit(me: mutable; aMassUnit: MassUnit);
|
||||
|
||||
MassUnit (me) returns mutable MassUnit;
|
||||
MassUnit (me) returns MassUnit;
|
||||
|
||||
-- Specific Methods for ANDOR Field Data Access --
|
||||
|
||||
|
@@ -27,21 +27,21 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ConversionBasedUnitAndPlaneAngleUnit;
|
||||
Create returns ConversionBasedUnitAndPlaneAngleUnit;
|
||||
---Purpose: Returns a ConversionBasedUnitAndPlaneAngleUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aConversionFactor: mutable MeasureWithUnit from StepBasic) is redefined;
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic;
|
||||
aName : HAsciiString from TCollection;
|
||||
aConversionFactor: MeasureWithUnit from StepBasic) is redefined;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetPlaneAngleUnit(me: mutable; aPlaneAngleUnit: mutable PlaneAngleUnit);
|
||||
SetPlaneAngleUnit(me: mutable; aPlaneAngleUnit: PlaneAngleUnit);
|
||||
|
||||
PlaneAngleUnit (me) returns mutable PlaneAngleUnit;
|
||||
PlaneAngleUnit (me) returns PlaneAngleUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -27,21 +27,21 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ConversionBasedUnitAndRatioUnit;
|
||||
Create returns ConversionBasedUnitAndRatioUnit;
|
||||
---Purpose: Returns a ConversionBasedUnitAndRatioUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aConversionFactor: mutable MeasureWithUnit from StepBasic) is redefined;
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic;
|
||||
aName : HAsciiString from TCollection;
|
||||
aConversionFactor: MeasureWithUnit from StepBasic) is redefined;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetRatioUnit(me: mutable; aRatioUnit: mutable RatioUnit);
|
||||
SetRatioUnit(me: mutable; aRatioUnit: RatioUnit);
|
||||
|
||||
RatioUnit (me) returns mutable RatioUnit;
|
||||
RatioUnit (me) returns RatioUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -27,21 +27,21 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ConversionBasedUnitAndSolidAngleUnit;
|
||||
Create returns ConversionBasedUnitAndSolidAngleUnit;
|
||||
---Purpose: Returns a ConversionBasedUnitAndSolidAngleUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aConversionFactor: mutable MeasureWithUnit from StepBasic)is redefined;
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic;
|
||||
aName : HAsciiString from TCollection;
|
||||
aConversionFactor: MeasureWithUnit from StepBasic)is redefined;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetSolidAngleUnit(me: mutable; aSolidAngleUnit: mutable SolidAngleUnit);
|
||||
SetSolidAngleUnit(me: mutable; aSolidAngleUnit: SolidAngleUnit);
|
||||
|
||||
SolidAngleUnit (me) returns mutable SolidAngleUnit;
|
||||
SolidAngleUnit (me) returns SolidAngleUnit;
|
||||
|
||||
|
||||
fields
|
||||
|
@@ -27,21 +27,21 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ConversionBasedUnitAndTimeUnit;
|
||||
Create returns ConversionBasedUnitAndTimeUnit;
|
||||
---Purpose: Returns a ConversionBasedUnitAndTimeUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic) is redefined;
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic) is redefined;
|
||||
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aConversionFactor: mutable MeasureWithUnit from StepBasic) is redefined;
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic;
|
||||
aName : HAsciiString from TCollection;
|
||||
aConversionFactor: MeasureWithUnit from StepBasic) is redefined;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetTimeUnit(me: mutable; aTimeUnit: mutable TimeUnit);
|
||||
SetTimeUnit(me: mutable; aTimeUnit: TimeUnit);
|
||||
|
||||
TimeUnit (me) returns mutable TimeUnit;
|
||||
TimeUnit (me) returns TimeUnit;
|
||||
|
||||
|
||||
fields
|
||||
|
@@ -24,12 +24,12 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ConversionBasedUnitAndVolumeUnit from StepBasic;
|
||||
Create returns ConversionBasedUnitAndVolumeUnit from StepBasic;
|
||||
---Purpose: Returns a ConversionBasedUnitAndVolumeUnit
|
||||
|
||||
SetVolumeUnit(me: mutable; aVolumeUnit: mutable VolumeUnit from StepBasic);
|
||||
SetVolumeUnit(me: mutable; aVolumeUnit: VolumeUnit from StepBasic);
|
||||
|
||||
VolumeUnit(me) returns mutable VolumeUnit from StepBasic;
|
||||
VolumeUnit(me) returns VolumeUnit from StepBasic;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
Boolean from Standard
|
||||
is
|
||||
|
||||
Create returns mutable CoordinatedUniversalTimeOffset;
|
||||
Create returns CoordinatedUniversalTimeOffset;
|
||||
---Purpose: Returns a CoordinatedUniversalTimeOffset
|
||||
|
||||
Init (me : mutable;
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
Integer from Standard
|
||||
is
|
||||
|
||||
Create returns mutable Date;
|
||||
Create returns Date;
|
||||
---Purpose: Returns a Date
|
||||
|
||||
Init (me : mutable;
|
||||
|
@@ -24,19 +24,19 @@ uses
|
||||
LocalTime from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable DateAndTime;
|
||||
Create returns DateAndTime;
|
||||
---Purpose: Returns a DateAndTime
|
||||
|
||||
Init (me : mutable;
|
||||
aDateComponent : mutable Date from StepBasic;
|
||||
aTimeComponent : mutable LocalTime from StepBasic) is virtual;
|
||||
aDateComponent : Date from StepBasic;
|
||||
aTimeComponent : LocalTime from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetDateComponent(me : mutable; aDateComponent : mutable Date);
|
||||
DateComponent (me) returns mutable Date;
|
||||
SetTimeComponent(me : mutable; aTimeComponent : mutable LocalTime);
|
||||
TimeComponent (me) returns mutable LocalTime;
|
||||
SetDateComponent(me : mutable; aDateComponent : Date);
|
||||
DateComponent (me) returns Date;
|
||||
SetTimeComponent(me : mutable; aTimeComponent : LocalTime);
|
||||
TimeComponent (me) returns LocalTime;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,15 +25,15 @@ uses
|
||||
is
|
||||
|
||||
Init (me : mutable;
|
||||
aAssignedDateAndTime : mutable DateAndTime from StepBasic;
|
||||
aRole : mutable DateTimeRole from StepBasic) is virtual;
|
||||
aAssignedDateAndTime : DateAndTime from StepBasic;
|
||||
aRole : DateTimeRole from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetAssignedDateAndTime(me : mutable; aAssignedDateAndTime : mutable DateAndTime);
|
||||
AssignedDateAndTime (me) returns mutable DateAndTime;
|
||||
SetRole(me : mutable; aRole : mutable DateTimeRole);
|
||||
Role (me) returns mutable DateTimeRole;
|
||||
SetAssignedDateAndTime(me : mutable; aAssignedDateAndTime : DateAndTime);
|
||||
AssignedDateAndTime (me) returns DateAndTime;
|
||||
SetRole(me : mutable; aRole : DateTimeRole);
|
||||
Role (me) returns DateTimeRole;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,15 +25,15 @@ uses
|
||||
is
|
||||
|
||||
Init (me : mutable;
|
||||
aAssignedDate : mutable Date from StepBasic;
|
||||
aRole : mutable DateRole from StepBasic) is virtual;
|
||||
aAssignedDate : Date from StepBasic;
|
||||
aRole : DateRole from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetAssignedDate(me : mutable; aAssignedDate : mutable Date);
|
||||
AssignedDate (me) returns mutable Date;
|
||||
SetRole(me : mutable; aRole : mutable DateRole);
|
||||
Role (me) returns mutable DateRole;
|
||||
SetAssignedDate(me : mutable; aAssignedDate : Date);
|
||||
AssignedDate (me) returns Date;
|
||||
SetRole(me : mutable; aRole : DateRole);
|
||||
Role (me) returns DateRole;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable DateRole;
|
||||
Create returns DateRole;
|
||||
---Purpose: Returns a DateRole
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is virtual;
|
||||
aName : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable DateTimeRole;
|
||||
Create returns DateTimeRole;
|
||||
---Purpose: Returns a DateTimeRole
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is virtual;
|
||||
aName : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable DerivedUnit;
|
||||
Create returns DerivedUnit;
|
||||
|
||||
Init (me : mutable; elements : HArray1OfDerivedUnitElement from StepBasic);
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable DerivedUnitElement;
|
||||
Create returns DerivedUnitElement;
|
||||
|
||||
Init (me : mutable; aUnit : NamedUnit from StepBasic; aExponent : Real);
|
||||
|
||||
|
@@ -24,6 +24,6 @@ uses Integer
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable DesignContext;
|
||||
Create returns DesignContext;
|
||||
|
||||
end DesignContext;
|
||||
|
@@ -21,6 +21,6 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable DigitalDocument;
|
||||
Create returns DigitalDocument;
|
||||
|
||||
end DigitalDocument;
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
Real from Standard
|
||||
is
|
||||
|
||||
Create returns mutable DimensionalExponents;
|
||||
Create returns DimensionalExponents;
|
||||
---Purpose: Returns a DimensionalExponents
|
||||
|
||||
Init (me : mutable;
|
||||
|
@@ -22,7 +22,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable DocumentRelationship;
|
||||
Create returns DocumentRelationship;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : HAsciiString;
|
||||
|
@@ -21,7 +21,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable DocumentType;
|
||||
Create returns DocumentType;
|
||||
|
||||
Init (me : mutable; apdt : HAsciiString);
|
||||
|
||||
|
@@ -22,7 +22,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable DocumentUsageConstraint;
|
||||
Create returns DocumentUsageConstraint;
|
||||
|
||||
Init (me : mutable;
|
||||
aSource : Document;
|
||||
|
@@ -21,7 +21,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable Effectivity;
|
||||
Create returns Effectivity;
|
||||
|
||||
Init (me : mutable; aid : HAsciiString);
|
||||
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
NamedUnit from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable LengthMeasureWithUnit;
|
||||
Create returns LengthMeasureWithUnit;
|
||||
---Purpose: Returns a LengthMeasureWithUnit
|
||||
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
DimensionalExponents from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable LengthUnit;
|
||||
Create returns LengthUnit;
|
||||
---Purpose: Returns a LengthUnit
|
||||
|
||||
|
||||
|
@@ -26,7 +26,7 @@ uses
|
||||
Boolean from Standard
|
||||
is
|
||||
|
||||
Create returns mutable LocalTime;
|
||||
Create returns LocalTime;
|
||||
---Purpose: Returns a LocalTime
|
||||
|
||||
Init (me : mutable;
|
||||
@@ -35,7 +35,7 @@ is
|
||||
aMinuteComponent : Integer from Standard;
|
||||
hasAsecondComponent : Boolean from Standard;
|
||||
aSecondComponent : Real from Standard;
|
||||
aZone : mutable CoordinatedUniversalTimeOffset from StepBasic) is virtual;
|
||||
aZone : CoordinatedUniversalTimeOffset from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
@@ -49,8 +49,8 @@ is
|
||||
UnSetSecondComponent (me:mutable);
|
||||
SecondComponent (me) returns Real;
|
||||
HasSecondComponent (me) returns Boolean;
|
||||
SetZone(me : mutable; aZone : mutable CoordinatedUniversalTimeOffset);
|
||||
Zone (me) returns mutable CoordinatedUniversalTimeOffset;
|
||||
SetZone(me : mutable; aZone : CoordinatedUniversalTimeOffset);
|
||||
Zone (me) returns CoordinatedUniversalTimeOffset;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
NamedUnit from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable MassMeasureWithUnit;
|
||||
Create returns MassMeasureWithUnit;
|
||||
---Purpose: Returns a MassMeasureWithUnit
|
||||
|
||||
|
||||
|
@@ -27,7 +27,7 @@ uses CString
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable MeasureValueMember;
|
||||
Create returns MeasureValueMember;
|
||||
-- starts as case null (no name)
|
||||
|
||||
HasName (me) returns Boolean is redefined;
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
Unit from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable MeasureWithUnit;
|
||||
Create returns MeasureWithUnit;
|
||||
---Purpose: Returns a MeasureWithUnit
|
||||
|
||||
Init (me : mutable;
|
||||
|
@@ -18,7 +18,7 @@ class MechanicalContext from StepBasic inherits ProductContext from StepBasic
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable MechanicalContext;
|
||||
Create returns MechanicalContext;
|
||||
---Purpose: Returns a MechanicalContext
|
||||
|
||||
end MechanicalContext;
|
||||
|
@@ -28,18 +28,18 @@ uses
|
||||
DimensionalExponents from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable NamedUnit;
|
||||
Create returns NamedUnit;
|
||||
---Purpose: Returns a NamedUnit
|
||||
|
||||
Init (me : mutable;
|
||||
aDimensions : mutable DimensionalExponents from StepBasic) is virtual;
|
||||
aDimensions : DimensionalExponents from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetDimensions(me : mutable; aDimensions : mutable DimensionalExponents)
|
||||
SetDimensions(me : mutable; aDimensions : DimensionalExponents)
|
||||
is virtual;
|
||||
|
||||
Dimensions (me) returns mutable DimensionalExponents
|
||||
Dimensions (me) returns DimensionalExponents
|
||||
is virtual;
|
||||
|
||||
fields
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
Integer from Standard
|
||||
is
|
||||
|
||||
Create returns mutable OrdinalDate;
|
||||
Create returns OrdinalDate;
|
||||
---Purpose: Returns a OrdinalDate
|
||||
|
||||
|
||||
|
@@ -24,25 +24,25 @@ uses
|
||||
Boolean from Standard
|
||||
is
|
||||
|
||||
Create returns mutable Organization;
|
||||
Create returns Organization;
|
||||
---Purpose: Returns a Organization
|
||||
|
||||
Init (me : mutable;
|
||||
hasAid : Boolean from Standard;
|
||||
aId : mutable HAsciiString from TCollection;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aDescription : mutable HAsciiString from TCollection) is virtual;
|
||||
aId : HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
aDescription : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetId(me : mutable; aId : mutable HAsciiString);
|
||||
SetId(me : mutable; aId : HAsciiString);
|
||||
UnSetId (me:mutable);
|
||||
Id (me) returns mutable HAsciiString;
|
||||
Id (me) returns HAsciiString;
|
||||
HasId (me) returns Boolean;
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : mutable HAsciiString);
|
||||
Description (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HAsciiString);
|
||||
Description (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,15 +25,15 @@ uses
|
||||
is
|
||||
|
||||
Init (me : mutable;
|
||||
aAssignedOrganization : mutable Organization from StepBasic;
|
||||
aRole : mutable OrganizationRole from StepBasic) is virtual;
|
||||
aAssignedOrganization : Organization from StepBasic;
|
||||
aRole : OrganizationRole from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetAssignedOrganization(me : mutable; aAssignedOrganization : mutable Organization);
|
||||
AssignedOrganization (me) returns mutable Organization;
|
||||
SetRole(me : mutable; aRole : mutable OrganizationRole);
|
||||
Role (me) returns mutable OrganizationRole;
|
||||
SetAssignedOrganization(me : mutable; aAssignedOrganization : Organization);
|
||||
AssignedOrganization (me) returns Organization;
|
||||
SetRole(me : mutable; aRole : OrganizationRole);
|
||||
Role (me) returns OrganizationRole;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable OrganizationRole;
|
||||
Create returns OrganizationRole;
|
||||
---Purpose: Returns a OrganizationRole
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is virtual;
|
||||
aName : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,72 +25,72 @@ uses
|
||||
Organization from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable OrganizationalAddress;
|
||||
Create returns OrganizationalAddress;
|
||||
---Purpose: Returns a OrganizationalAddress
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
hasAinternalLocation : Boolean from Standard;
|
||||
aInternalLocation : mutable HAsciiString from TCollection;
|
||||
aInternalLocation : HAsciiString from TCollection;
|
||||
hasAstreetNumber : Boolean from Standard;
|
||||
aStreetNumber : mutable HAsciiString from TCollection;
|
||||
aStreetNumber : HAsciiString from TCollection;
|
||||
hasAstreet : Boolean from Standard;
|
||||
aStreet : mutable HAsciiString from TCollection;
|
||||
aStreet : HAsciiString from TCollection;
|
||||
hasApostalBox : Boolean from Standard;
|
||||
aPostalBox : mutable HAsciiString from TCollection;
|
||||
aPostalBox : HAsciiString from TCollection;
|
||||
hasAtown : Boolean from Standard;
|
||||
aTown : mutable HAsciiString from TCollection;
|
||||
aTown : HAsciiString from TCollection;
|
||||
hasAregion : Boolean from Standard;
|
||||
aRegion : mutable HAsciiString from TCollection;
|
||||
aRegion : HAsciiString from TCollection;
|
||||
hasApostalCode : Boolean from Standard;
|
||||
aPostalCode : mutable HAsciiString from TCollection;
|
||||
aPostalCode : HAsciiString from TCollection;
|
||||
hasAcountry : Boolean from Standard;
|
||||
aCountry : mutable HAsciiString from TCollection;
|
||||
aCountry : HAsciiString from TCollection;
|
||||
hasAfacsimileNumber : Boolean from Standard;
|
||||
aFacsimileNumber : mutable HAsciiString from TCollection;
|
||||
aFacsimileNumber : HAsciiString from TCollection;
|
||||
hasAtelephoneNumber : Boolean from Standard;
|
||||
aTelephoneNumber : mutable HAsciiString from TCollection;
|
||||
aTelephoneNumber : HAsciiString from TCollection;
|
||||
hasAelectronicMailAddress : Boolean from Standard;
|
||||
aElectronicMailAddress : mutable HAsciiString from TCollection;
|
||||
aElectronicMailAddress : HAsciiString from TCollection;
|
||||
hasAtelexNumber : Boolean from Standard;
|
||||
aTelexNumber : mutable HAsciiString from TCollection) is redefined;
|
||||
aTelexNumber : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
hasAinternalLocation : Boolean from Standard;
|
||||
aInternalLocation : mutable HAsciiString from TCollection;
|
||||
aInternalLocation : HAsciiString from TCollection;
|
||||
hasAstreetNumber : Boolean from Standard;
|
||||
aStreetNumber : mutable HAsciiString from TCollection;
|
||||
aStreetNumber : HAsciiString from TCollection;
|
||||
hasAstreet : Boolean from Standard;
|
||||
aStreet : mutable HAsciiString from TCollection;
|
||||
aStreet : HAsciiString from TCollection;
|
||||
hasApostalBox : Boolean from Standard;
|
||||
aPostalBox : mutable HAsciiString from TCollection;
|
||||
aPostalBox : HAsciiString from TCollection;
|
||||
hasAtown : Boolean from Standard;
|
||||
aTown : mutable HAsciiString from TCollection;
|
||||
aTown : HAsciiString from TCollection;
|
||||
hasAregion : Boolean from Standard;
|
||||
aRegion : mutable HAsciiString from TCollection;
|
||||
aRegion : HAsciiString from TCollection;
|
||||
hasApostalCode : Boolean from Standard;
|
||||
aPostalCode : mutable HAsciiString from TCollection;
|
||||
aPostalCode : HAsciiString from TCollection;
|
||||
hasAcountry : Boolean from Standard;
|
||||
aCountry : mutable HAsciiString from TCollection;
|
||||
aCountry : HAsciiString from TCollection;
|
||||
hasAfacsimileNumber : Boolean from Standard;
|
||||
aFacsimileNumber : mutable HAsciiString from TCollection;
|
||||
aFacsimileNumber : HAsciiString from TCollection;
|
||||
hasAtelephoneNumber : Boolean from Standard;
|
||||
aTelephoneNumber : mutable HAsciiString from TCollection;
|
||||
aTelephoneNumber : HAsciiString from TCollection;
|
||||
hasAelectronicMailAddress : Boolean from Standard;
|
||||
aElectronicMailAddress : mutable HAsciiString from TCollection;
|
||||
aElectronicMailAddress : HAsciiString from TCollection;
|
||||
hasAtelexNumber : Boolean from Standard;
|
||||
aTelexNumber : mutable HAsciiString from TCollection;
|
||||
aOrganizations : mutable HArray1OfOrganization from StepBasic;
|
||||
aDescription : mutable HAsciiString from TCollection) is virtual;
|
||||
aTelexNumber : HAsciiString from TCollection;
|
||||
aOrganizations : HArray1OfOrganization from StepBasic;
|
||||
aDescription : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetOrganizations(me : mutable; aOrganizations : mutable HArray1OfOrganization);
|
||||
Organizations (me) returns mutable HArray1OfOrganization;
|
||||
OrganizationsValue (me; num : Integer) returns mutable Organization;
|
||||
SetOrganizations(me : mutable; aOrganizations : HArray1OfOrganization);
|
||||
Organizations (me) returns HArray1OfOrganization;
|
||||
OrganizationsValue (me; num : Integer) returns Organization;
|
||||
NbOrganizations (me) returns Integer;
|
||||
SetDescription(me : mutable; aDescription : mutable HAsciiString);
|
||||
Description (me) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HAsciiString);
|
||||
Description (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,51 +25,51 @@ uses
|
||||
Boolean from Standard
|
||||
is
|
||||
|
||||
Create returns mutable Person;
|
||||
Create returns Person;
|
||||
---Purpose: Returns a Person
|
||||
|
||||
Init (me : mutable;
|
||||
aId : mutable HAsciiString from TCollection;
|
||||
aId : HAsciiString from TCollection;
|
||||
hasAlastName : Boolean from Standard;
|
||||
aLastName : mutable HAsciiString from TCollection;
|
||||
aLastName : HAsciiString from TCollection;
|
||||
hasAfirstName : Boolean from Standard;
|
||||
aFirstName : mutable HAsciiString from TCollection;
|
||||
aFirstName : HAsciiString from TCollection;
|
||||
hasAmiddleNames : Boolean from Standard;
|
||||
aMiddleNames : mutable HArray1OfHAsciiString from Interface;
|
||||
aMiddleNames : HArray1OfHAsciiString from Interface;
|
||||
hasAprefixTitles : Boolean from Standard;
|
||||
aPrefixTitles : mutable HArray1OfHAsciiString from Interface;
|
||||
aPrefixTitles : HArray1OfHAsciiString from Interface;
|
||||
hasAsuffixTitles : Boolean from Standard;
|
||||
aSuffixTitles : mutable HArray1OfHAsciiString from Interface) is virtual;
|
||||
aSuffixTitles : HArray1OfHAsciiString from Interface) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetId(me : mutable; aId : mutable HAsciiString);
|
||||
Id (me) returns mutable HAsciiString;
|
||||
SetLastName(me : mutable; aLastName : mutable HAsciiString);
|
||||
SetId(me : mutable; aId : HAsciiString);
|
||||
Id (me) returns HAsciiString;
|
||||
SetLastName(me : mutable; aLastName : HAsciiString);
|
||||
UnSetLastName (me:mutable);
|
||||
LastName (me) returns mutable HAsciiString;
|
||||
LastName (me) returns HAsciiString;
|
||||
HasLastName (me) returns Boolean;
|
||||
SetFirstName(me : mutable; aFirstName : mutable HAsciiString);
|
||||
SetFirstName(me : mutable; aFirstName : HAsciiString);
|
||||
UnSetFirstName (me:mutable);
|
||||
FirstName (me) returns mutable HAsciiString;
|
||||
FirstName (me) returns HAsciiString;
|
||||
HasFirstName (me) returns Boolean;
|
||||
SetMiddleNames(me : mutable; aMiddleNames : mutable HArray1OfHAsciiString);
|
||||
SetMiddleNames(me : mutable; aMiddleNames : HArray1OfHAsciiString);
|
||||
UnSetMiddleNames (me:mutable);
|
||||
MiddleNames (me) returns mutable HArray1OfHAsciiString;
|
||||
MiddleNames (me) returns HArray1OfHAsciiString;
|
||||
HasMiddleNames (me) returns Boolean;
|
||||
MiddleNamesValue (me; num : Integer) returns mutable HAsciiString;
|
||||
MiddleNamesValue (me; num : Integer) returns HAsciiString;
|
||||
NbMiddleNames (me) returns Integer;
|
||||
SetPrefixTitles(me : mutable; aPrefixTitles : mutable HArray1OfHAsciiString);
|
||||
SetPrefixTitles(me : mutable; aPrefixTitles : HArray1OfHAsciiString);
|
||||
UnSetPrefixTitles (me:mutable);
|
||||
PrefixTitles (me) returns mutable HArray1OfHAsciiString;
|
||||
PrefixTitles (me) returns HArray1OfHAsciiString;
|
||||
HasPrefixTitles (me) returns Boolean;
|
||||
PrefixTitlesValue (me; num : Integer) returns mutable HAsciiString;
|
||||
PrefixTitlesValue (me; num : Integer) returns HAsciiString;
|
||||
NbPrefixTitles (me) returns Integer;
|
||||
SetSuffixTitles(me : mutable; aSuffixTitles : mutable HArray1OfHAsciiString);
|
||||
SetSuffixTitles(me : mutable; aSuffixTitles : HArray1OfHAsciiString);
|
||||
UnSetSuffixTitles (me:mutable);
|
||||
SuffixTitles (me) returns mutable HArray1OfHAsciiString;
|
||||
SuffixTitles (me) returns HArray1OfHAsciiString;
|
||||
HasSuffixTitles (me) returns Boolean;
|
||||
SuffixTitlesValue (me; num : Integer) returns mutable HAsciiString;
|
||||
SuffixTitlesValue (me; num : Integer) returns HAsciiString;
|
||||
NbSuffixTitles (me) returns Integer;
|
||||
|
||||
fields
|
||||
|
@@ -24,19 +24,19 @@ uses
|
||||
Organization from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable PersonAndOrganization;
|
||||
Create returns PersonAndOrganization;
|
||||
---Purpose: Returns a PersonAndOrganization
|
||||
|
||||
Init (me : mutable;
|
||||
aThePerson : mutable Person from StepBasic;
|
||||
aTheOrganization : mutable Organization from StepBasic) is virtual;
|
||||
aThePerson : Person from StepBasic;
|
||||
aTheOrganization : Organization from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetThePerson(me : mutable; aThePerson : mutable Person);
|
||||
ThePerson (me) returns mutable Person;
|
||||
SetTheOrganization(me : mutable; aTheOrganization : mutable Organization);
|
||||
TheOrganization (me) returns mutable Organization;
|
||||
SetThePerson(me : mutable; aThePerson : Person);
|
||||
ThePerson (me) returns Person;
|
||||
SetTheOrganization(me : mutable; aTheOrganization : Organization);
|
||||
TheOrganization (me) returns Organization;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,15 +25,15 @@ uses
|
||||
is
|
||||
|
||||
Init (me : mutable;
|
||||
aAssignedPersonAndOrganization : mutable PersonAndOrganization from StepBasic;
|
||||
aRole : mutable PersonAndOrganizationRole from StepBasic) is virtual;
|
||||
aAssignedPersonAndOrganization : PersonAndOrganization from StepBasic;
|
||||
aRole : PersonAndOrganizationRole from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetAssignedPersonAndOrganization(me : mutable; aAssignedPersonAndOrganization : mutable PersonAndOrganization);
|
||||
AssignedPersonAndOrganization (me) returns mutable PersonAndOrganization;
|
||||
SetRole(me : mutable; aRole : mutable PersonAndOrganizationRole);
|
||||
Role (me) returns mutable PersonAndOrganizationRole;
|
||||
SetAssignedPersonAndOrganization(me : mutable; aAssignedPersonAndOrganization : PersonAndOrganization);
|
||||
AssignedPersonAndOrganization (me) returns PersonAndOrganization;
|
||||
SetRole(me : mutable; aRole : PersonAndOrganizationRole);
|
||||
Role (me) returns PersonAndOrganizationRole;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable PersonAndOrganizationRole;
|
||||
Create returns PersonAndOrganizationRole;
|
||||
---Purpose: Returns a PersonAndOrganizationRole
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is virtual;
|
||||
aName : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,72 +25,72 @@ uses
|
||||
Person from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable PersonalAddress;
|
||||
Create returns PersonalAddress;
|
||||
---Purpose: Returns a PersonalAddress
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
hasAinternalLocation : Boolean from Standard;
|
||||
aInternalLocation : mutable HAsciiString from TCollection;
|
||||
aInternalLocation : HAsciiString from TCollection;
|
||||
hasAstreetNumber : Boolean from Standard;
|
||||
aStreetNumber : mutable HAsciiString from TCollection;
|
||||
aStreetNumber : HAsciiString from TCollection;
|
||||
hasAstreet : Boolean from Standard;
|
||||
aStreet : mutable HAsciiString from TCollection;
|
||||
aStreet : HAsciiString from TCollection;
|
||||
hasApostalBox : Boolean from Standard;
|
||||
aPostalBox : mutable HAsciiString from TCollection;
|
||||
aPostalBox : HAsciiString from TCollection;
|
||||
hasAtown : Boolean from Standard;
|
||||
aTown : mutable HAsciiString from TCollection;
|
||||
aTown : HAsciiString from TCollection;
|
||||
hasAregion : Boolean from Standard;
|
||||
aRegion : mutable HAsciiString from TCollection;
|
||||
aRegion : HAsciiString from TCollection;
|
||||
hasApostalCode : Boolean from Standard;
|
||||
aPostalCode : mutable HAsciiString from TCollection;
|
||||
aPostalCode : HAsciiString from TCollection;
|
||||
hasAcountry : Boolean from Standard;
|
||||
aCountry : mutable HAsciiString from TCollection;
|
||||
aCountry : HAsciiString from TCollection;
|
||||
hasAfacsimileNumber : Boolean from Standard;
|
||||
aFacsimileNumber : mutable HAsciiString from TCollection;
|
||||
aFacsimileNumber : HAsciiString from TCollection;
|
||||
hasAtelephoneNumber : Boolean from Standard;
|
||||
aTelephoneNumber : mutable HAsciiString from TCollection;
|
||||
aTelephoneNumber : HAsciiString from TCollection;
|
||||
hasAelectronicMailAddress : Boolean from Standard;
|
||||
aElectronicMailAddress : mutable HAsciiString from TCollection;
|
||||
aElectronicMailAddress : HAsciiString from TCollection;
|
||||
hasAtelexNumber : Boolean from Standard;
|
||||
aTelexNumber : mutable HAsciiString from TCollection) is redefined;
|
||||
aTelexNumber : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
hasAinternalLocation : Boolean from Standard;
|
||||
aInternalLocation : mutable HAsciiString from TCollection;
|
||||
aInternalLocation : HAsciiString from TCollection;
|
||||
hasAstreetNumber : Boolean from Standard;
|
||||
aStreetNumber : mutable HAsciiString from TCollection;
|
||||
aStreetNumber : HAsciiString from TCollection;
|
||||
hasAstreet : Boolean from Standard;
|
||||
aStreet : mutable HAsciiString from TCollection;
|
||||
aStreet : HAsciiString from TCollection;
|
||||
hasApostalBox : Boolean from Standard;
|
||||
aPostalBox : mutable HAsciiString from TCollection;
|
||||
aPostalBox : HAsciiString from TCollection;
|
||||
hasAtown : Boolean from Standard;
|
||||
aTown : mutable HAsciiString from TCollection;
|
||||
aTown : HAsciiString from TCollection;
|
||||
hasAregion : Boolean from Standard;
|
||||
aRegion : mutable HAsciiString from TCollection;
|
||||
aRegion : HAsciiString from TCollection;
|
||||
hasApostalCode : Boolean from Standard;
|
||||
aPostalCode : mutable HAsciiString from TCollection;
|
||||
aPostalCode : HAsciiString from TCollection;
|
||||
hasAcountry : Boolean from Standard;
|
||||
aCountry : mutable HAsciiString from TCollection;
|
||||
aCountry : HAsciiString from TCollection;
|
||||
hasAfacsimileNumber : Boolean from Standard;
|
||||
aFacsimileNumber : mutable HAsciiString from TCollection;
|
||||
aFacsimileNumber : HAsciiString from TCollection;
|
||||
hasAtelephoneNumber : Boolean from Standard;
|
||||
aTelephoneNumber : mutable HAsciiString from TCollection;
|
||||
aTelephoneNumber : HAsciiString from TCollection;
|
||||
hasAelectronicMailAddress : Boolean from Standard;
|
||||
aElectronicMailAddress : mutable HAsciiString from TCollection;
|
||||
aElectronicMailAddress : HAsciiString from TCollection;
|
||||
hasAtelexNumber : Boolean from Standard;
|
||||
aTelexNumber : mutable HAsciiString from TCollection;
|
||||
aPeople : mutable HArray1OfPerson from StepBasic;
|
||||
aDescription : mutable HAsciiString from TCollection) is virtual;
|
||||
aTelexNumber : HAsciiString from TCollection;
|
||||
aPeople : HArray1OfPerson from StepBasic;
|
||||
aDescription : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetPeople(me : mutable; aPeople : mutable HArray1OfPerson);
|
||||
People (me) returns mutable HArray1OfPerson;
|
||||
PeopleValue (me; num : Integer) returns mutable Person;
|
||||
SetPeople(me : mutable; aPeople : HArray1OfPerson);
|
||||
People (me) returns HArray1OfPerson;
|
||||
PeopleValue (me; num : Integer) returns Person;
|
||||
NbPeople (me) returns Integer;
|
||||
SetDescription(me : mutable; aDescription : mutable HAsciiString);
|
||||
Description (me) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HAsciiString);
|
||||
Description (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
NamedUnit from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable PlaneAngleMeasureWithUnit;
|
||||
Create returns PlaneAngleMeasureWithUnit;
|
||||
---Purpose: Returns a PlaneAngleMeasureWithUnit
|
||||
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
DimensionalExponents from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable PlaneAngleUnit;
|
||||
Create returns PlaneAngleUnit;
|
||||
---Purpose: Returns a PlaneAngleUnit
|
||||
|
||||
|
||||
|
@@ -25,26 +25,26 @@ uses
|
||||
ProductContext from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable Product;
|
||||
Create returns Product;
|
||||
---Purpose: Returns a Product
|
||||
|
||||
Init (me : mutable;
|
||||
aId : mutable HAsciiString from TCollection;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aDescription : mutable HAsciiString from TCollection;
|
||||
aFrameOfReference : mutable HArray1OfProductContext from StepBasic) is virtual;
|
||||
aId : HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
aDescription : HAsciiString from TCollection;
|
||||
aFrameOfReference : HArray1OfProductContext from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetId(me : mutable; aId : mutable HAsciiString);
|
||||
Id (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : mutable HAsciiString);
|
||||
Description (me) returns mutable HAsciiString;
|
||||
SetFrameOfReference(me : mutable; aFrameOfReference : mutable HArray1OfProductContext);
|
||||
FrameOfReference (me) returns mutable HArray1OfProductContext;
|
||||
FrameOfReferenceValue (me; num : Integer) returns mutable ProductContext;
|
||||
SetId(me : mutable; aId : HAsciiString);
|
||||
Id (me) returns HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HAsciiString);
|
||||
Description (me) returns HAsciiString;
|
||||
SetFrameOfReference(me : mutable; aFrameOfReference : HArray1OfProductContext);
|
||||
FrameOfReference (me) returns HArray1OfProductContext;
|
||||
FrameOfReferenceValue (me; num : Integer) returns ProductContext;
|
||||
NbFrameOfReference (me) returns Integer;
|
||||
|
||||
fields
|
||||
|
@@ -24,21 +24,21 @@ uses
|
||||
Boolean from Standard
|
||||
is
|
||||
|
||||
Create returns mutable ProductCategory;
|
||||
Create returns ProductCategory;
|
||||
---Purpose: Returns a ProductCategory
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
hasAdescription : Boolean from Standard;
|
||||
aDescription : mutable HAsciiString from TCollection) is virtual;
|
||||
aDescription : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : mutable HAsciiString);
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HAsciiString);
|
||||
UnSetDescription (me:mutable);
|
||||
Description (me) returns mutable HAsciiString;
|
||||
Description (me) returns HAsciiString;
|
||||
HasDescription (me) returns Boolean;
|
||||
|
||||
fields
|
||||
|
@@ -24,23 +24,23 @@ uses
|
||||
ApplicationContext from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ProductContext;
|
||||
Create returns ProductContext;
|
||||
---Purpose: Returns a ProductContext
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aFrameOfReference : mutable ApplicationContext from StepBasic) is redefined;
|
||||
aName : HAsciiString from TCollection;
|
||||
aFrameOfReference : ApplicationContext from StepBasic) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aFrameOfReference : mutable ApplicationContext from StepBasic;
|
||||
aDisciplineType : mutable HAsciiString from TCollection) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aFrameOfReference : ApplicationContext from StepBasic;
|
||||
aDisciplineType : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetDisciplineType(me : mutable; aDisciplineType : mutable HAsciiString);
|
||||
DisciplineType (me) returns mutable HAsciiString;
|
||||
SetDisciplineType(me : mutable; aDisciplineType : HAsciiString);
|
||||
DisciplineType (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,25 +25,25 @@ uses
|
||||
ProductDefinitionContext from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ProductDefinition;
|
||||
Create returns ProductDefinition;
|
||||
---Purpose: Returns a ProductDefinition
|
||||
|
||||
Init (me : mutable;
|
||||
aId : mutable HAsciiString from TCollection;
|
||||
aDescription : mutable HAsciiString from TCollection;
|
||||
aFormation : mutable ProductDefinitionFormation from StepBasic;
|
||||
aFrameOfReference : mutable ProductDefinitionContext from StepBasic) is virtual;
|
||||
aId : HAsciiString from TCollection;
|
||||
aDescription : HAsciiString from TCollection;
|
||||
aFormation : ProductDefinitionFormation from StepBasic;
|
||||
aFrameOfReference : ProductDefinitionContext from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetId(me : mutable; aId : mutable HAsciiString);
|
||||
Id (me) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : mutable HAsciiString);
|
||||
Description (me) returns mutable HAsciiString;
|
||||
SetFormation(me : mutable; aFormation : mutable ProductDefinitionFormation);
|
||||
Formation (me) returns mutable ProductDefinitionFormation;
|
||||
SetFrameOfReference(me : mutable; aFrameOfReference : mutable ProductDefinitionContext);
|
||||
FrameOfReference (me) returns mutable ProductDefinitionContext;
|
||||
SetId(me : mutable; aId : HAsciiString);
|
||||
Id (me) returns HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HAsciiString);
|
||||
Description (me) returns HAsciiString;
|
||||
SetFormation(me : mutable; aFormation : ProductDefinitionFormation);
|
||||
Formation (me) returns ProductDefinitionFormation;
|
||||
SetFrameOfReference(me : mutable; aFrameOfReference : ProductDefinitionContext);
|
||||
FrameOfReference (me) returns ProductDefinitionContext;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,23 +24,23 @@ uses
|
||||
ApplicationContext from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ProductDefinitionContext;
|
||||
Create returns ProductDefinitionContext;
|
||||
---Purpose: Returns a ProductDefinitionContext
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aFrameOfReference : mutable ApplicationContext from StepBasic) is redefined;
|
||||
aName : HAsciiString from TCollection;
|
||||
aFrameOfReference : ApplicationContext from StepBasic) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aFrameOfReference : mutable ApplicationContext from StepBasic;
|
||||
aLifeCycleStage : mutable HAsciiString from TCollection) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aFrameOfReference : ApplicationContext from StepBasic;
|
||||
aLifeCycleStage : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetLifeCycleStage(me : mutable; aLifeCycleStage : mutable HAsciiString);
|
||||
LifeCycleStage (me) returns mutable HAsciiString;
|
||||
SetLifeCycleStage(me : mutable; aLifeCycleStage : HAsciiString);
|
||||
LifeCycleStage (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -22,7 +22,7 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable ProductDefinitionEffectivity;
|
||||
Create returns ProductDefinitionEffectivity;
|
||||
|
||||
Init (me : mutable;
|
||||
aId : HAsciiString;
|
||||
|
@@ -24,22 +24,22 @@ uses
|
||||
Product from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ProductDefinitionFormation;
|
||||
Create returns ProductDefinitionFormation;
|
||||
---Purpose: Returns a ProductDefinitionFormation
|
||||
|
||||
Init (me : mutable;
|
||||
aId : mutable HAsciiString from TCollection;
|
||||
aDescription : mutable HAsciiString from TCollection;
|
||||
aOfProduct : mutable Product from StepBasic) is virtual;
|
||||
aId : HAsciiString from TCollection;
|
||||
aDescription : HAsciiString from TCollection;
|
||||
aOfProduct : Product from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetId(me : mutable; aId : mutable HAsciiString);
|
||||
Id (me) returns mutable HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : mutable HAsciiString);
|
||||
Description (me) returns mutable HAsciiString;
|
||||
SetOfProduct(me : mutable; aOfProduct : mutable Product);
|
||||
OfProduct (me) returns mutable Product;
|
||||
SetId(me : mutable; aId : HAsciiString);
|
||||
Id (me) returns HAsciiString;
|
||||
SetDescription(me : mutable; aDescription : HAsciiString);
|
||||
Description (me) returns HAsciiString;
|
||||
SetOfProduct(me : mutable; aOfProduct : Product);
|
||||
OfProduct (me) returns Product;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,19 +25,19 @@ uses
|
||||
Product from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ProductDefinitionFormationWithSpecifiedSource;
|
||||
Create returns ProductDefinitionFormationWithSpecifiedSource;
|
||||
---Purpose: Returns a ProductDefinitionFormationWithSpecifiedSource
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aId : mutable HAsciiString from TCollection;
|
||||
aDescription : mutable HAsciiString from TCollection;
|
||||
aOfProduct : mutable Product from StepBasic) is redefined;
|
||||
aId : HAsciiString from TCollection;
|
||||
aDescription : HAsciiString from TCollection;
|
||||
aOfProduct : Product from StepBasic) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aId : mutable HAsciiString from TCollection;
|
||||
aDescription : mutable HAsciiString from TCollection;
|
||||
aOfProduct : mutable Product from StepBasic;
|
||||
aId : HAsciiString from TCollection;
|
||||
aDescription : HAsciiString from TCollection;
|
||||
aOfProduct : Product from StepBasic;
|
||||
aMakeOrBuy : Source from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
@@ -26,26 +26,26 @@ uses
|
||||
Boolean from Standard
|
||||
is
|
||||
|
||||
Create returns mutable ProductRelatedProductCategory;
|
||||
Create returns ProductRelatedProductCategory;
|
||||
---Purpose: Returns a ProductRelatedProductCategory
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
hasAdescription : Boolean from Standard;
|
||||
aDescription : mutable HAsciiString from TCollection) is redefined;
|
||||
aDescription : HAsciiString from TCollection) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aName : HAsciiString from TCollection;
|
||||
hasAdescription : Boolean from Standard;
|
||||
aDescription : mutable HAsciiString from TCollection;
|
||||
aProducts : mutable HArray1OfProduct from StepBasic) is virtual;
|
||||
aDescription : HAsciiString from TCollection;
|
||||
aProducts : HArray1OfProduct from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetProducts(me : mutable; aProducts : mutable HArray1OfProduct);
|
||||
Products (me) returns mutable HArray1OfProduct;
|
||||
ProductsValue (me; num : Integer) returns mutable Product;
|
||||
SetProducts(me : mutable; aProducts : HArray1OfProduct);
|
||||
Products (me) returns HArray1OfProduct;
|
||||
ProductsValue (me; num : Integer) returns Product;
|
||||
NbProducts (me) returns Integer;
|
||||
|
||||
fields
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
HArray1OfProduct from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable ProductType;
|
||||
Create returns ProductType;
|
||||
---Purpose: Returns a ProductType
|
||||
|
||||
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
NamedUnit from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable RatioMeasureWithUnit;
|
||||
Create returns RatioMeasureWithUnit;
|
||||
---Purpose: Returns a RatioMeasureWithUnit
|
||||
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
DimensionalExponents from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable RatioUnit;
|
||||
Create returns RatioUnit;
|
||||
---Purpose: Returns a RatioUnit
|
||||
|
||||
|
||||
|
@@ -24,22 +24,22 @@ uses
|
||||
SecurityClassificationLevel from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable SecurityClassification;
|
||||
Create returns SecurityClassification;
|
||||
---Purpose: Returns a SecurityClassification
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection;
|
||||
aPurpose : mutable HAsciiString from TCollection;
|
||||
aSecurityLevel : mutable SecurityClassificationLevel from StepBasic) is virtual;
|
||||
aName : HAsciiString from TCollection;
|
||||
aPurpose : HAsciiString from TCollection;
|
||||
aSecurityLevel : SecurityClassificationLevel from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetPurpose(me : mutable; aPurpose : mutable HAsciiString);
|
||||
Purpose (me) returns mutable HAsciiString;
|
||||
SetSecurityLevel(me : mutable; aSecurityLevel : mutable SecurityClassificationLevel);
|
||||
SecurityLevel (me) returns mutable SecurityClassificationLevel;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
SetPurpose(me : mutable; aPurpose : HAsciiString);
|
||||
Purpose (me) returns HAsciiString;
|
||||
SetSecurityLevel(me : mutable; aSecurityLevel : SecurityClassificationLevel);
|
||||
SecurityLevel (me) returns SecurityClassificationLevel;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -24,12 +24,12 @@ uses
|
||||
is
|
||||
|
||||
Init (me : mutable;
|
||||
aAssignedSecurityClassification : mutable SecurityClassification from StepBasic) is virtual;
|
||||
aAssignedSecurityClassification : SecurityClassification from StepBasic) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetAssignedSecurityClassification(me : mutable; aAssignedSecurityClassification : mutable SecurityClassification);
|
||||
AssignedSecurityClassification (me) returns mutable SecurityClassification;
|
||||
SetAssignedSecurityClassification(me : mutable; aAssignedSecurityClassification : SecurityClassification);
|
||||
AssignedSecurityClassification (me) returns SecurityClassification;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,16 +23,16 @@ uses
|
||||
HAsciiString from TCollection
|
||||
is
|
||||
|
||||
Create returns mutable SecurityClassificationLevel;
|
||||
Create returns SecurityClassificationLevel;
|
||||
---Purpose: Returns a SecurityClassificationLevel
|
||||
|
||||
Init (me : mutable;
|
||||
aName : mutable HAsciiString from TCollection) is virtual;
|
||||
aName : HAsciiString from TCollection) is virtual;
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetName(me : mutable; aName : mutable HAsciiString);
|
||||
Name (me) returns mutable HAsciiString;
|
||||
SetName(me : mutable; aName : HAsciiString);
|
||||
Name (me) returns HAsciiString;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -26,12 +26,12 @@ uses
|
||||
Boolean from Standard
|
||||
is
|
||||
|
||||
Create returns mutable SiUnit;
|
||||
Create returns SiUnit;
|
||||
---Purpose: Returns a SiUnit
|
||||
|
||||
|
||||
Init (me : mutable;
|
||||
aDimensions : mutable DimensionalExponents from StepBasic) is redefined;
|
||||
aDimensions : DimensionalExponents from StepBasic) is redefined;
|
||||
|
||||
Init (me : mutable;
|
||||
hasAprefix : Boolean from Standard;
|
||||
@@ -46,8 +46,8 @@ is
|
||||
HasPrefix (me) returns Boolean;
|
||||
SetName(me : mutable; aName : SiUnitName);
|
||||
Name (me) returns SiUnitName;
|
||||
SetDimensions(me : mutable; aDimensions : mutable DimensionalExponents) is redefined;
|
||||
Dimensions (me) returns mutable DimensionalExponents is redefined;
|
||||
SetDimensions(me : mutable; aDimensions : DimensionalExponents) is redefined;
|
||||
Dimensions (me) returns DimensionalExponents is redefined;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,16 +25,16 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SiUnitAndAreaUnit from StepBasic;
|
||||
Create returns SiUnitAndAreaUnit from StepBasic;
|
||||
---Purpose: Returns a SiUnitAndAreaUnit
|
||||
|
||||
SetAreaUnit(me: mutable; anAreaUnit: mutable AreaUnit from StepBasic);
|
||||
SetAreaUnit(me: mutable; anAreaUnit: AreaUnit from StepBasic);
|
||||
|
||||
AreaUnit(me) returns mutable AreaUnit from StepBasic;
|
||||
AreaUnit(me) returns AreaUnit from StepBasic;
|
||||
|
||||
SetDimensions(me : mutable; aDimensions : mutable DimensionalExponents) is redefined;
|
||||
SetDimensions(me : mutable; aDimensions : DimensionalExponents) is redefined;
|
||||
|
||||
Dimensions(me) returns mutable DimensionalExponents is redefined;
|
||||
Dimensions(me) returns DimensionalExponents is redefined;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -28,10 +28,10 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SiUnitAndLengthUnit;
|
||||
Create returns SiUnitAndLengthUnit;
|
||||
---Purpose: Returns a SiUnitAndLengthUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; hasAprefix: Boolean from Standard;
|
||||
@@ -40,9 +40,9 @@ is
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetLengthUnit(me: mutable; aLengthUnit: mutable LengthUnit);
|
||||
SetLengthUnit(me: mutable; aLengthUnit: LengthUnit);
|
||||
|
||||
LengthUnit (me) returns mutable LengthUnit;
|
||||
LengthUnit (me) returns LengthUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -27,10 +27,10 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SiUnitAndMassUnit;
|
||||
Create returns SiUnitAndMassUnit;
|
||||
---Purpose: Returns a SiUnitAndMassUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; hasAprefix: Boolean from Standard;
|
||||
@@ -39,9 +39,9 @@ is
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetMassUnit(me: mutable; aMassUnit: mutable MassUnit);
|
||||
SetMassUnit(me: mutable; aMassUnit: MassUnit);
|
||||
|
||||
MassUnit (me) returns mutable MassUnit;
|
||||
MassUnit (me) returns MassUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -27,10 +27,10 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SiUnitAndPlaneAngleUnit;
|
||||
Create returns SiUnitAndPlaneAngleUnit;
|
||||
---Purpose: Returns a SiUnitAndPlaneAngleUnit
|
||||
|
||||
Init (me: mutable; aDimensions : mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions : DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; hasAprefix : Boolean from Standard;
|
||||
@@ -39,9 +39,9 @@ is
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetPlaneAngleUnit(me: mutable; aPlaneAngleUnit: mutable PlaneAngleUnit);
|
||||
SetPlaneAngleUnit(me: mutable; aPlaneAngleUnit: PlaneAngleUnit);
|
||||
|
||||
PlaneAngleUnit (me) returns mutable PlaneAngleUnit;
|
||||
PlaneAngleUnit (me) returns PlaneAngleUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -27,10 +27,10 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SiUnitAndRatioUnit;
|
||||
Create returns SiUnitAndRatioUnit;
|
||||
---Purpose: Returns a SiUnitAndRatioUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; hasAprefix: Boolean from Standard;
|
||||
@@ -39,9 +39,9 @@ is
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetRatioUnit(me : mutable; aRatioUnit : mutable RatioUnit);
|
||||
SetRatioUnit(me : mutable; aRatioUnit : RatioUnit);
|
||||
|
||||
RatioUnit (me) returns mutable RatioUnit;
|
||||
RatioUnit (me) returns RatioUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -27,10 +27,10 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SiUnitAndSolidAngleUnit;
|
||||
Create returns SiUnitAndSolidAngleUnit;
|
||||
---Purpose: Returns a SiUnitAndSolidAngleUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; hasAprefix: Boolean from Standard;
|
||||
@@ -39,9 +39,9 @@ is
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetSolidAngleUnit(me: mutable; aSolidAngleUnit: mutable SolidAngleUnit);
|
||||
SetSolidAngleUnit(me: mutable; aSolidAngleUnit: SolidAngleUnit);
|
||||
|
||||
SolidAngleUnit (me) returns mutable SolidAngleUnit;
|
||||
SolidAngleUnit (me) returns SolidAngleUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -26,10 +26,10 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SiUnitAndThermodynamicTemperatureUnit;
|
||||
Create returns SiUnitAndThermodynamicTemperatureUnit;
|
||||
---Purpose: Returns a SiUnitAndThermodynamicTemperatureUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic)
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic)
|
||||
is redefined;
|
||||
|
||||
Init (me: mutable; hasAprefix: Boolean from Standard;
|
||||
@@ -38,9 +38,9 @@ is
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetThermodynamicTemperatureUnit(me: mutable; aThermodynamicTemperatureUnit: mutable ThermodynamicTemperatureUnit);
|
||||
SetThermodynamicTemperatureUnit(me: mutable; aThermodynamicTemperatureUnit: ThermodynamicTemperatureUnit);
|
||||
|
||||
ThermodynamicTemperatureUnit (me) returns mutable ThermodynamicTemperatureUnit;
|
||||
ThermodynamicTemperatureUnit (me) returns ThermodynamicTemperatureUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -27,10 +27,10 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SiUnitAndTimeUnit;
|
||||
Create returns SiUnitAndTimeUnit;
|
||||
---Purpose: Returns a SiUnitAndTimeUnit
|
||||
|
||||
Init (me: mutable; aDimensions: mutable DimensionalExponents from StepBasic) is redefined;
|
||||
Init (me: mutable; aDimensions: DimensionalExponents from StepBasic) is redefined;
|
||||
|
||||
|
||||
Init (me: mutable; hasAprefix: Boolean from Standard;
|
||||
@@ -39,9 +39,9 @@ is
|
||||
|
||||
-- Specific Methods for Field Data Access --
|
||||
|
||||
SetTimeUnit(me: mutable; aTimeUnit: mutable TimeUnit);
|
||||
SetTimeUnit(me: mutable; aTimeUnit: TimeUnit);
|
||||
|
||||
TimeUnit (me) returns mutable TimeUnit;
|
||||
TimeUnit (me) returns TimeUnit;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -25,16 +25,16 @@ uses
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SiUnitAndVolumeUnit from StepBasic;
|
||||
Create returns SiUnitAndVolumeUnit from StepBasic;
|
||||
---Purpose: Returns a SiUnitAndVolumeUnit
|
||||
|
||||
SetVolumeUnit(me: mutable; aVolumeUnit: mutable VolumeUnit from StepBasic);
|
||||
SetVolumeUnit(me: mutable; aVolumeUnit: VolumeUnit from StepBasic);
|
||||
|
||||
VolumeUnit(me) returns mutable VolumeUnit from StepBasic;
|
||||
VolumeUnit(me) returns VolumeUnit from StepBasic;
|
||||
|
||||
SetDimensions(me : mutable; aDimensions : mutable DimensionalExponents) is redefined;
|
||||
SetDimensions(me : mutable; aDimensions : DimensionalExponents) is redefined;
|
||||
|
||||
Dimensions(me) returns mutable DimensionalExponents is redefined;
|
||||
Dimensions(me) returns DimensionalExponents is redefined;
|
||||
|
||||
fields
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses CString
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable SizeMember;
|
||||
Create returns SizeMember;
|
||||
|
||||
HasName (me) returns Boolean is redefined;
|
||||
-- returns True
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
NamedUnit from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable SolidAngleMeasureWithUnit;
|
||||
Create returns SolidAngleMeasureWithUnit;
|
||||
---Purpose: Returns a SolidAngleMeasureWithUnit
|
||||
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
DimensionalExponents from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable SolidAngleUnit;
|
||||
Create returns SolidAngleUnit;
|
||||
---Purpose: Returns a SolidAngleUnit
|
||||
|
||||
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
NamedUnit from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable TimeMeasureWithUnit;
|
||||
Create returns TimeMeasureWithUnit;
|
||||
---Purpose: Returns a TimeMeasureWithUnit
|
||||
|
||||
|
||||
|
@@ -23,7 +23,7 @@ uses
|
||||
DimensionalExponents from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable TimeUnit;
|
||||
Create returns TimeUnit;
|
||||
---Purpose: Returns a TimeUnit
|
||||
|
||||
|
||||
|
@@ -25,7 +25,7 @@ uses
|
||||
Unit from StepBasic
|
||||
is
|
||||
|
||||
Create returns mutable UncertaintyMeasureWithUnit;
|
||||
Create returns UncertaintyMeasureWithUnit;
|
||||
---Purpose: Returns a UncertaintyMeasureWithUnit
|
||||
|
||||
|
||||
|
@@ -21,6 +21,6 @@ class VolumeUnit from StepBasic inherits NamedUnit from StepBasic
|
||||
|
||||
is
|
||||
|
||||
Create returns mutable VolumeUnit from StepBasic;
|
||||
Create returns VolumeUnit from StepBasic;
|
||||
|
||||
end VolumeUnit;
|
||||
|
@@ -24,7 +24,7 @@ uses
|
||||
Boolean from Standard
|
||||
is
|
||||
|
||||
Create returns mutable WeekOfYearAndDayDate;
|
||||
Create returns WeekOfYearAndDayDate;
|
||||
---Purpose: Returns a WeekOfYearAndDayDate
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user