Internal class for managing touch focus. Public only for GWT. @author Nathan Sweet
| 883 | /** Internal class for managing touch focus. Public only for GWT. |
| 884 | * @author Nathan Sweet */ |
| 885 | public static final class TouchFocus implements Poolable { |
| 886 | EventListener listener; |
| 887 | Actor listenerActor, target; |
| 888 | int pointer, button; |
| 889 | |
| 890 | public void reset () { |
| 891 | listenerActor = null; |
| 892 | listener = null; |
| 893 | target = null; |
| 894 | } |
| 895 | } |
| 896 | } |
nothing calls this directly
no outgoing calls
no test coverage detected