01: package org.strecks.navigate.internal;
02:
03: import java.lang.reflect.Method;
04:
05: import org.strecks.navigate.NavigationHandlerFactory;
06:
07: public class NavigationHandlerInfo {
08:
09: private NavigationHandlerFactory factory;
10:
11: private Method method;
12:
13: public NavigationHandlerInfo(NavigationHandlerFactory factory,
14: Method method) {
15: super ();
16: this .factory = factory;
17: this .method = method;
18: }
19:
20: public NavigationHandlerFactory getFactory() {
21: return factory;
22: }
23:
24: public Method getMethod() {
25: return method;
26: }
27:
28: }
|