Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
2k views

NHibernate: difference Interceptor and Listener

Looking at all the possibilites of creation / update columns in NHibernate I mostly (Stackoverflow question, Ayende Rahien) see solutions with Listeners. The programmer who was programming this in ...
5
votes
4answers
325 views

Java Swing programming structure: are listeners supposed to be the source of almost all Swing components?

My question boils down to this: is it standard structure in Swing programming to give listeners control over new components (e.g a new JPanel) for display and input, and to give that new component's ...
5
votes
4answers
191 views

Java. Correct pattern for implementing listeners

Very typically I have a situation where a given object will need to have many listeners. For instance, I might have class Elephant { public void addListener( ElephantListener listener ) { ... } } ...
5
votes
1answer
1k views

How to resolve swing listener memory leaks?

Background So I read that often memory leaks within Swing applications originate from the use of various listeners (mouse, key, focus, etc). Essentially, because you register an object as a listener ...
5
votes
2answers
2k views

Flash AS3 EventDispatcher - any way of getting a list of registered listeners?

Is there any way of getting a list of registered listeners for an EventDispatcher? I know that EventDispatcher has the hasEventListener method to tell you if any listeners are registered, but is ...
5
votes
3answers
4k views

Monitor Directory for Changes

Much like a similar SO question, I am trying to monitor a directory on a Linux box for the addition of new files and would like to immediately process these new files when they arrive. Any ideas on ...
4
votes
1answer
162 views

Android: Register a SensorEventListener with a Handler?

I'm new to Android and I'm trying to write an app that will send sensor data from a phone over the network to a PC. I know I shouldn't do 'expensive' operations on the UI thread. Android allows ...
3
votes
3answers
6k views

Button Onclick Listener in included layouts

I come to you on bended knee, question in hand. I am relatively new to Android, so pardon any sacrilegious things I might say. Intro: I have several layouts in the app, that all have to include a ...
3
votes
3answers
622 views

Adding Listeners at runtime? - Java MVC

My model in my MVC pattern, generates components at runtime and gives them to the View to be displayed on the screen through update() method (you know, model is the observable and the view is the ...
3
votes
2answers
3k views

Dynamically Adding Listeners To Google Maps Markers

I'm working on a page which fetches code with a Javascript httpObject and uses it to update two elements on the page - a google map, and a DIV that lists the things the marker points to. That bit ...
3
votes
1answer
593 views

How do I remove an event listener from an anonymous component? [closed]

Possible Duplicate: flash AS3 how do I remove stage event listeners Say I have an event listener tied to a component and I want to remove the event listener from the component so it can be ...
3
votes
1answer
1k views

Getting ENTER to work with a JSpinner the way it does with a JTextField

First, to make my job explaining a bit easier, here's some of my code: JSpinner spin = new JSpinner( ); JFormattedTextField text = getTextField( spin ); text.addActionListener( new ...
2
votes
1answer
45 views

javascript / jquery - how to execute a function only if a mouseover listener is not active

in order to avoid a sort of flickering effect on the screen due to rollover effects on my page, I want to activate a function from mouseOut of a thumbnail only if a mouseOver state on a different ...
2
votes
1answer
42 views

Is it right to “inject” a Service in a Doctrine 2 Listener?

I've an entity, Article, and I'd like to write a listener which needs to transform a field using a webservice. Actually listener are added as is without any dependencies. I'm wondering if it is ...
2
votes
2answers
47 views

Business Event framework

I am building a social networking kind of site. I am looking for a highly scalable free and open source framework for event processing. e.g when a user does some action on website, it would trigger ...
2
votes
3answers
99 views

The Single Responsibility Principle and Event Listeners

I'm currently trying to develop a simple GUI notepad to increase my skills in OOP. I stick to the Single Responsibility Principle while developing. I've divided the application into several parts ...
2
votes
2answers
128 views

Getting the state of JToggleButton

Say I have a JToggleButton but = new JToggleButton("OK") ; Now I need the state of but when it is clicked. I mean I need to know if it's clicked or not.
2
votes
1answer
149 views

Swing focus lost inputverifier

I have a frame with some JTextFields on it. When the user tabs out from a JTextField, I execute custom logic in the FocusTraversalPolicy, which sets some properties and based on them the ...
2
votes
1answer
122 views

On Android, why can View.OnClickListener instances call their parent's methods as though they were their own?

I have a main Activity class that has a button to which I assign an OnClickListener: public class MyMainClass extends Activity { protected void initWidgets() { btAddProfile = (Button) ...
2
votes
1answer
199 views

Android event listeners for audio

I'm playing around with Android to learn the API and I'm trying to code an activity which can listen for changes in audio events. For example, the activity I created plays a random ringtone when you ...
2
votes
3answers
93 views

I want to perform some action when a mouse is over JMenuItem. What listener should I use?

I want to perform some action when a mouse is over JMenuItem. What listener should I use?
2
votes
3answers
524 views

Using same onClick listener with more than one view

I am using the same onClick listener for a number of items. When I click I want to know which one. I know that I can do a Switch statement on the getId() but would rather be able to get at the name ...
2
votes
3answers
538 views

Can't handle both click and touch events simultaneously

I am trying to handle touch events and click events on a button. I do the following: button.setOnClickListener(clickListener); button.setOnTouchListener(touchListener); When any one listener is ...
2
votes
2answers
133 views

Concurrent Session-Independent Java Web App?

Is it possible to deploy an application to a GlassFish app server that would behave more like a daemon than a web app? I'd like to set up some sort of daemon app that would relay requests to an API ...
2
votes
1answer
266 views

Using static factory classes to generate GUI components - How and where to add the required listeners?

I would like to use factory classes and methods to generate GUI components, but I don't know how and in which class the various listeners should be declared and added to the components. If I have a ...
2
votes
2answers
267 views

How to detect database events with, for example, java

Is there a way to detect database events, e.g. insert, update and delete, comparable to file access monitors like JNotify (can detect read, create, modify of files and directories)? Looking for ...
2
votes
2answers
3k views

What does addListener do in node.js?

I am trying to understand the purpose of addListener in node.js. Can someone explain please? Thanks! A simple example would be: var tcp = require('tcp'); var server = tcp.createServer(function ...
2
votes
3answers
473 views

Java - Is it possible to override an ActionListener in the SuperClass?

If have two classes, Class A and Class B, B is a subclass of A...if my Class A(the superclass) has a JButton with an ActionListener which is implemented by an anonymous inner class, how can I override ...
2
votes
2answers
624 views

Closure problem with Listener and Google Maps markers

I want to add a Listener event to each generated marker, so that when you click a marker you are redirected to the permalink url. With the code below the permalink value is the same for every ...
2
votes
1answer
202 views

What should I return from an NHibernate Event Listener?

public class MyUpdateListener : IPreUpdateListener { public bool OnPreUpdate(PreUpdateEvent @event) { // What do I return from this method - true or false? } }
2
votes
1answer
924 views

How to direct the EventLogTraceListener to create in a specific Log

The following listener will create an event entry when the Trace.WriteLine is called. If the source does not exist he will create it in the default log channel which is 'Application' . I want to ...
2
votes
3answers
335 views

How to use something other than the DefaultClosingOperation when closing a JFrame window?

I am working on a chat client using a socket, and I want a certain code to be executed before the window closes when the user clicks on "X" (like closing the connection properly). Can I do that ...
2
votes
3answers
433 views

How can I use listeners to access other elements?

I'm setting up a GUI where I need to take information inputted from form elements and manipulate the information. This requires me to use some elements to access others. For example, I have an input ...
2
votes
4answers
2k views

Starting multiple HTTP listeners on IIS using C#.NET 2.0

I have two windows services running on the same machine. Both the services uses private HttpListener listener; I specify the baseURL as "http://IPAddress:8080/" & "http://IPAddress:8081/" ...
1
vote
1answer
52 views

Does C++/CLI event have any listeners?

In C# I can check if an event has any listeners: C# Example: public static event EventHandler OnClick; if (OnClick != null) OnClick(null, new EventArgs() ); In C++/CLI checking if the event ...
1
vote
1answer
45 views

Is there any way to retrieve a RichFaces TreeNodeImpl from a NodeSelectedEvent?

I extended the RichFaces TreeNodeImpl to store another piece of data that I would need when that row was selected. When I select a node in my rich tree, I execute code in my NodeSelectListener. In ...
1
vote
3answers
52 views

How to observe when a custom object changes even after it's extended

So let's say I have a custom object in java: public class TestObject { private int value = 0; public TestObject(int value) { this.value = value; } public ...
1
vote
3answers
141 views

Order of listeners in Java

I wrote my own table cell editor that extends an AbstractCellEditor and implements a TableCellEditor, an ItemListener, and a MouseListener. Is there a way I can have the mouseClicked method be ...
1
vote
2answers
120 views

how to make dialog box appear on the left?

I want to add OnclickListener for a button,where in I want to display the Dialog box on the left of the screen on click of it.I tried to implement that but it always appears on the center of the ...
1
vote
1answer
394 views

Sencha Touch: Passing data from the 'listeners' to the detail view panel

i am using the onItemDisclosure: function(record, btn, index) {... but I require the whole list to be clicked, so now I am using the listeners: { itemtap: function (list, index, ...
1
vote
2answers
176 views

Click event on jTable -Java

I have created a table in java in Netbeans and filled it with some data. Now I want to show some detail in a text area corresponding to the particular column in a row when I click on that cell. How ...
1
vote
3answers
109 views

JInternalFrame selection

I have a JDesktopPane containing some JInternalFrames. I want some menus on the menubar to be activated only when one of the JInternalFrames is selected. I've tried using VetoableChangeListener, with ...
1
vote
1answer
82 views

Type of listener for updates to given cells/columns in JTable and incrementing focus

I am trying to use a JTable with the first two columns predefined. User enters data into 3rd column only (quantity). Then I calculate final income by multiplying 2 columns together. ...
1
vote
1answer
95 views

java mouse and keyboard listener, macro recording

If i read correctly, the mouse and keyboard listeners are intended to capture movement within an application. what I want to do is capture movement system wide. Mouse movement/clicks and button ...
1
vote
1answer
166 views

Javascript implementation of ActionScript 3 EventDispatcher

I'm porting an ActionScript application to JavaScript, and I'm trying to perfect my EventDispatcher implementation. A recent problem I had is that the callbacks that I had attached weren't being ...
1
vote
1answer
196 views

cloning jquery mobile form elements

I created a div with id=template which wraps around some html code that I want to repeat when user clicks a button. Jquery mobile automatically adds some special formating to this code (such as ...
1
vote
1answer
46 views

How to make a listener that listens for changes in a TreeMap?

I'm making a GUI which conjugates Spanish Verbs. It utilizes a TreeMap as the main data structure, which is filled with instantiations of the class Verb. Each instantiation includes a String which ...
1
vote
1answer
69 views

addEventListeners and best practices

I'm using this simple code to retrieve a value from a PHP script: package { import flash.display.MovieClip; import flash.net.URLLoader; import flash.net.URLVariables; import ...
1
vote
1answer
467 views

Android: how to implement listener

I have a design issue. I need to implement a listener. I saw the following SO question: How to create our own Listener interface in android? But in the link it provides in the answer, author creates ...
1
vote
2answers
244 views

Two questions on using Window Listeners in Java Swing Desktop Applications

Please note that my question is regarding the answers in another thread. However, when I posted the question in that thread, it was deleted. So I'm reposting the question here (with a link to the ...

1 2 3