|
| Components |
|
| |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||||
com.sas.awt.ContainerContainerComponent
public abstract class ContainerContainerComponent
| Constructor Summary | |
|---|---|
ContainerContainerComponent()
|
|
| Method Summary | |
|---|---|
void |
addNotify()
|
java.lang.Object |
clone()
Return a clone of the object. |
int |
dragEnter(java.awt.Point point,
int representation,
int keyState,
java.util.Vector data)
dragEnter is called when the mouse cursor enters a component in webAF. |
void |
dragLeave()
dragLeave is called when the cursor leaves the component. |
int |
dragOver(java.awt.Point point,
int representation,
int keyState,
java.util.Vector data)
dragOver is called when a model or view is dragged over a component. |
com.sas.DesignTimeDropResult |
drop(java.awt.Point point,
int representation,
int keyState,
java.util.Vector data)
drop is alled when a model or view is dropped on a component. |
ContainerInterfaceSupportInfo |
getContainerInterfaceSupportInfo()
This method is not intended to be called by users. |
ErrorHandlerInterface |
getErrorHandler()
|
static com.sas.beans.ExtendedBeanInfo |
getExtendedBeanInfo()
|
java.awt.Insets |
getInsets()
|
ValidationInterface |
getValidator()
|
boolean |
isIDEDnDDropBarrier()
|
boolean |
isIDEDnDDropTarget()
|
boolean |
isValid()
|
void |
removeNotify()
|
void |
setContainerInterfaceSupportInfo(ContainerInterfaceSupportInfo info)
This method is not intended to be called by users. |
void |
setDefaultValues()
This method sets the initial property values to their default values. |
void |
setErrorHandler(ErrorHandlerInterface errorHandler)
|
void |
setIDEDnDDropBarrier(boolean isDropBarrier)
|
void |
setIDEDnDDropTarget(boolean isDropTarget)
|
void |
setInsets(java.awt.Insets insets)
|
void |
setInsets(int top,
int left,
int bottom,
int right)
|
void |
setValidator(ValidationInterface validator)
|
void |
superAddNotify()
This method is not intended to be used by users. |
java.awt.Insets |
superGetInsets()
This method is not intended to be used by users. |
void |
superRemoveNotify()
This method is not intended to be used by users. |
void |
superSetDefaultValues()
This method is not intended to be used by users. |
| Methods inherited from interface com.sas.awt.ContainerInterface |
|---|
getComponents, getLayout, invalidate, setLayout, validate |
| Constructor Detail |
|---|
public ContainerContainerComponent()
| Method Detail |
|---|
public static com.sas.beans.ExtendedBeanInfo getExtendedBeanInfo()
public void setDefaultValues()
ComponentInterfaceNote that the designTime property is not initialized when setDefaultValues is called, so initialization which depends on the value of designTime should take place in initializeComponent.
setDefaultValues in interface ContainerInterfacesetDefaultValues in interface VisualInterfacesetDefaultValues in interface com.sas.ComponentInterfacesetDefaultValues in class ContainerVisualComponentContainerInterface.setDefaultValues()public java.awt.Insets getInsets()
getInsets in interface ContainerInterfacegetInsets in class java.awt.Containerpublic void addNotify()
addNotify in interface ContainerInterfaceaddNotify in class java.awt.Containerpublic void removeNotify()
removeNotify in interface ContainerInterfaceremoveNotify in class java.awt.Containerpublic void setInsets(java.awt.Insets insets)
setInsets in interface ContainerInterface
public void setInsets(int top,
int left,
int bottom,
int right)
setInsets in interface ContainerInterface
public int dragOver(java.awt.Point point,
int representation,
int keyState,
java.util.Vector data)
DesignTimeDropTargetInterface
dragOver in interface ContainerInterfacedragOver in interface com.sas.DesignTimeDropTargetInterfacepoint - The x/y coordinates of the mouse cursor inside the component.representation - One of com.sas.DesignTimeDropResult.{representationComponent,representationModel,representationAttribute,representationViewer}keyState - Unused.data - A Vector containing information about the drag.
public int dragEnter(java.awt.Point point,
int representation,
int keyState,
java.util.Vector data)
DesignTimeDropTargetInterfaceNOTE: dragEnter is currently not functioning properly due to a problem in the C/Java event handling. It may not be called on a component, or it may not always be called on a component at the expected time.
dragEnter in interface ContainerInterfacedragEnter in interface com.sas.DesignTimeDropTargetInterfacepoint - The x/y coordinates of the mouse cursor inside the component.representation - One of com.sas.DesignTimeDropResult.{representationComponent,representationModel,representationAttribute,representationViewer}keyState - Unused.data - A Vector containing information about the drag.
public void dragLeave()
DesignTimeDropTargetInterfaceNOTE: dragLeave is currently not functioning properly due to a problem in the C/Java event handling. It may not be called on a component, or it may not always be called on a component at the expected time.
dragLeave in interface ContainerInterfacedragLeave in interface com.sas.DesignTimeDropTargetInterface
public com.sas.DesignTimeDropResult drop(java.awt.Point point,
int representation,
int keyState,
java.util.Vector data)
DesignTimeDropTargetInterface
drop in interface ContainerInterfacedrop in interface com.sas.DesignTimeDropTargetInterfacepoint - The x/y coordinates of the mouse cursor inside the component.representation - One of com.sas.DesignTimeDropResult.{representationComponent,representationModel,representationAttribute,representationViewer}keyState - Unused.data - A Vector containing information about the drag.
public boolean isIDEDnDDropTarget()
isIDEDnDDropTarget in interface ContainerInterfacepublic void setIDEDnDDropTarget(boolean isDropTarget)
setIDEDnDDropTarget in interface ContainerInterfacepublic boolean isIDEDnDDropBarrier()
isIDEDnDDropBarrier in interface ContainerInterfacepublic void setIDEDnDDropBarrier(boolean isDropBarrier)
setIDEDnDDropBarrier in interface ContainerInterfacepublic final void superSetDefaultValues()
Calls the superclasses addNotify() method. This is used to avoid an infinite recursive loop in ContainerInterfaceSupport.
superSetDefaultValues in interface ContainerInterfaceContainerVisualComponent.paint(java.awt.Graphics)public final void superAddNotify()
Calls the superclasses addNotify() method. This is used to avoid an infinite recursive loop in ContainerInterfaceSupport.
superAddNotify in interface ContainerInterfaceContainerVisualComponent.paint(java.awt.Graphics)public final void superRemoveNotify()
Calls the superclasses removeNotify() method. This is used to avoid an infinite recursive loop in ContainerInterfaceSupport.
superRemoveNotify in interface ContainerInterfaceContainerVisualComponent.paint(java.awt.Graphics)public final java.awt.Insets superGetInsets()
Calls the superclasses getInsets() method. This is used to avoid an infinite recursive loop in ContainerInterfaceSupport.
superGetInsets in interface ContainerInterfaceContainerVisualComponent.paint(java.awt.Graphics)public ErrorHandlerInterface getErrorHandler()
getErrorHandler in interface ValidatorInterfacepublic void setErrorHandler(ErrorHandlerInterface errorHandler)
setErrorHandler in interface ValidatorInterfacepublic boolean isValid()
isValid in interface ValidatorInterfaceisValid in class java.awt.Componentpublic ValidationInterface getValidator()
getValidator in interface ValidatorInterfacepublic void setValidator(ValidationInterface validator)
setValidator in interface ValidatorInterfacepublic ContainerInterfaceSupportInfo getContainerInterfaceSupportInfo()
ContainerInterface
getContainerInterfaceSupportInfo in interface ContainerInterfaceContainerInterface.getContainerInterfaceSupportInfo()public void setContainerInterfaceSupportInfo(ContainerInterfaceSupportInfo info)
ContainerInterface
setContainerInterfaceSupportInfo in interface ContainerInterfaceinfo - The instance of ContainerInterfaceSupportInfo for the component.ContainerInterface.setContainerInterfaceSupportInfo(com.sas.awt.ContainerInterfaceSupportInfo)
public java.lang.Object clone()
throws java.lang.CloneNotSupportedException
clone in class ContainerVisualComponentjava.lang.CloneNotSupportedException - if the model attached to the component being cloned
will not allow the clone to attach.
|
| Components |
|
| |||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||||