Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
8answers
1k views

How do I get started designing and implementing a script interface for my .NET application?

How do I get started designing and implementing a script interface for my .NET application? There is VSTA (the .NET equivalent of VBA for COM), but as far as I understand I would have to pay a ...
9
votes
4answers
4k views

HL7 object model for .NET

Searching for a library or framework that would provide an object model, parsing, validating, etc The idea would be to be able to spin up a new object of type hl7 v2 or v3. Then perhaps call it ...
7
votes
6answers
194 views

Understanding objects in Python

I am a little confused by the object model of Python. I have two classes, one inherits from the other. class Node(): def __init__(identifier): self.identifier = identifier class Atom(Node): ...
5
votes
1answer
276 views

Object model in functional style?

Is it at all practical to implement an object model in functional style? One problem that OOP seems to excel at is describing object models. For instance, an HTML DOM is a complicated, stateful ...
4
votes
6answers
103 views

API Design Question

while designing my api, i am thinking about how i would like to model the following behavior. option 1 seems more logical, but with that comes enforcing invariants such as checking if the ...
4
votes
4answers
90 views

In Python, what is the difference between an object and a dictionary?

After an object has been created, I can add and remove slots at will, as I can do with a dictionary. Even methods are just objects stored in slots, so I probably can add methods to a dictionary as ...
4
votes
1answer
2k views

When should transient properties in CoreData be included in the object model?

I am unsure about the correct definition of transient properties: One can define transient properties in the object model and then calculate them when needed in the related class. But things work ...
3
votes
2answers
219 views

Making object model available via Automation in Delphi: what’s the easiest way?

We’re rewriting a calculation core from scratch in Delphi, and we’re looking for ways to let other people write code against it. Automation seems a fairly safe way to get this done. One use we’re ...
3
votes
2answers
2k views

What's the difference between data model and object model?

CWM is data modeling UML is object modeling. Can someone explain the difference that a layman can understand?
3
votes
2answers
51 views

“Points of view” in the object model

We have two domain types: Users and Locations. We have a method on the LocationRepository: GetUserLocations(). The existing implementation: var user = UserRepository.GetUser(userId); var locations ...
3
votes
6answers
801 views

Which is the faster way to interact with SourceSafe? Command line or object model?

Our project is held in a SourceSafe database. We have an automated build, which runs every evening on a dedicated build machine. As part of our build process, we get the source and associated data for ...
2
votes
1answer
74 views

Object Representation - PHP

I'm trying to understand how to best represent data which eventually I'll pull out and build JSON / XML from.. however I keep running in circles of how to define the object.. Essentially I want to ...
2
votes
1answer
106 views

Anything wrong using display lists in OpenGL for a single object?

First of all, I know that displays lists were deprecated in OpenGL 3.0 and removed on 3.1. But I still have to use them on this university project for which OpenGL 2.1 is being used. Every article or ...
2
votes
1answer
466 views

SPQuery and RowLimit

I have around 10000+ rows(Listitems) in a list I want to query. I want to iterate each of the item in a timerJob - but I cant take all of them at a time since : Object Model Override - NO, ...
2
votes
2answers
538 views

How to get SPUser object from SocialProfile in Sharepoint 2010?

How can I get the SPUser object associated to the profile from the SocialProfile in Sharepoint 2010? Thanks
2
votes
2answers
114 views

same class used in two separate libraries not compatible?

Came by a curious case today, that got me thinking about how the object model in delphi really works. The case: We have imported a SOAP service that expose a couple of methods, taking objects as ...
2
votes
4answers
406 views

importance of object model in domain driven design

Our team is fairly new to domain driven design. We have a new project that just moved from design phase into coding phase. In the design phase, some team members created UML design models in Visio, ...
2
votes
4answers
463 views

A practical object-oriented design question

I'm making the switch to a more object-oriented approach to ASP.NET web applications in a new system I'm developing. I have a common structure which most people will be familiar with. I have a ...
2
votes
3answers
615 views

Regarding SPLongOperation Object In SharePoint 2007

I am using the SPLongOperation Object in my project to introduce a delay while navigating to a new page.The in-built page uses the default css styles and branding. I want to customize this page ...
2
votes
4answers
222 views

In Squeak, how to wrap every method send?

I created a class, and in that class I have a method 'sendMessage: to: withArgs:' which recieves an object, a message and an array of arguments. The method is used to send messages to object and ...
2
votes
3answers
851 views

VBA for MS word

There are a lot of free sources to learn about the object model of MSExcel but I failed to find any comprehensive source for a similar source for MS word. Can You suggest a free and comprehensive ...
1
vote
1answer
28 views

object model for parameterized transformation rules

I asked a similar question earlier, but posed it as a language-specific question. I realized that my issue is at the modelling level. How should I represent the following in the object model: I ...
1
vote
1answer
63 views

Designing DTOs that have foreign key relationships

I am using Java + Spring framework for a web-application. I am not using any ORM tool. Instead I am trying to model the db relations as Java objects using simple DAO/DTO pattern. Whenever the DTO ...
1
vote
0answers
132 views

Copy-Paste issue of smartArt in Powerpoint 2007/2010

I am working on powerpoint 2007/2010 in C++. I need to delete smart art objects of a smart art which is actually copied from original one. I use the following piece of code. PPT::_SlidePtr ...
1
vote
3answers
67 views

Translating one object to another via an extension method - looking for alternate solutions

This may be a bit of an odd question, and what I have in place now works, but it feels a bit strange to me and I wonder it's because of poor design/architecture. Any thoughts here would be ...
1
vote
0answers
159 views

SharePoint SPWeb.GetList seems to cause infinite loop?

