-
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
Showing
176 changed files
with
12,247 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,3 @@ | ||
{ | ||
"java.compile.nullAnalysis.mode": "disabled" | ||
} |
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,52 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>com.github.mcib3d</groupId> | ||
<artifactId>afmj</artifactId> | ||
<version>master-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>2.3.2</version> | ||
<configuration> | ||
<showDeprecation>true</showDeprecation> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>net.imagej</groupId> | ||
<artifactId>ij</artifactId> | ||
<version>1.54h</version> | ||
<type>jar</type> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.framagit.mcib3d</groupId> | ||
<artifactId>mcib3d-core</artifactId> | ||
<version>4.1.6</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<repositories> | ||
<repository> | ||
<id>frama</id> | ||
<url>https://mcib3d.frama.io/3d-suite-imagej/release</url> | ||
</repository> | ||
<repository> | ||
<id>imagej.public</id> | ||
<url>http://maven.imagej.net/content/groups/public</url> | ||
</repository> | ||
</repositories> | ||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
</properties> | ||
</project> |
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,3 @@ | ||
Manifest-Version: 1.0 | ||
Main-Class: AFMJ_ | ||
|
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,25 @@ | ||
import ij.plugin.*; | ||
|
||
|
||
/** | ||
* Description of the Class | ||
* | ||
* @author thomas | ||
* @created 31 aout 2005 | ||
*/ | ||
public class AFMJ_ implements PlugIn { | ||
|
||
/** | ||
* Main processing method for the AFMJ_ object | ||
* | ||
* @param arg plugin parameter | ||
*/ | ||
public void run(String arg) { | ||
|
||
new afm.AFMInterface(); | ||
new video.VideoInterface1 (); | ||
} | ||
|
||
} | ||
|
||
|
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,24 @@ | ||
import ij.plugin.*; | ||
|
||
|
||
/** | ||
* Description of the Class | ||
* | ||
* @author thomas | ||
* @created 31 aout 2005 | ||
*/ | ||
public class AFMJ_About implements PlugIn { | ||
|
||
/** | ||
* Main processing method for the AFMJ_ object | ||
* | ||
* @param arg plugin parameter | ||
*/ | ||
public void run(String arg) { | ||
|
||
new afm.AboutWindowAFM(); | ||
} | ||
|
||
} | ||
|
||
|
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,15 @@ | ||
/* | ||
* To change this template, choose Tools | Templates | ||
* and open the template in the editor. | ||
*/ | ||
|
||
/** | ||
* | ||
* @author nanoscope | ||
*/ | ||
class AboutWindowVideoJ { | ||
|
||
public AboutWindowVideoJ() { | ||
} | ||
|
||
} |
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,22 @@ | ||
import ij.plugin.*; | ||
|
||
|
||
/** | ||
* Description of the Class | ||
* | ||
* @author Mohamed | ||
* @created 1 Feb 2011 | ||
*/ | ||
public class VideoJ_ implements PlugIn { | ||
|
||
/** | ||
* Main processing method for the AFMJ_ object | ||
* | ||
* @param arg plugin parameter | ||
*/ | ||
public void run(String arg) { | ||
|
||
new video.VideoInterface1(); | ||
} | ||
|
||
} |
Oops, something went wrong.