|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.awt.Component
java.awt.Container
javax.swing.JComponent
javax.swing.JPanel
org.tentackle.ui.FormPanel
org.tentackle.ui.FormComponentPanel
org.tentackle.ui.FormFieldComponentPanel
org.tentackle.appworx.AppDbObjectLinkPanel
public class AppDbObjectLinkPanel
A panel containing a non-editable FormField representing showing the short text (unique key) of the data object, an optional info field (long text) and buttons for editing, search (link) and clear (unlink).
AppDbObjectFieldPanel,
Serialized Form| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class javax.swing.JPanel |
|---|
JPanel.AccessibleJPanel |
| Nested classes/interfaces inherited from class javax.swing.JComponent |
|---|
JComponent.AccessibleJComponent |
| Nested classes/interfaces inherited from class java.awt.Container |
|---|
Container.AccessibleAWTContainer |
| Nested classes/interfaces inherited from class java.awt.Component |
|---|
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy |
| Field Summary |
|---|
| Fields inherited from class javax.swing.JComponent |
|---|
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
| Fields inherited from class java.awt.Component |
|---|
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
| Fields inherited from interface java.awt.image.ImageObserver |
|---|
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
| Constructor Summary | |
|---|---|
AppDbObjectLinkPanel()
Creates an application database object link panel. |
|
| Method Summary | |
|---|---|
void |
dragEnter(DropTargetDragEvent event)
Called while a drag operation is ongoing, when the mouse pointer enters the operable part of the drop site for the DropTarget
registered with this listener. |
void |
dragExit(DropTargetEvent event)
Called while a drag operation is ongoing, when the mouse pointer has exited the operable part of the drop site for the DropTarget registered with this listener. |
void |
dragOver(DropTargetDragEvent event)
Called when a drag operation is ongoing, while the mouse pointer is still over the operable part of the drop site for the DropTarget
registered with this listener. |
void |
drop(DropTargetDropEvent event)
Called when the drag operation has terminated with a drop on the operable part of the drop site for the DropTarget
registered with this listener. |
void |
dropActionChanged(DropTargetDragEvent event)
Called if the user has modified the current drop gesture. |
AppDbObject |
getLink()
Gets the linked object. |
long |
getLinkId()
Gets the object ID of the link. |
QbfParameter |
getQbfParameter()
Gets the QBF parameter. |
boolean |
isChangeable()
Returns if this component is changeable. |
boolean |
requestFocusInWindow()
Requests that this Component gets the input focus. |
void |
setChangeable(boolean flag)
Set the component to be changeable. This is a unified abstraction and will be translated to setEditable or setEnabled, whatever is appropriate to this component. |
void |
setLink(AppDbObject object)
Sets the link object (if plugin matches). |
void |
setLink(Class<? extends AppDbObject> clazz,
ContextDb db,
long linkedId)
Set the link with default plugin. |
void |
setLink(Class<? extends AppDbObject> clazz,
ContextDb db,
long linkedId,
boolean keepPlugin)
Set the link with default plugin. |
void |
setLink(QbfPlugin plugin,
long linkedId)
Sets the link. |
| Methods inherited from class org.tentackle.ui.FormPanel |
|---|
addActionListener, areValuesChanged, componentAdded, componentRemoved, fireActionPerformed, getFormValues, getTitle, isAllChangeable, isHonourAllChangeable, removeActionListener, saveValues, setAllChangeable, setFormValues, setFormValuesKeepChanged, setHonourAllChangeable, setTitle, triggerValuesChanged |
| Methods inherited from class javax.swing.JPanel |
|---|
getAccessibleContext, getUI, getUIClassID, paramString, setUI, updateUI |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public AppDbObjectLinkPanel()
| Method Detail |
|---|
public void setLink(QbfPlugin plugin,
long linkedId)
plugin - the QbfPlugin to be usedlinkedId - the original, i.e. current ID of the linked objectpublic void setLink(AppDbObject object)
object - the database object
public void setLink(Class<? extends AppDbObject> clazz,
ContextDb db,
long linkedId,
boolean keepPlugin)
clazz - the class of the linked object, e.g. Konto.classdb - is the db-connection with contextlinkedId - the original, i.e. current Id of the linked objectkeepPlugin - is true if keep plugin if already initialized
public void setLink(Class<? extends AppDbObject> clazz,
ContextDb db,
long linkedId)
clazz - the class of the linked object, e.g. Konto.classdb - is the db-connection with contextlinkedId - the original, i.e. current Id of the linked objectpublic long getLinkId()
public AppDbObject getLink()
public QbfParameter getQbfParameter()
public void setChangeable(boolean flag)
FormComponent
setChangeable in interface FormComponentsetChangeable in class FormComponentPanelflag - true the user can edit the data, false if show onlypublic boolean isChangeable()
FormComponent
isChangeable in interface FormComponentisChangeable in class FormComponentPanelpublic boolean requestFocusInWindow()
javax.swing.JComponentComponent gets the input focus.
Refer to Component.requestFocusInWindow() for a complete description of
this method.
If you would like more information on focus, see How to Use the Focus Subsystem, a section in The Java Tutorial.
requestFocusInWindow in class JComponentfalse if the focus change request is guaranteed to
fail; true if it is likely to succeedComponent.requestFocusInWindow(),
Component.requestFocusInWindow(boolean)public void dragEnter(DropTargetDragEvent event)
java.awt.dnd.DropTargetListenerDropTarget
registered with this listener.
dragEnter in interface DropTargetListenerevent - the DropTargetDragEventpublic void dragExit(DropTargetEvent event)
java.awt.dnd.DropTargetListenerDropTarget registered with this listener.
dragExit in interface DropTargetListenerevent - the DropTargetEventpublic void dragOver(DropTargetDragEvent event)
java.awt.dnd.DropTargetListenerDropTarget
registered with this listener.
dragOver in interface DropTargetListenerevent - the DropTargetDragEventpublic void dropActionChanged(DropTargetDragEvent event)
java.awt.dnd.DropTargetListener
dropActionChanged in interface DropTargetListenerevent - the DropTargetDragEventpublic void drop(DropTargetDropEvent event)
java.awt.dnd.DropTargetListenerDropTarget
registered with this listener.
This method is responsible for undertaking
the transfer of the data associated with the
gesture. The DropTargetDropEvent
provides a means to obtain a Transferable
object that represents the data object(s) to
be transfered.
From this method, the DropTargetListener
shall accept or reject the drop via the
acceptDrop(int dropAction) or rejectDrop() methods of the
DropTargetDropEvent parameter.
Subsequent to acceptDrop(), but not before,
DropTargetDropEvent's getTransferable()
method may be invoked, and data transfer may be
performed via the returned Transferable's
getTransferData() method.
At the completion of a drop, an implementation
of this method is required to signal the success/failure
of the drop by passing an appropriate
boolean to the DropTargetDropEvent's
dropComplete(boolean success) method.
Note: The data transfer should be completed before the call to the
DropTargetDropEvent's dropComplete(boolean success) method.
After that, a call to the getTransferData() method of the
Transferable returned by
DropTargetDropEvent.getTransferable() is guaranteed to
succeed only if the data transfer is local; that is, only if
DropTargetDropEvent.isLocalTransfer() returns
true. Otherwise, the behavior of the call is
implementation-dependent.
drop in interface DropTargetListenerevent - the DropTargetDropEvent
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||