specification

Looking for the official ATA-4 specification/RFC

I'm looking for one of the following: - ATA-4 Specification - A wrapper for the ATA-4 specification written in Real Mode Assembly (MASM/TURBO ASM) ...

Order of execution of parameters guarantees in Java?

Given the following function call in C: fooFunc( barFunc(), bazFunc() ); the order of execution of barFunc and BazFunc is not specified, so barFunc() may be called before bazFunc(), or bazFunc() before barFunc(). Does Java specify an order of execution of function argument expressions, or like C is that unspecified? If so, can you q...

What's the best way to link formal specs to JIRA enchancement requests?

What's the best way to link formal specs to JIRA enhancement requests? I want to track changes to specifications using JIRA. Ideally, I'd like to refer to a functional ID reference in a JIRA ticket (e.g. MYAPP>APPROVAL LOGIC>MAIN SCREEN), so that program managers can retrospectively categorise defects. The reason for this, is so that...

How to construct a flowchart/storyboard in a Func Spec

Hey I'm a bit embarrassed to write a post on this topic, but I would appreciate the help. At my school, the CS kids (myself included) have created a nice, little program that is built for incoming Chem/Bio students. It consists of several modules that reviews topics they should have a firm grasp on before they start their classes. It'...

Specification Pattern and Boolean Operator Precedence

In our project, we have implemented the Specification Pattern with boolean operators (see DDD p 274), like so: public abstract class Rule { public Rule and(Rule rule) { return new AndRule(this, rule); } public Rule or(Rule rule) { return new OrRule(this, rule); } public Rule not() { return...

I am wondering how the Plural-Field generic is to be rendered in the REST OpenSocial 1.0 API specification?

In the OpenSocial Data specificaiton 1.0 for a Person object (social profile data) it includes the use of a generic called Plural-Field. The spec can be found at: http://opensocial-resources.googlecode.com/svn/spec/1.0/Social-Data.xml#Person In the 1.0 data specification there is no XSD and no examples showing the use of this generic P...

Does the XML specification states that parser need to convert \n\r to \n always, even when \n\r appears in a CDATA section?

Hi, I've stumbled in a problem handling the \line-feed and \carriage-return characters in xml. I know that, according to http://www.w3.org/TR/REC-xml/#sec-line-ends, xml processors are required to replace any "\n\r" or lone "\r" sequences with "\n". The specification states that this has to be the behaviour for handling any "external pa...

Ideas for a TLA+ project

Please give me some suggestions regarding a project topic in the TLA+ language. I'm taking a course on the language, it's the first year I'm learning about specification and verification and I have no clue what to choose to implement in two weeks time. Any ideas? ...

Is it portable to reference the request parameter map after a request-cycle?

I'd like to know if its conform to the java servlet specification 2.5 to reference/save the return value of request.getParameterMap() between requests. The final specification only states at page 203: Returns: an immutable java.util.Map containing parameter names as keys and parameter values as map values. The keys in the parameter map...

Test plans to be written according to design spec?

Hi, Is not it unusual? It seems that I should write the test plans just by the interface design spec but it is not telling much. Is there any approach that could be used here or I simply cannot produce any relieble tests based just on that? Thanks ...

ONVIF : How to form the device web service address from the IP address of an NVT.

Hi; My question is about the ONVIF specification. http://www.onvif.org/imwp/download.asp?ContentID=18006 In section 5.10, it says : A service is a collection of related ports. This specification does not mandate any service naming principles. Lets say that I have the IP address of an NVT (Network Video Transmitter like an IP camera...

software design specification

Hii.. I am making a project on Invoice Management System. Its an online system and I am using php for its coding. In my code I am not using any classes. So which diagram will be appropriate for me to include in Technical Specification Document(as I cant use any class diagram). Thanks in advance.... ...

software design specification

Can anyone explain what is an architecture(in detail) in Technical specification documentation. Does it mean 2 tier or 3 tier architecture if we are using client-server architecture or we does it mean 3 layers implementation as user interface, presentation layer, business logic layer. What we should draw if in case interviewer asks us t...

Where can I read C99 official language standard manual/reference/specification online?

Possible Duplicate: Where do I find the current C or C++ standard documents? Where can I read C99 official language standard manual/reference/specification online? ...

How to ensure interoperability with DataContractSerializer when talking to non-.NET app?

Say I have a non-.NET app which needs to write data to be deserialized by a .NET app via DataContractSerializer. Where's the specification describing the exact format necessary? Such a spec should describe a lot of stuff, including: Does the order of sibling elements matter? Should the xml namespace URIs always begin with http://schem...

How to Create an Internal DSL in Scala?

I have been looking at a couple of books and resources on domain specific languages. I think I want to build an internal DSL in Scala. def instrument = new FXInstrument { provider = "EuroBase" instrumentOrders = List( new FXOrder { baseCcy = "GBP" termCcy = "EUR" legs = List( ...

What utilities are useful when designing software specifications?

Hi All, I was wondering if you know of any utilities for writing software specifications? Ideally a utility that allows one to define features, expectations, and relationships between various system functions. I'm looking for something that can be presented to customers so I'm assuming it would be high level but easily translated int...