-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
bouzekc
committed
Apr 30, 2004
0 parents
commit 74d3e42
Showing
22 changed files
with
7,516 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="src" path=""/> | ||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | ||
<classpathentry kind="src" path="/ISAW"/> | ||
<classpathentry kind="output" path=""/> | ||
</classpath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>ISIS</name> | ||
<comment></comment> | ||
<projects> | ||
<project>ISAW</project> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Module: FERROR_ADD_DUMMY | ||
* Author: Freddie Akeroyd, ISIS | ||
* Purpose: FORTRAN interface to dummy Genie error handling interface | ||
* | ||
* Converted to Java by Chris M. Bouzek February 2004 | ||
* | ||
* $Log$ | ||
* Revision 1.1 2004/04/30 00:02:09 bouzekc | ||
* Initial revision | ||
* | ||
*/ | ||
package ISIS.JLibGet; | ||
|
||
/** | ||
* Class to interface to dummy Genie error handling. | ||
*/ | ||
public class FErrorAddDummy { | ||
//~ Constructors ************************************************************* | ||
|
||
/** | ||
* Do not instantiate this class. | ||
*/ | ||
private FErrorAddDummy( ) {} | ||
|
||
//~ Methods ****************************************************************** | ||
|
||
/** | ||
* Prints out the error messages from a Genie failure. | ||
* | ||
* @param objName The name of the object that caused the failure. | ||
* @param errorMess The error message. | ||
* @param solution The solution to the problem. | ||
*/ | ||
public static void fErrorAdd( | ||
String objName, String errorMess, String solution ) { | ||
System.out.println( "Error returned from " + objName + ": " + errorMess ); | ||
|
||
if( !solution.equals( " " ) ) { | ||
System.out.println( "Solution: " + solution ); | ||
} | ||
} | ||
} |
Oops, something went wrong.