Approach to Building Decision Support Resources #131
Replies: 1 comment
-
We also need to standardize our nomenclature. One source is the Decision Support Process and Computations. Another source is the Decision Support Application - Overview. In common are "alternatives" and "factors". I'm a bit confused by the example given of a class Decision, as it doesn't seem to fit with any of these terms (decision or alternative).
The main questions about creating a new class is whether it embodies a cohesive set of behaviors and state information. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Decision support application resources are inclusive of decisions, factors, and ranks.
I propose that each one of the resources should follow a specific design so that the maintainability of future versions of the application is better.
When creating a new resource, the resource class should be named after the resource, for example:
public class Decision {
String name;
int rank;
[]Factor factors; <---- unsure if this would be the correct syntax for a custom type, anyone is welcome to give input
}
public class Decision {
String name;
int rank;
[]Factor factors; <---- unsure if this would be the correct syntax for a custom type, anyone is welcome to give input
public Decision(String name, int rank, []Factor factors) {
this.name = name;
this.rank = rank;
this.factors = factors
}
}
Beta Was this translation helpful? Give feedback.
All reactions