Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
64 views

Dynamically create Items or allow / disallow user Actions in java swing

I have a database which contains users, roles, and permissions. I want to be able to map this to the front end (Java Swing) so a User who can't do an action can't see it. An example: Role ...
0
votes
1answer
413 views

Django FileField: how to set default value (auto-create empty file)?

I've got a model like this: class MyModel(models.Model): name = models.CharField(max_length=255) code = models.FileField() When a new MyModel is submitted, I want to allow for the code ...
0
votes
1answer
524 views

How to force Grails to use proper column type in MySQL for Map field

I have a problem in Grails 1.1.2 + MySQL. My domain class Something contains field Map<String, Map<Integer, Integer>> priceMap When I run the app, Grails creates table 'something' and ...
0
votes
3answers
2k views

Can one automaticaly create javadoc tags for an entire Eclipse project?

I know one can use '<alt><shift>J' to create tags for a single code element (class method for example). But is there a way to automaticaly create these tags for every class in the entire ...