0
votes
0answers
7 views
displaying address on pin drop in map
Hi,
Currently in my map code pin is dropping at current location and on pin click address is displayed.
I want to display address without user interaction.
How to do it?
0
votes
1answer
17 views
Django aggregation get_*_display function usage
Hi all,
This question relates to Django Aggregation/Annotation in 1.1. Suppose I have a simple model with an IntegerField that has a "choices" parameter passed to it. In this case, it maps to a …
0
votes
2answers
60 views
Java Reflection: Count of methods with an annotation?
This works fine for filtering out methods with the Analyze annotation:
for (Method m : ParseTree.class.getMethods()) {
if (m.isAnnotationPresent(Analyze.class)) {
What if I just want a count, …
0
votes
3answers
74 views
Type annotation for none abstract property
Any ideas on how I could add type annotation to fix this error?
I'm getting a red squiggly under Foo.Bar in getFooBar and the following error message for it.
Lookup on object of indeterminate type …
0
votes
1answer
25 views
Data Annotation Validators
Sorry my poor english!
I'm trying to use the data annotation validators to make my validation server-side, I'm driving through this tutorial asp.net site: …
0
votes
0answers
35 views
Search MKMapView annotations
I've got several MKAnnotationView red push pins on a MKMapView in my iPhone application on several locations. I'd like to implement a search bar that can move the map region to show these pins. How …
0
votes
1answer
168 views
mapkit and annotations
Hi
I am very new to XCode and iPhone development so please bear with me if this question is too simple. But I have a map and I have successfully added images (not pins) to it for my annotations. And …
0
votes
2answers
126 views
iPhone Dev = maps and deselecting annotations
I am successfully drawing annotations on a map using an array of annotations. I can even click on the annotation and change it’s colour or image. My problem arises when the use selects the second …
0
votes
0answers
10 views
what’s the better strategy to store a set of MKAnnotations on file?
Is there a standardized way to persistence for MKAnnotations?
1
vote
1answer
52 views
EJB3 Annotation
Hi All
I am using JBoss 5 GA, I created a test Session bean, and local interface. I have created a servlet client. I tried to inject the interface in the servlet using @EJB..
But when I call this …
2
votes
2answers
138 views
How to use an array constant in an annotation
I would like to use constants for annotation values.
interface Client {
@Retention(RUNTIME)
@Target(METHOD)
@interface SomeAnnotation { String[] values(); }
interface Info {
…
-1
votes
2answers
243 views
Inheritance in Hibernate Annotations??
How can I use "inheritance" in Annotations?
What are the advantages of using inheritance in Annotations?
2
votes
2answers
184 views
Java metaprogramming conundrum: get all annotations that are itself annotated by a given annotation A
Do you think you are a java wizard?
That you are well versed in the secrets of the reflection API?
public @interface @a {}
public @interface @b {}
@Mark public @interface @c {}
@Mark public …
3
votes
3answers
86 views
How to install an action filter in all actions in ASP.NET MVC?
Is there a way to have an action filter, like
public class MyActionFilterAttribute : ActionFilterAttribute {
public override void OnActionExecuting(ActionExecutingContext context) {
...
be …
2
votes
2answers
131 views
JPA/Hibernate: Can I have a Parent without annotations and a Child with
I have a requirement to create a component which can be used stand-alone or within a larger application. When used stand-alone, it should not require a database, nor any database/ORM related …
