Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
13answers
3k views

suggestions for declarative GUI programming in Java

I wonder if there are any suggestions for declarative GUI programming in Java. (I abhor visual-based GUI creator/editor software, but am getting a little tired of manually instantiating JPanels and ...
35
votes
11answers
4k views

Very simple, terse and easy GUI programming “frameworks”

Please list GUI programming libraries, toolkits, frameworks which allow to write GUI apps quickly. I mean in such a way, that GUI is described entirely in a human-readable (and human-writable) plain ...
27
votes
14answers
6k views

What is declarative programming?

I keep hearing this term tossed around in several different contexts. What is it?
16
votes
4answers
513 views

WPF without XAML

Architecturally, I think WPF is pretty amazing. In general, I'm a big fan of the underlying rendering/animation inner workings. The flexibility of the templating and styling set up is pretty ...
10
votes
3answers
416 views

C++ Declarative Parsing Serialization

Looking at Java and C# they manage to do some wicked processing based on special languaged based anotation (forgive me if that is the incorrect name). In C++ we have two problems with this: 1) There ...
8
votes
8answers
837 views

Generic Declarative Expression Builder in PHP

Folks, I'm looking to build a piece of PHP5 UI that I'm pretty sure is common to a bunch of applications. Basically, it's an expression builder that allows users to specify expressions combined ...
6
votes
4answers
4k views

problem assigning declarative values in asp:hyperlink. error: this is not scriptlet. will output as plain text

I am trying to do this: <asp:HyperLink NavigateUrl='<%= WebContext.RootUrl %><%= WebContext.CurrentUser.UserName %>' runat="server" Text='<%= ...
6
votes
2answers
127 views

Problem implementing declarative transactions

I want to implement transaction control at the function level. What i want is something like this. class MyService{ static transactional = false @Transactional(readOnly = false, ...
6
votes
2answers
366 views

WF, WCF and Declarative Services (or: What does Microsoft mean by “declarative”?)

I've made this Community Wiki because some may think it's open to debate and others might think it's a question of using words to mean what they really mean (in other words, it's a matter of opinion ...
6
votes
4answers
467 views

Shortcomings with Declarative Programming

I've been reading through previous posts on declarative programming and I think I understand the underlying concepts. Could anyone describe some declarative programming paradigms and what they are ...
5
votes
4answers
550 views

What are the advantages of attribute based programming?

I am working with WCF RIA services and have come across a sample using attributes: [StringLength(10, ErrorMessage="Too long")] public string FirstName { get; set; } ... While attributes aren't ...
5
votes
2answers
590 views

SQLAlchemy introspection of declarative classes

I'm writing a small sqlalchemy shim to export data from a MySQL database with some lightweight data transformations—mostly changing field names. My current script works fine but requires me to ...
5
votes
2answers
711 views

SQLAlchemy: a better way for update with declarative?

I am a SQLAlchemy noob. Let's say I have an user table in declarative mode: class User(Base): __tablename__ = 'user' id = Column(u'id', Integer(), primary_key=True) name = ...
5
votes
8answers
371 views

Tips for grokking declarative programming languages?

Question As stated, have you any tips to help grok / understand / get-your-head-around declarative programming languages? Or is it simply a case that you’ve to immerse yourself in the language and ...
4
votes
2answers
168 views

How to choose in runtime among several OSGi services in an intelligent way?

I've in mind an intelligent system which can choose among available OSGi services dynamically. That is, choose an implementation or another depending of some runtime parameter. For example, notify to ...
4
votes
2answers
68 views

I want to call it side-effect programming, but there's gotta be a better term for this

What is the name of the following programming paradigm: Code is executed based on a set of logical tests resolving to true (the clause). The clause is comprised of operators and operands. Each ...
4
votes
5answers
219 views

“Turning” an IEnumerable<IEnumerable<T>> 90 degrees

What I'm looking for is a basic operation (Which I'm sure have a name I'm just unaware of atm). I have a matrix like: {1,2,3} {A,N,F} {7,8,9} which I'd like to mutate into {1,A,7} {2,N,8} ...
4
votes
7answers
265 views

Is there a declarative way to parse XML to Java objects?

I'm writing an import function of XML files to my Java application. I am using XOM to parse the XML files. The code for parsing the XML is not easy to understand, it is some hardcoded .getChild(3) and ...
4
votes
5answers
880 views

What problems have you solved using constraint programming?

I'd like to know about specific problems you - the SO reader - have solved using constraint programming and what constraint logic language you used. Questions: What problems have you used ...
4
votes
5answers
349 views

On declarative programming in C++

Often I face the problem of mapping the parameter space of one API onto the parameter space of another one. Often I see this solved by nested nested nested ... switch statements. And I was wondering ...
4
votes
1answer
872 views

Dictionary of tags in declarative SQLAlchemy?

I am working on a quite large code base that has been implemented using sqlalchemy.ext.declarative, and I need to add a dict-like property to one of the classes. What I need is the same as in this ...
4
votes
3answers
656 views

Elegant examples of xslt?

After a long learning loop via XAML, I've returned to HTML and javascript, and realised that the concept of declarative code - in terms of rules for transformation - is an incredibly powerful concept. ...
4
votes
3answers
2k views

Declarative validation of forms in Java/Swing

I use Java for client-side development with Swing. I love Swing; I believe it is one of the better GUI frameworks there. What I miss, however, is the support for declarative validation. Like this ...
4
votes
3answers
553 views

Declarative thread safety in .NET

I need to make an existing app thread safe. Due circumstances (see below), I decided to use one single ReaderWriterLock for the entire graph of business objects. All methods/properties must look like ...
3
votes
2answers
79 views

Get last inserted value from MySQL using SQLAlchemy

I've just run across a fairly vexing problem, and after testing I have found that NONE of the available answers are sufficient. I have seen various suggestions but none seem to be able to return the ...
3
votes
1answer
92 views

Declarative GTK

TL;DR: Is there a library for declarative UI creation using GTK? Preferrably with Python support. I'm a Python/Django developer, most of my experience about user interfaces is from the web, where ...
3
votes
1answer
159 views

Declarative vs programmatic UI (Object instances, XAML, MXML, XUL, etc.)

I have been trying to make a decision which approach to take to build UIs: programmatic or declarative. I am using JavaScript and web technologies. In some projects like ExtJS and YUI they have taken ...
3
votes
1answer
131 views

Is it possible to unload declarative classes in SQLAlchemy?

I’m working on a library where the user shall be able to simply declare a few classes which are automatically backed by the database. In short, somewhere hidden in the code, there is from ...
3
votes
2answers
1k views

SQLAlchemy declarative syntax with autoload (reflection) in Pylons

I would like to use autoload to use an existings database. I know how to do it without declarative syntax (model/_init_.py): def init_model(engine): """Call me before using any of the tables or ...
3
votes
3answers
146 views

Is it a Bad idea to use `<%=` in a WebControl

Recently I've started using <%= more often in my Web Controls. Typically I'll set String properties in the Code Behind and then spit them out onto the form. Is this a bad idea? eg. Code Behind: ...
3
votes
2answers
306 views

sqlalchemy: turn off declarative polymorphic join?

Is there a way in sqlalchemy to turn off declarative's polymorphic join loading, in a single query? Most of the time it's nice, but I have: class A(Base) : discriminator = Column('type', ...
3
votes
5answers
432 views

Is there a language and platform agnostic declarative GUI language that isn't XML?

Basically, I'm looking for a least common denominator declarative GUI language that would be perfectly suitable for rendering with JavaScript to HTML/CSS, with Python to wxPython and with C# to ...
3
votes
10answers
712 views

Best way to explain declarative fallacy in C++?

Is anyone willing to help me craft a good explanation of why the following code is not correct, in that the author is attempting to write C++ code declaratively rather than procedurally? const double ...
3
votes
1answer
128 views

Declarative derived properties for mutable models in Java

Is there a framework for synchronizing properties of POJOs? For example, I want to express (in some high-level, declarative form) that foo.text = bar.text + baz.text or foo.y = (max(bars, y)).y ...
3
votes
5answers
936 views

Declarative ruby programming replacement for if/then/else/RETURN/end?

I have this showing up all over in my controllers: if not session[:admin] flash[:notice] = "You don't have the rights to do #{:action}." redirect_to :action=>:index return end And its ...
2
votes
1answer
28 views

spring transactions strategy for component integration

We have a typical situation. Two java service components are being developed in parallel. Lets say A and B. A is JMS application that picks up message from queue and does some business rules ...
2
votes
2answers
44 views

ASP.NET MVC - Declarative Redirect On Error

I have been capturing exceptions and redirecting users to an error page. I pass the exception message and a return URL to tell the user what happened and allow them to return another page. ...
2
votes
0answers
74 views

Usage of declarative transactionmanagement for two database instances with Spring and Hibernate

I am searching for a solution, to use Spring (V1.3.2) and NHibernate (V3.2.0) together with the declarative transactionmanagement of Spring to communicate with two independent SQLite database ...
2
votes
2answers
135 views

What is a good approach to solving tangram puzzles in Prolog?

I'm not sure if this best belongs here or in math but I figure I can get some pointers here about the code as well. For an assignment I need to solve convex Tangram puzzles using Prolog. All puzzles ...
2
votes
1answer
78 views

SQLAlchemy Subquery for Suming values from another table

I am struggling to understand the proper syntax for executing a subquery in SQLAlchemy when the value needs to be returned (i.e. not used in the WHERE). I am using the declarative approach. There ...
2
votes
1answer
155 views

SQLAlchemy Declarative + relationships across multiple different databases

It took me a while, but I figured out how to use SQLAlchemy to model a relationship across two different kinds of databases: Base = declarative_base() class Survey(Base): __tablename__ = ...
2
votes
2answers
272 views

SQLAlchemy declarative many-to-many self-join via Association object

I have a table Users and a table Friends which maps users to other users as each user can have many friends. This relation is obviously symmetric: if user A is a friend of user B then user B is also a ...
2
votes
2answers
205 views

WPF binding declarative syntax: enable a GroupBox when a checkbox is NOT set

I'm a WPF newbie, so pardon me in advance if this is a dumb question. I've got syntax for enabling a GroupBox if a checkbox is checked, which works fine: IsEnabled="{Binding ElementName=cbIsDeceased, ...
2
votes
2answers
479 views

How to automatically reflect database to sqlalchemy declarative?

sqlautocode - has issues with many-to-many relations sqlsoup - doesn't support relations elixir - it's note auto-generate Is there something else I could try?
2
votes
2answers
2k views

Dynamically add HTML to ASP.NET page

Could someone please advise what the "correct" method is for adding HTML content to an ASP.NET page dynamically? I am aware of the following declarative method. //Declaration <%= MyMethodCall() ...
2
votes
1answer
43 views

Resources on declarative/logic programming?

Hi does anyone have any resources on declaritive programming languages, the more and the newer the better.
2
votes
1answer
37 views

Binding method names declaratively?

Finding the need to be able to get method names in a declarative manner (for AOP, reflection, etc) such that compiler checking enforces breaking changes etc. Good example: ...
2
votes
1answer
121 views

Feedback, resources, and information for declarative programming language

I've been thinking of some concepts underlying a new language. It was kind of a toy at first, but now I'm wondering whether it could really mean something. I'm posting this question to Stack ...
2
votes
3answers
115 views

ADT properties in Mercury

I wander why Mercury (10.04) can't infer determinism of next snippet: :- pred load_freqs(int::in, io.res(list(float))::out, io::di, io::uo) is det. load_freqs(CPU, ResFreqs, !IO):- ...
2
votes
1answer
467 views

Dynamic Class Creation in SQLAlchemy

We have a need to create SQLAlchemy classes to access multiple external data sources that will increase in number over time. We use the declarative base for our core ORM models and I know we can ...

1 2 3