Method Relationship Projections

Note: You use the Boundary Decisions tab of the Workspace Options to specify resource types your application uses to interface with databases, message queues, and other resources. When you specify the boundary decisions for an application, you tell the parser to create a decision object of a given resource type for each method call in the application.

The format pattern in the table below causes a DECISION relationship to be generated if the name of method2 matches a pattern specified in the Boundary Decisions tab. If, for example, the name of method2 is specified under the "Reads Table methods" type in Boundary Decisions, the parser generates a "Method Reads Table Decision" relationship, with entities "method1" and "Decision1".

Statement      Format Relationship Entities
INVOKES METHOD
void method1() {
  method2();
}
Method Invokes Method method1 invokes method2