Skip to content

Commit

Permalink
Initial revision
Browse files Browse the repository at this point in the history
  • Loading branch information
bouzekc committed Apr 30, 2004
0 parents commit 74d3e42
Show file tree
Hide file tree
Showing 22 changed files with 7,516 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .classpath
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>
18 changes: 18 additions & 0 deletions .project
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>
43 changes: 43 additions & 0 deletions JLibGet/FErrorAddDummy.java
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 );
}
}
}
Loading

0 comments on commit 74d3e42

Please sign in to comment.