','..','$myPermit') ?>
SYLLABUS Previous: 8.2 Program execution
Up: 8 THE JBONE USER
Next: 8.4 An object-oriented example:
Using an object oriented language such as JAVA, it is important to realize that you don't have to read the entire listing to understand and even modify the code. This section gives you some hints as where to find information and what needs to be done to add a new scheme.
make docs,
using the comments /** */ that preceed the declarations in the
JBONE source code. Check how this happens in the method
Mesh.point() from the Mesh object in the file Mesh.java
/** Coordinate value
@param i The index of a coordinate
@return The value of a coordinate */
public double point(int i) { return x[i]; }
Follow the links to verify where Mesh.point() appears in the
program tree
and the
name index,
defining everything you need to know to obtain a mesh point coordinate:
give it an integer index and it will return the corresponding real
position. Unless you want to modify the properties of the Mesh object,
you never need to know where and how the position was stored!
Solution hierarchy, i.e.
the files
fp[] from the old f[].
If you add a new combination of selectors, you need to define it in
Solution.hasOption()
to finally make it appear at run time.
After each modification, remember that you need to recompile with the
command make all. And you must press SHIFT and select
View->RELOAD to force the browser to load the new compiled code.
SYLLABUS Previous: 8.2 Program execution Up: 8 THE JBONE USER Next: 8.4 An object-oriented example: