-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPortTypeMapping.h
43 lines (37 loc) · 1.5 KB
/
PortTypeMapping.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef __PortTypeMapping_H
#define __PortTypeMapping_H
#include "hashmap.h"
typedef struct _PortTypeRef PortTypeRef;
typedef struct _PortTypeMapping PortTypeMapping;
typedef struct _Visitor Visitor;
typedef char* (*fptrPortTypMapMetaClassName)(PortTypeMapping*);
typedef char* (*fptrPortTypMapInternalGetKey)(PortTypeMapping*);
typedef void (*fptrDeletePortTypeMapping)(PortTypeMapping*);
typedef void (*fptrVisitAttrPortTypeMapping)(void*, char*, Visitor*);
typedef void* (*fptrFindByPathPortTypeMapping)(char*, PortTypeMapping*);
typedef struct _PortTypeMapping {
void *pDerivedObj;
char *eContainer;
char *path;
map_t refs;
fptrKMFMetaClassName metaClassName;
fptrKMFInternalGetKey internalGetKey;
fptrVisitAttr VisitAttributes;
fptrVisitAttr VisitPathAttributes;
fptrVisitRefs VisitReferences;
fptrVisitRefs VisitPathReferences;
fptrFindByPath FindByPath;
fptrDelete Delete;
char *beanMethodName;
char *serviceMethodName;
char *paramTypes;
char generated_KMF_ID[9];
} PortTypeMapping;
PortTypeMapping* new_PortTypeMapping(void);
char* PortTypeMapping_metaClassName(void * const this);
char* PortTypeMapping_internalGetKey(void * const this);
void delete_PortTypeMapping(void * const this);
void PortTypeMapping_VisitAttributes(void* const this, char* parent, Visitor* visitor, bool recursive);
void PortTypeMapping_VisitPathAttributes(void* const this, char* parent, Visitor* visitor, bool recursive);
void* PortTypeMapping_FindByPath(char* attribute, void * const this);
#endif /*__PortTypeMapping_H */