| http://www.w3.org/ns/prov#value | - How do you architect and/or organize your code and keep it understandable as a whole?One other thought springs to mind: try to keep the complexity of individual classes and packages low so that it is easier to understand how they should be used.There is a few ways to achieve this:- Use encapsulation: i.e. avoid making every class, method and member public - if it does not need to be exposed then hide
|