An object that reacts to an event that it is 'listening' for.

learn more… | top users | synonyms

0
votes
2answers
45 views

Variable listener between 2 classes

I have a problem for a month ago :S .This is it: I have 3 classes: Class 1: TabbedPane with a MouseListener, when someone click on a tab, the mouse listener change a variable called "update". This ...
0
votes
1answer
24 views

primefaces FileUploadEvent returns null

I'm trying to upload a file with primefaces fileuploader but it returns null, addPhotos.xhtml : <h:form id="importDevicesForm" enctype="multipart/form-data"> <h:outputText ...
0
votes
0answers
6 views

How to add a listener to the requestcycle onbegin request?

We are trying to get the server name, session id browser info... to keep the information in the MDC for logging. For this we are trying to add a listener in the RequestCycle of the onBeginRequest() ...
0
votes
1answer
10 views

Setting event listener on a specific layer (google maps)

Currently what I have is a zoom_changed listener that loads a layer when the zoom level is > 19. Once this layer has loaded it will be overlayed with other layers simultaneously. ...
0
votes
1answer
22 views

Android onBackPressed, how to test if unsaved changes *actually* made?

I've searched at length and tried the usual suspects, but it's time to ask for help. My Android activity loads EditText, Spinner and CheckBox values from SQLite happily enough. The problem is ...
0
votes
0answers
29 views

set click event on gmap markers and add diff text on every marker

