/[classpath]/classpath/java/awt/dnd/DropTarget.java
ViewVC logotype

Diff of /classpath/java/awt/dnd/DropTarget.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by mark, Tue Apr 30 21:37:26 2002 UTC revision 1.3 by mkoch, Fri Sep 27 04:48:15 2002 UTC
# Line 36  obligated to do so.  If you do not wish Line 36  obligated to do so.  If you do not wish
36  exception statement from your version. */  exception statement from your version. */
37    
38  package java.awt.dnd;  package java.awt.dnd;
39    
40    import java.awt.Point;
41    import java.awt.Component;
42    import java.awt.datatransfer.FlavorMap;
43    import java.awt.event.ActionEvent;
44    import java.awt.event.ActionListener;
45    import java.util.TooManyListenersException;
46    
47  /** STUB CLASS ONLY */  /** STUB CLASS ONLY */
48  public class DropTarget {}  public class DropTarget
49    {
50      protected static class DropTargetAutoScroller
51        implements ActionListener
52      {
53        protected DropTargetAutoScroller (Component c, Point p)
54        {
55        }
56    
57        protected void updateLocation (Point newLocn)
58        {
59        }
60    
61        protected void stop ()
62        {
63        }
64    
65        public void actionPerformed (ActionEvent e)
66        {
67        }
68      }
69      
70      /**
71       * FIXME
72       *
73       * @exception HeadlessException FIXME
74       */
75      public DropTarget ()
76      {
77      }
78      
79      /**
80       * FIXME
81       *
82       * @exception HeadlessException FIXME
83       */
84      public DropTarget (Component c, DropTargetListener dtl)
85      {
86      }
87      
88      /**
89       * FIXME
90       *
91       * @exception HeadlessException FIXME
92       */
93      public DropTarget (Component c, int i, DropTargetListener dtl)
94      {
95      }
96      
97      /**
98       * FIXME
99       *
100       * @exception HeadlessException FIXME
101       */
102      public DropTarget (Component c, int i, DropTargetListener dtl, boolean b)
103      {
104      }
105      
106      /**
107       * FIXME
108       *
109       * @exception HeadlessException FIXME
110       */
111      public DropTarget (Component c, int i, DropTargetListener dtl, boolean b,
112                         FlavorMap fm)
113      {
114      }
115    
116      public void setComponent (Component c)
117      {
118      }
119    
120      public Component getComponent ()
121      {
122        return null;
123      }
124    
125      public void setDefaultActions (int ops)
126      {
127      }
128    
129      public int getDefaultActions ()
130      {
131        return 0;
132      }
133    
134      public void setActive(boolean isActive)
135      {
136      }
137    
138      public boolean isActive()
139      {
140        return false;
141      }
142    
143      /**
144       * @exception TooManyListenersException FIXME
145       */
146      public void addDropTargetListener (DropTargetListener dtl)
147        throws TooManyListenersException
148      {
149      }
150    
151      public void removeDropTargetListener(DropTargetListener dtl)
152      {
153      }
154    
155      public void dragEnter(DropTargetDragEvent dtde)
156      {
157      }
158    
159      public void dragOver(DropTargetDragEvent dtde)
160      {
161      }
162    
163      public void dropActionChanged(DropTargetDragEvent dtde)
164      {
165      }
166    
167      public void dragExit(DropTargetEvent dte)
168      {
169      }
170    
171      public void drop(DropTargetDropEvent dtde)
172      {
173      }
174    
175      public FlavorMap getFlavorMap()
176      {
177        return null;
178      }
179    
180      public void setFlavorMap(FlavorMap fm)
181      {
182      }
183    
184      public void addNotify(java.awt.peer.ComponentPeer peer)
185      {
186      }
187    
188      public void removeNotify(java.awt.peer.ComponentPeer peer)
189      {
190      }
191    
192      public DropTargetContext getDropTargetContext()
193      {
194        return null;
195      }
196    
197      protected DropTargetContext createDropTargetContext()
198      {
199        return null;
200      }
201    
202      protected DropTarget.DropTargetAutoScroller createDropTargetAutoScroller
203                                                           (Component c, Point p)
204      {
205        return null;
206      }
207    
208      protected void initializeAutoscrolling(Point p)
209      {
210      }
211    
212      protected void updateAutoscroll(Point dragCursorLocn)
213      {
214      }
215    
216      protected void clearAutoscroll()
217      {
218      }
219    } // class DropTarget

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26