0
votes
2answers
21 views
Getting server name in ContextLoaderListener
My listener is filling Cache (Terracota) and if something goes wrong at application start, ExceptionInInitializerError is thrown. I would like to get server name (like on HttpServl …
0
votes
3answers
75 views
Listen to a port that is in use [closed]
Possible Duplicate:
Get connecting IP from specified ports that using by other program.
If a port is used by a program, is there any way I can listen that port and get the …
0
votes
2answers
45 views
ClickListener for Composite Widget
Hi,
I have a composite widget made of a textbox and a custom widget, which are then added to a verticalPanel. I created this custom widget using Raphael JS.
Now i want this Comp …
0
votes
2answers
79 views
Java: implementation of notification provider vs. hashCode-driven Map
I have implemented abstract generic provider for notification bunch of generic listeners E, descendants have to override notifyListener(E) with specific notification code. For back …
1
vote
5answers
98 views
Select all the components of a array without a loop
I've made a array full of JLabels and would like to add a listener to them.
The listener doesn't need to know exactly which one was clicked on, just that one was.
Is there a way t …
0
votes
3answers
38 views
Problem with mouseListener on JPanel
Hi,
I have problem with mouseListener in JPanel.
I add JLabel which contain image(size 600 x 600) on JPanel, and I add mouseListener for the JPanel.
Everytimes I click on the imag …
1
vote
1answer
61 views
How can I configure a JPA EntityListener via a Spring XML configuration file?
Hello,
I have two webapps, that are built together and respectively provide a client and admin access to a database.
I'd like to register two JPA EntityListeners to a given class …
0
votes
2answers
58 views
How to find which objects are listening to my event?
I have a class with an event:
public event MyEventHandler MyEvent;
Is there any way of getting a handle to the collection of objects (by reflection or otherwise) that are listen …
0
votes
1answer
38 views
jQuery.scroll “listener” problem
Hey guys,
I'am scrolling through a page witch jQuery scrollTo.
If the page reaches ssome pixels for exaple y= 300 a div slides in.
If i scroll manually i want to slide that div i …
0
votes
2answers
47 views
writing global listener
I want the active window (i.e JFrame ot JDialog) to receive specific keyEvent so that whereever the focusing this keyevent is handling by the window such as ALT+F4 if you press
it …
0
votes
2answers
259 views
Android: Use a SWITCH statement with setOnClickListener/onClick for more than 1 button ?
Let's say I have a few buttons in a LinearLayout, 2 of them are:
mycards_button = ((Button)this.findViewById(R.id.Button_MyCards));
exit_button = ((Button)this.findViewById(R.id.B …
3
votes
2answers
93 views
jQuery dispatch event from a plugin for multiple listeners
I'm looking for a way to dispatch an event from my jQuery plugin so that it can have multiple listeners for that event. I have the plugin setup so that it returns a reference to it …
0
votes
2answers
58 views
Why JOptionPane prevents ActionListener on JButton???
PreventingButtonListener.java
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class PreventingButtonListener extends JFrame implements ActionListener{
…
0
votes
1answer
51 views
VB.NET: Building an Event Manager - Listeners
I'm in the research stage of a project that will require the development of a custom event manager for computer game events.
In the past, the routing code for polling the correct …
1
vote
3answers
230 views
Blackberry JDE FieldChangeListener
I'm sort of confused as to how to implement a FieldChangeListener in the Blackberry JDE. One way has me make my main class implement FieldChangeListener, and then have a fieldchang …
