01: /**
02: *
03: */package newprocess.diagram.cust.annotations.dialogs;
04:
05: import newprocess.diagram.cust.annotations.utils.OpenAnnotationUtil;
06:
07: /**
08: * Utility class for the Annotation dialog
09: * @author sh
10: */
11:
12: public class AnnotationDialogUtil {
13: public AnnotationDialogUtil() {
14: }
15:
16: /**
17: * Opens the the selected Annotation from the
18: * TableViewer in its program
19: * @param path
20: * @param projectName
21: */
22: public void openAnnotation(String path, String projectName) {
23: // delegate to the OpenAnnotation Utility
24: // to open the Annotation
25: OpenAnnotationUtil openUtil = new OpenAnnotationUtil();
26: openUtil.openAnnotation(path, projectName);
27: }
28: }
|