This section documents Messages that are used to implement creation of FullText, asking and setting contents of FullText. Each Message is a defined for specific requirement operation. (e.g. ask content of a FullText, set content of a FullText, importing specification to Teamcenter).
| Methods | A method is an implementation of a Message. Each of the Messages documented in this section has an associated default method. Calling a Message that is implemented via the default method is referred to as default Message behavior. |
| Methods ITK | In Teamcenter, a default Message behavior can be customized by registering new methods against the Message. Adding a new method to a Message overrides the default method each time the Message is called. This is significant because Teamcenter calls many of the Messages documented in this section internally. Therefore, modifying the default behaviors of any Message not only affects ITK behavior but also potentially affects Workspace, PSE, etc. Go to Methods for additional information about customizing default behaviors using methods ITK. Customization can be achieved by overloading the defined symbol. |
| #define FULLTEXT_ask_content_file_msg "FULLTEXT_ask_content_file" |
Get FullText instance content as a file.
- Parameters
-
| tag_t | fulltext_tag |
| const | char** file_name |
Definition at line 87 of file req_msg.h.
| #define FULLTEXT_create_msg "FULLTEXT_create" |
Creates a new FullText instance.
- Parameters
-
| const | char* object_name |
| const | char* object_desc |
| tag_t* | new_fulltext |
Definition at line 68 of file req_msg.h.
| #define FULLTEXT_set_content_from_file_msg "FULLTEXT_set_content_from_file" |
Set FullText instance content from a file.
- Parameters
-
| tag_t | fulltext_tag |
| const | char* file_name |
Definition at line 78 of file req_msg.h.
| #define REQ_live_document_import_post_msg "REQ_live_import_post" |
Word live document import completed.
- Parameters
-
| [in] | const | char* spec_type The Specification type |
| [in] | const | char* spec_element_type The Specification Element type |
| [in] | tag_t | top_bom_line The tag of the top BOM Line object |
Definition at line 96 of file req_msg.h.