Questions tagged [naked-objects]

An architectural pattern whereby an object-oriented user interface is created directly from the underlying domain object model using reflection.

12 questions
16
votes
10 answers

Naked Objects. Good or Bad

I have recently been exposed to naked objects. It looks like a pretty decent framework. However I do not see it in widespread use like say, Spring. So why is this framework not getting any mainstream application credit. What are its shortcomings as…
Midhat
  • 17,454
  • 22
  • 87
  • 114
6
votes
2 answers

Systems Similar to NakedObjects?

A while ago I read the book on Naked Objects and was excited by the ideas. Writing only my core business logic and having the UI automatically generated? Sign me up! Further, the potential goes beyond that. This can be a great tool in domain…
R. Barzell
  • 666
  • 5
  • 24
2
votes
1 answer

Getting text missed when & symbol is in a parameter of a js function called by python

I have been using the Naked.toolshed.shell library of python to launch a js script with a gived argument. The problemm is that when "&" is in the argument js only obtains what goes before that symbol, for example Python: from Naked.toolshed.shell…
Kodos23
  • 65
  • 8
2
votes
4 answers

Any experience of using Naked Objects frameworks for .net?

On first sight, Naked Objects look very promising in that they allow a full system with a basic UI to be created quickly, then refined. Has anyone got real life experience using any of the .net Naked Objects frameworks? How should I choose between…
Ian Ringrose
  • 51,220
  • 55
  • 213
  • 317
2
votes
1 answer

Dynamic content display with Naked Objects or Dynamic Data

I need to develop a POC (.NET, C#, ASP.NET...). The application should create WebPages dynamically from domain objects. The application is about collecting new potential clients and it is a lot about UX. In such scenarios, we often need some kind of…
Rénald
  • 1,412
  • 12
  • 29
2
votes
3 answers

Recommendation for tool/framework that follows the naked objects pattern?

I am searching for a tool/framework that follows the naked objects pattern and is written in Java. I know about tools like for instance JMatter, Naked Objects and Domain Object Explorer. That's not exactly what I am searching for, though. Open…
1
vote
1 answer

Naked Python-JS script

When using the Naked library of python to launch jv scripts with parameters it gives me the same problem all the time, of a parameter not defined. This is the python code: from Naked.toolshed.shell import execute_js, muterun_js pi=str(8) response =…
Kodos23
  • 65
  • 8
1
vote
1 answer

Does NakedObjects.NET Integrate well with Editor Templates in MVC 2?

I just recently listened to a podcast on Naked Objects.NET, and one thing came immediately to mind. Does this framework support the use of Editor Templates? Meaning, it would be really great if I could put in an editor template for, say a datetime…
Joseph
  • 25,330
  • 8
  • 76
  • 125
1
vote
2 answers

How to do Naked Objects .NET MVC without persistence

I'm looking to re-write an admin app, and I already have a pretty clean domain class library and web services/databases to handle all the business logic and persistence. That is, the library already provides CreateFoo, GetFoo, and UpdateFoo…
Patrick Szalapski
  • 8,738
  • 11
  • 67
  • 129
0
votes
2 answers

Converting list containing other lists and dictionaries into a pandas dataframe

I would like to convert a list, that appears to be a list of dictionaries (and with other lists inside it) to a pandas dataframe. Here is a sample of my data: ['b"{', 'n boxers: [', 'n {', 'n age: 30,', 'n hasBoutScheduled:…
Emm
  • 2,367
  • 3
  • 24
  • 50
0
votes
1 answer

Naked objects pattern vs Onion architecture

I am getting more into understanding Domain Driven Design and a bit confused about how Naked Objects Pattern and Onion Architecture could relate to each other? Individually how they relate to DDD is quite clear, but is it also possible to relate…
Thinker
  • 5,326
  • 13
  • 61
  • 137
0
votes
1 answer

c# get property on List resulting in stack overflow

Hello I am pretty new to C# so I'm not entirely sure what I'm trying to do is possible, I am basically trying to set the get property on a List, when this list loads it will read information from another list, the methodology is: If the parent list…
scrineym
  • 759
  • 1
  • 6
  • 28