2003-10-11 Michael Koch <konqueror@gmx.de>
* java/awt/ActiveEvent.java * java/awt/datatransfer/ClipboardOwner.java * java/awt/datatransfer/FlavorMap.java * java/awt/datatransfer/Transferable.java * java/awt/dnd/Autoscroll.java * java/awt/dnd/peer/DragSourceContextPeer.java * java/awt/dnd/peer/DropTargetContextPeer.java * java/awt/dnd/peer/DropTargetPeer.java * java/awt/font/MultipleMaster.java * java/awt/font/OpenType.java * java/awt/im/spi/InputMethodDescriptor.java * java/awt/image/ImageObserver.java * java/awt/image/ImageConsumer.java * java/awt/image/ImageProducer.java * java/awt/image/RGBImageFilter.java * java/awt/image/RasterOp.java * java/awt/image/renderable/RenderableImage.java From-SVN: r72341
This commit is contained in:
committed by
Michael Koch
parent
b46f35f3a8
commit
00f4a3fb56
@@ -55,7 +55,7 @@ public interface Autoscroll
|
||||
* This method returns the Insets describing the autoscrolling region or
|
||||
* border relative to the geometry of the implementing Component
|
||||
*/
|
||||
public Insets getAutoscrollInsets ();
|
||||
Insets getAutoscrollInsets ();
|
||||
|
||||
/**
|
||||
* Notify the Component to autoscroll
|
||||
@@ -63,5 +63,7 @@ public interface Autoscroll
|
||||
* @param location A Point indicating the location of the cursor that
|
||||
* triggered this operation
|
||||
*/
|
||||
public void autoscroll (Point location);
|
||||
void autoscroll (Point location);
|
||||
|
||||
} // interface Autoscroll
|
||||
|
||||
|
||||
@@ -49,9 +49,9 @@ import java.awt.dnd.InvalidDnDOperationException;
|
||||
*/
|
||||
public interface DragSourceContextPeer
|
||||
{
|
||||
public void startDrag(DragSourceContext context, Cursor c, Image i, Point p)
|
||||
void startDrag(DragSourceContext context, Cursor c, Image i, Point p)
|
||||
throws InvalidDnDOperationException;
|
||||
public Cursor getCursor();
|
||||
public void setCursor(Cursor c) throws InvalidDnDOperationException;
|
||||
public void transferablesFlavorsChanged();
|
||||
Cursor getCursor();
|
||||
void setCursor(Cursor c) throws InvalidDnDOperationException;
|
||||
void transferablesFlavorsChanged();
|
||||
} // interface DragSourceContextPeer
|
||||
|
||||
@@ -53,15 +53,15 @@ import java.awt.dnd.InvalidDnDOperationException;
|
||||
*/
|
||||
public interface DropTargetContextPeer
|
||||
{
|
||||
public void setTargetActions(int actions);
|
||||
public int getTargetActions();
|
||||
public DropTarget getDropTarget();
|
||||
public DataFlavor[] getTransferDataFlavors();
|
||||
public Transferable getTransferable() throws InvalidDnDOperationException;
|
||||
public boolean isTransferableJVMLocal();
|
||||
public void acceptDrag(int dragAction);
|
||||
public void rejectDrag();
|
||||
public void acceptDrop(int dropAction);
|
||||
public void rejectDrop();
|
||||
public void dropComplete(boolean success);
|
||||
void setTargetActions(int actions);
|
||||
int getTargetActions();
|
||||
DropTarget getDropTarget();
|
||||
DataFlavor[] getTransferDataFlavors();
|
||||
Transferable getTransferable() throws InvalidDnDOperationException;
|
||||
boolean isTransferableJVMLocal();
|
||||
void acceptDrag(int dragAction);
|
||||
void rejectDrag();
|
||||
void acceptDrop(int dropAction);
|
||||
void rejectDrop();
|
||||
void dropComplete(boolean success);
|
||||
}
|
||||
|
||||
@@ -43,6 +43,6 @@ import java.awt.dnd.DropTarget;
|
||||
*/
|
||||
public interface DropTargetPeer
|
||||
{
|
||||
public void addDropTarget (DropTarget target);
|
||||
public void removeDropTarget (DropTarget target);
|
||||
void addDropTarget (DropTarget target);
|
||||
void removeDropTarget (DropTarget target);
|
||||
} // interface DropTargetContextPeer
|
||||
|
||||
Reference in New Issue
Block a user