Skip to content
Snippets Groups Projects
Commit ea2dcb1f authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

pp

parent 71664867
No related branches found
No related tags found
Loading
...@@ -5,7 +5,7 @@ import android.os.Parcel; ...@@ -5,7 +5,7 @@ import android.os.Parcel;
import android.os.Parcelable; import android.os.Parcelable;
public class Gmsh implements Parcelable { public class Gmsh implements Parcelable {
/** from C/C++ code **/ // from C/C++ code:
static { static {
System.loadLibrary("f2cblas"); System.loadLibrary("f2cblas");
System.loadLibrary("f2clapack"); System.loadLibrary("f2clapack");
...@@ -45,7 +45,7 @@ public class Gmsh implements Parcelable { ...@@ -45,7 +45,7 @@ public class Gmsh implements Parcelable {
public static native String getAboutGmsh(); public static native String getAboutGmsh();
public static native String getAboutGetDP(); public static native String getAboutGetDP();
/** Java CLASS **/ // Java class:
private long ptr; private long ptr;
private Handler handler; private Handler handler;
public Gmsh(Handler handler, float fontFactor) public Gmsh(Handler handler, float fontFactor)
......
...@@ -70,9 +70,7 @@ public class SplashScreen extends Activity{ ...@@ -70,9 +70,7 @@ public class SplashScreen extends Activity{
handler.sendMessageDelayed(msg, 500); // 500 milliseconds handler.sendMessageDelayed(msg, 500); // 500 milliseconds
} }
/** // Uncompress zip archive into the files directory of the application.
* Uncompress zip archive into the files directory of the application.
*/
private boolean ImportZipArchive(InputStream stream) private boolean ImportZipArchive(InputStream stream)
{ {
try { try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment