01: /*
02: * To change this template, choose Tools | Templates
03: * and open the template in the editor.
04: */
05: package org.netbeans.modules.bpel.design.actions;
06:
07: import org.netbeans.modules.bpel.design.model.patterns.Pattern;
08:
09: /**
10: *
11: * @author Alexey
12: */
13: public interface PatternVisitor {
14: public void visit(Pattern pattern);
15: }
|