So, I'm working on a SharePoint 2010 site that I developed, and I am trying to implement content type change propogation. During this process I seem to have found a strange bug. It seems my ...
1
vote
5answers
67 views

Java object-model and type identified methods

I'm writing an app that has a few classes which represent things that are in a World. The World is represented by an array of objects (of the class from which all classes of objects that exist in ...
1
vote
1answer
74 views

Design question: Aliases for a Location model (Rails)

This is more of a general design question, but it will be implemented in RoR to which I am very much a newcomer. Also, I think this is my first question so please be gentle :) The scenario is: I ...
1
vote
1answer
258 views

Object model for .NET for the (SQL Server Reporting Services) .RDLC files?

We are looking at doing some transformations and in-flight editing of reports during report execution, using the Local Report system in .NET. Is there a better object model somewhere than the one ...
1
vote
3answers
268 views

Jpa: where put toString() custom methods?

I have used Netbeans to create automatically jpa entities starting from a db. Now I need to insert some logic code inside these entities. For example, first of all I need to write a custom toString() ...
1
vote
3answers
162 views

How to decorate a method in Ruby without alias_method_chain

We all know, that if the target class is composed with modules, you can just call super in a new module. But what if it is an ordinary method in a class? class Logger def message(msg) puts msg ...
1
vote
2answers
289 views

Can I force nHibernate to persist a new entity with the same ID as an already-loaded entity?

My project has a Ticket entity with an OwnedBy property. I'm using nHibernate to persist the tickets to a database. The canonical source for potential ticket owners is Active Directory. Since I don't ...
1
vote
1answer
77 views

Is there a better way to model the feeding behavior of an organism?

Basically each entity would have a collection of feeding behaviors that it would follow. For some reason the model I came up with does not feel right. I think the most troubling part is that using ...
1
vote
2answers
490 views

A good HTML object model in Java?

I'm looking for an HTML object model in Java, capable of parsing HTML (not required) and containing all HTML elements (and CSS as well) in an elegant object model. I'm looking for a pure java version ...
1
vote
2answers
716 views

Excel add-in transferring data from sheets to database: file path problem

I wish to create an addin for excel which can read the current sheets data and then insert it into database. The database connection requires the file location. Therefore that approach cant be applied ...
0
votes
0answers
22 views

Tool to visualize the structure of jsp:s in a web application

im looking for a tool to automatically visualize (display some kind of object graph) the structure of a java web application which is built with jsp:s and jspf:s, if there is any? I have been ...
0
votes
3answers
47 views

Methods for retrieving object-collection in Domain Driven Design

I am using Zend Framework and also try to move towards DDD approach (Domain-Driven Design). I have models, mappers and DbTables for domain objects. There are many situations when I need to fetch ...
0
votes
0answers
10 views

Trying to create entity frame work 3.5 db model first approach but raising an exception: System.Data.EntityException was unhandled

trying to create entity frame work 3.5 db model first approach but raising an exception: System.Data.EntityException was unhandled..please help me out...Thanks in advance
0
votes
6answers
68 views

How to determine if a javascript object is simple or complex?

Basically I need to tell apart the following two: var simple = 5 // or "word", or 56.78, or any other "simple" object var complex = {propname: "propvalue", "otherprop": "othervalue"}
0
votes
5answers
57 views

What is the difference between type of a class and superclass of a class in ruby?

I am but confused right now after writing my repeated efforts at understanding the object model of ruby : following are my observations. class Bird def speak puts "tweet tweet" end end ...
0
votes
1answer
59 views

Domain / Object Model Design Question

I have a Story that can have one nominator assigned to it. A nominator can be assigned to multiple stories. The nominator can move a story to their ballot (not a story can only belong to their ...
0
votes
1answer
67 views

Abstract Syntax tree vs Object Model

What is the difference between an object model and an Abstract syntax tree? I have a confusion with these terms. What I know about these are An object model gives details of objects and their ...
0
votes
2answers
139 views

universal data models and domain model implementations

One universal data model author I am reading contends that in his experience, 50% of all enterprise systems are 'universal' in their need to deal with Parties, Work Efforts, etc, 25% is universal ...
0
votes
3answers
151 views

UITableview add data from another class

Ok so I have a UITableView and a UINavigationController with a UIBarButtonSystemItemAdd and when the add button is pushed, it takes the user to a new view with some fields. I want to be able to get ...
0
votes
1answer
501 views

How to prevent adding of duplicate list items in sharepoint list

I need to add items to a sharepoint list through object model. Before doing this i want to check whether the current item is already exist in the list or not. how to do this?
0
votes
0answers
195 views

SharePoint Survey property for default choice answer and question is required?

I'm inserting into a 2007 Share Point Survey via the SharePoint object model from C# Does anybody know what property to use to set the default choice answer programatically? Also, what property or ...
0
votes
1answer
265 views

SharePoint Web Part Gallery details of each web part

When using SPWeb.GetCatalog(SPListTemplateType.WebPartCatalog), it returns an SPList which of course contains a SPListItemCollection of the web parts in the web part gallery. When looping through the ...
0
votes
1answer
108 views

Persistence and rollback, model, C#

I asked a little while ago a question about rollback, I have a new related question that I have an answer to, but would like some input. So I'm building a persistence ignorant object model and I'm ...
0
votes
1answer
111 views

Is singleton class of an object already created?

I would like to know is there any ways to check is singleton class of an object already created? ex: obj.singleton_class_defined?
0
votes
1answer
471 views

Ruby eigenclass pattern - Asking for clarification

Which information sources describe best Ruby's eigenclasses? I have read the following: (see an extra page) Still, I was NOT able to deduce the following behaviour: class Object def sc(n = 1) ...

1 2