Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
153 views

Designing APIs in Java with top-down approach - Is writing up the Javadoc the best starting point?

Whenever I have the need to design an API in Java, I normally start off by opening up my IDE, and creating the packages, classes and interfaces. The method implementations are all dummy, but the ...
6
votes
1answer
395 views

Grammar: difference between a top down and bottom up? (Example)

This is a follow up question from Grammar: difference between a top down and bottom up? I understand from that question that: the grammar itself isn't top-down or bottom-up, the parser is there ...
4
votes
2answers
467 views

Advanced RPG-Style Movement in XNA

I am making a top down, rpg-type game - similar to Pokemon, but I am stuck at character movement. Basically, what I want to achieve is a smooth tile based movement system for my player and other ...
4
votes
2answers
485 views

Grammar: difference between a top down and bottom up?

What is the difference between a top down and bottom up grammar? An example would be awesome.
1
vote
1answer
116 views

Topdown approch for abcpdf doc object

the default (x,y) axis for doc object in ABCpdf starts at bottom-left corner. is there any way to make it top-left corner.?
1
vote
2answers
306 views

How to implement a left recursion eliminator?

How can i implement an eliminator for this? A := AB | AC | D | E ;
1
vote
1answer
111 views

BDD Top-Down Approach

I'm new in BDD world and I've been in some difficult trying to get the best from top-down approach, strongly recommended by many people. Considering this what would you recommend as a good start point ...
1
vote
4answers
2k views

opengl topdown<->bottomup textures?

When i load an image via FreeImage, the bits are bottom to top. My GL code expects all images to be topdown. Whats the best way to flip the image when i copy the bits to the texture?
0
votes
1answer
33 views

Entity Framework, Repository, Data Layer, 3 Layer

I'm trying to visualize a 3-layer design with Entity Framework. If I have a Repository on top of the EF Context, are they both components of the Data Layer? Or is the Repository the Data Layer ...
0
votes
1answer
610 views

Top Down Vs Bottom Up - Normalisation

Could someone describe for me the differences between top down normalisation and bottom up normalisation with regards to databases, namely relational databases.
0
votes
2answers
145 views

Tutorial for Topdown 3D

Well, i'm looking for a good guide to program Topdown 3D in C++. Where i can find a good one? Thanks.
0
votes
1answer
371 views

IBM Eclipse WSDL Editor: How do I include an external wsdl/schema?

I am trying to create Web Services from the Top-Down approach. I downloaded Eclipse and am using the WSDL gui editor in it to build my WSDL files. I am splitting up my Services based on "modules". ...
0
votes
1answer
165 views

EJB webservice hanging during first call in Websphere

I have a top-down EJB Webservice (deployed on Websphere 6.01) that hangs the first time I call it after starting the JVM. If I see the logs, it seems to do everything normal that I expect it to ...
0
votes
1answer
522 views

Can some one please provide the practical examples of stubs and drivers?

I need some practical examples of stubs and drivers with respect to top-down and bottom-up approaches to testing. I don't require code here. Just the scenario based examples.
0
votes
2answers
68 views

how to construct web UI in a top-down way?

Has anyone done this ? If so,please share your experience:)