01: /*
02: * @(#) DragableHandle.java
03: * Last modified date: 2/9/2005
04: *
05: * Copyright 2002 - 2005 JIDE Software Inc. All rights reserved.
06: */
07: package com.jidesoft.swing;
08:
09: /**
10: * An interface to indicate a component can be used as a handle to be drag.
11: */
12: public interface DragableHandle {
13: }
|