|
I'm looking at using the Dojo Objective Harness (DOH) for testing some custom JavaScript code. To that end I've read the following article:
http://www.ibm.com/developerworks/web/library/wa-aj-doh/index.html
and I have a question about the test case structure...
Started by Simon MacDonald on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
|
|
Hello,
An enum structure declared in its own class is a member variable to the business logic class. That enum basically represents the state of that other class.
Although I have revisited the issue several times, replacing, or getting rid of those case...
Started by denchr on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Also for changing the state, have the return value from the operation be that... .
You could include all three methods in an interface and have different implementations of that interface (one for each enum), and have this buisness class delegate the calls. .
|
|
Greetings code-gurus!
I am writing an algorithm that connects, for instance node_A of Region_A with node_D of Region_D. (node_A and node_D are just integers). There could be 100k+ such nodes.
Assume that the line segment between A and D passes through...
Started by memC on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
};
Then, you can more easily create a data structure of functions that operate on your nodes....
You can group; int thickness; // Put other properties here .
You should try to group stuff together when you can .
If it is useful in your case.
|
Ask your Facebook Friends
|
I need to design a data structure that supports the following operations:
search element in the data structure based on a key that is an interval. For example the value within interval 1-5 may be 3, from 6-11 may be 5 and so on. The intervals are contiguous...
Started by Amit Kumar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
First, lets ....
You have 2 different issues here:
How to represent your data structure How to make it thread safe, in an efficient manor Your data structure will be doing (20-80) x (2-8) reads for every write.
To proceed in parallel.
|
|
Hello,
I need to make the databse structure for a real estate website where users can create properties of many types and with many features related to the property.
The main categories will be: 1. House (subtype apartment, house, loft) 2. Commercial ...
Started by Alexandru Trandafir Catalin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You will save a lot of time building....
With this structure, you can then add A the same time with this database structure all CRUD routines are very simple and straightforward.
In the long run and the most flexible if - when - the time comes .
|
|
Is it possible to have a structure nested within a structure in Clojure? Consider the following code:
(defstruct rect :height :width) (defstruct color-rect :color (struct rect)) (defn #^{:doc "Echoes the details of the rect passed to it"} echo-rect [r...
Started by Onorio Catenacci on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
That is, in form.
It looks like you're trying to use inheritance of structure types rather than composition.
|
|
I have this very simple code that I am using to learn structs in C#
struct ScreenPosition { // These are the two private members of the structure private int x; private int y; private int RangeCheckedX(int xPos) { if (xPos < 0 || xPos > 1280) { ...
Started by KalC on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
{ // These are the two private members of the structure private int x; private int y; private int RangeCheckedX of the structure at all, and they're not acting polymorphically, so they shouldn't be instance because the default constructer....
|
|
I have been using Rails for over 4 years so obviously I like Rails and like doing things the Rails Way and sometimes I unknowingly fall to the dark side.
I recently picked up Clean Code by Uncle Bob. I am on Chapter 6 and a bit confused whether we as ...
Started by nas on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The tables of a database....
Changing the internal data structure of these objects require a change in the database to reflect that new structure.
In the case of ActiveRecord.
Difference whether I care to follow "Law of Demeter" or not .
|
|
I'm writing a client and server application. Right now I've just been developing it on my own, so I have written it as one Eclipse project, organized into Java packages (org.myorg.server, org.myorg.client, org.myorg.networksystem, etc.). The project deploys...
Started by Ricket on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Eclipse has, for a small project: in such....
Even if you end up not using maven, it may give you some ideas about projects structure.
That reduces the amount of configuration for a build, and in the case of Maven I am not sure that one can.
|
|
I want to create an array that goes into a case structure where each element in the array is an individual case and gets done in order. Any ideas, I've been playing with the idea but have had no luck, is this even possible?
Started by Throggdor on
, 8 posts
by 6 people.
Answer Snippets (Read the full thread at ni):
Think....
I figured using a case structure would be the easiest and I'm going to select of the array in order.
You probably want an auto and in what order.
I'm a little confused but I think you don't want a case structure at all.
|