i am try to set marker on gmap using javascript with latitude value and longitude. done to set markers on gmap. but now i want to Add text to gmap marker. i have following code:- for (var j=0; ...
1
vote
0answers
22 views

Is there any transition intent listener?

Is it possible to handle animation of intent transition? Actually I am possible in my project to click on button (which opens new intent) and fast click back - so that code in activity second is ...
0
votes
0answers
13 views

issue with rate in registerListener method of SensorManager

All, i recently came across rather strange situation. when i tried to register sensor with 1 second interval (i am using version 4.1) using registerListener i received calls onSensorChanged within a ...
2
votes
2answers
49 views

How do you replace a listener in dart?

I have a class that creates a button and connects a listener to the click event. In a sub class I'd like to replace the superclass handler. This code adds a listener: ...
0
votes
0answers
8 views

Receiving Rollout Event from iframe onto Webkit Browser Chrome

Here's a fiddle demonstrating my problem: http://jsfiddle.net/B6GTh/2/ The main page has a large iframe that will overflow your browser: <iframe width="10000" height="10000" ...
0
votes
2answers
28 views

Android: how add opacity on ImageButton click?

I tought to use OnTouchListener and tracking down and up events, setting then an alpha value, but I have to add this listener to all ImageButtons (they are really a lot). I wonder if there is a ...
2
votes
1answer
66 views

How to add listener on ArrayList in java

I want to create my own implementation of ArrayList in java, that can listen when the list is changing and to do action when this happens. From what I have read, I understand that I can't extend ...
0
votes
0answers
19 views

How do I get a non-Transient field into @PrePersist or any other Listener method with EclipseLink?

I need a field (String would be OK) in a @PrePersist method of an EntityListener. Any field which does not go to the database (meaning a @Transient field) does not reach the @PrePersist (or any other) ...
2
votes
2answers
73 views

Activation of GPS when the app is already running

I'm trying to use the GPS for my android application. In particular I use the coordinates received from the GPS (or alternatively from the 3g connection) to display the user's location on a map. But ...
0
votes
1answer
29 views

chrome.extension.onMessage.addListener blocks chrome.runtime.onInstalled.addListener

Adding an onMessage-listener prevents my onInstalled-listener from triggering. Why? This is my code: manifest.json { "name": "BUGTESTER", "description": "Hmmmmm...", "version": "0.1", ...
4
votes
2answers
44 views

Implement a listener for a Class instead of an instance

I have a lot of instances of class MyClass and they ALL have to react to some generated event from another class MyEventClass. How should I do this? My first thought was to define a listener in ...
0
votes
3answers
47 views

Why addListener() typically returns void?

Am seeing that a typical addXXXListener() returns void ! I have seen this as a practice across the board whether it is UI frameworks (like Swing) or server-side frameworks. For ex: Class: ...
3
votes
2answers
86 views

Do something at variable change in Java

I want to do the following: As soon as a specific Variable (roomName) changes its Value, the Title of a JFrame should be changed to the new Value of roomName. My only problem is, that the JFrame is ...
0
votes
1answer
46 views

setOnItemSelectedListener : application stops working

I'm new to android , and I'm trying to make editText to get visible while selecting an Item ,the code seems to be fine , but the emulator stops working anytime I run the application and click on the ...
0
votes
1answer
40 views

How to stop setOnItemSelectedListener from running in onCreate [duplicate]

I set values in my setOnItemSelectedListener depending on what is selected in my spinner. How can I stop this method being called onCreate? Thanks in advance
-2
votes
0answers
18 views

Is there a way to run one of my apps functions after every minute in blackberry 10? [duplicate]

I used to achieve this functionality using real time clock listener and the event clockupdated() in previous blackberry versions.My app received a notification from clockupdated() every minute.After ...
0
votes
1answer
20 views

Is there anything like real time clock listener in blackberry 10?

There used to be a real time clock listener in previous versions of blackberry(When the coding was in java). Now I was searching the internet but couldn't find anything like a real time clock listener ...
0
votes
2answers
19 views

Diagnostic Monitor Trace Listener

I would like to know if it is possible to modify the way the Trace is recording trace information ? Trace.Listeners.Add(new DiagnosticMonitorTraceListener()); ...
2
votes
1answer
61 views

Why is onNothingSelected method needed in spinner listener?

native English speaker, so I'd say sorry about my bad English skills to you guys. I've been studing Android since 5 weeks ago. I tried to implement a spinner and my mentor asked why the ...
0
votes
0answers
40 views

Call method when list view element is visualized

This question is the final bit I need to sort out this other question of mine (I am linking so that I justify why I need what I ask for). Is there a way to invoke a method when a specific ListView ...
1
vote
2answers
34 views

Java MouseClick Listener not working

So I'm working on a deal or no deal java game essentially, and right now I'm trying to have the image icon disappear where the user clicked. So I have an 6 by 6 array of 'metal briefcase' (casesArray) ...
1
vote
0answers
33 views

JPA entities PrePersist and PreRemove callbacks, are they fired only once per life time of an application?

The JPA 2.0 specification talks about the PrePersist and PreRemove callbacks on page 95: The PrePersist and PreRemove callback methods are invoked for a given entity before the respective ...
1
vote
1answer
21 views

How to remove different listeners on the same object that are also listening to the same event?

Does an event and a listener on a certain object act as an "identifying pair" for that listener? Or just the event on the object? reading over node.js documentation here: ...
0
votes
2answers
54 views

EditText getText returns empty

hopefully I am just passing something silly. PROBLEM: my EditText (2) getText() return empty String "" @ runtime IN THE LISTENER. Please see the lines inside the onClick(...) I suspect it has to be ...
0
votes
1answer
41 views

Reading values of dynamically generated spinners - how to do this?

In my layout there is a number of spinners generated and added programmatically this way: for (int i = 0; i < spinnerCount; i++) { spinner = new Spinner(this); ...
-2
votes
1answer
24 views

How to color given words upon inserting/removing/updating text [closed]

I'm trying to code a program that is essentially an IDE for BB code (a thread styling language). You know when you're in NetBeans or Eclipse and you enter words like public, private, static, etc and ...
0
votes
1answer
23 views

How to add addTextChangedListener to listview values from sqlite database as source in editText for Android?

I would like to have editText addTextChangedListener to listview values for sqlite database values.Kindly provide me a snippet or example to do this or is it not possible to do it.Kindly provide a ...
0
votes
3answers
72 views

Why Is ActionBarSherlock Menu Not Working?

Im a noob to android development and i'm a having an issue making the menu item listener work. When i click on the menu item a toast is supposed to display but nothing happens. I have the correct ...
0
votes
2answers
54 views

Trigger event when AsyncTask is complete using Listener

I'm having some confusion on how to use Listeners to pass information between classes and activities. The scenario is this: I have a task that reads data from an Sqlite database and puts this data ...
-4
votes
0answers
40 views

Events and Listeners [closed]

Well, I recently started learning about Swing in Java. But I came across a hurdle i.e. events in Java and Listeners to those Events!! Can Help me on How to use it or when to use it!!
0
votes
1answer
39 views

Get all data and sub data of a complexe xml in organized way

I want to get data in my xml with her associated sub data : for example I want to take all the name3 in categorie2 and all the name5 who are in this name3 and all the name7 who are in this name5 ...
0
votes
1answer
18 views

EditText listeners not fired when it is in dialog

I created a custom-dialog in android that contains an EditText and a ListView. The list view onItemClickListener is fired correctly when I select any Item, but it is not the case with the listener of ...
0
votes
0answers
41 views

Intercept and read CSV file download in Chrome Extension

Is it possible for a Chrome extension to detect when a CSV file (or any other plain text file, e.g. txt) is downloaded within a website? I'm looking to intercept the response and read out the contents ...
1
vote
0answers
44 views

Geoloqi Android SDK : How to listen to location changes for all members in a group?

I am currently working with Geoloqi Android SDK on displaying the rough location of all the members in a particular group. I have successfully called for group/create and added anonymous users to the ...
1
vote
0answers
53 views

JavaScript Listener for when HTML5 Swiffy Animation is Complete?

Is there a way to add a JavaScript listener to Swiffy, in order to detect when animation is complete? (without editing the FLA before SWF conversion to Swiffy) In AS3 I used a loading SWF. Is there ...
0
votes
0answers
55 views

selectonemenu doesn't set value and change listener nit invoked primefaces

I have this p:selectonemenu : <p:selectOneMenu converter="#{fraisConverter}" id="annexe" value="#{commandeMB.selectedFrais}"> <f:selectItems ...
0
votes
0answers
11 views

Event listener for ListPopupWindow not listening

I have a button that produces a ListPopupWindow, but the listener for the listPopupWindow is not being called. Here's my listener, first attached to an extended button that has some data attached to ...
-4
votes
1answer
39 views

Eclipse: listening folder and file changes [closed]

I have to listen all changes in a specific directory (file creation, file changes...). How can I do this in Eclipse framework? With Java 1.6!
0
votes
1answer
87 views

Adding event listeners in d3.js

I have a simple question but unfortunately I think I am doing something wrong. I have a page which generates multiple independent charts. I would like to add an event listener for each of this ...
0
votes
1answer
40 views

How to add a listener for locale change?

I'm now looking for a way to monitor JVM's default locale, that is, whenever Locale.setDefault is called, a listener method is automatically executed. Maybe some byte-code engineering or AOP ...
0
votes
1answer
29 views

do something when a custom dialog is closed

I have a class that extends from Dialog, that class is my Custom dialog. Now, what I have is a code that show the dialog, but it's executed in a OnClickListener of a button. The following code is my ...
0
votes
1answer
47 views

Consuming touch event prevents me from detecting future events

I have a problem with my app : I have a FrameLayout with a Fragment which contains a map from the Google Maps Android APi (v2), and a customized view which I use to display various buttons on top of ...
0
votes
1answer
26 views

Remote listening of an event in javascript

I have 2 js pages, A and B. Is there a way to trigger an event on page A and have it listened on page B ? I miss something in my understanding to know how to do that. Thanks,
1
vote
1answer
33 views

Android Listener to detect when the screen is being pressed

I have a view in my Android app that should be updated constantly when the screen is being pressed. Most listeners I found only invalidate the view once when the user touches the screen for the first ...
-1
votes
0answers
26 views

How to use a variable in a gui listener?

I am creating a gui, and in the main class there is an int variable. I need to use this variable in the listener, but I'm not sure what I need to do to access this variable? Help? I have been searing ...

1 2 3 4 5 34