Skip to content

Commit

Permalink
Adding AFMJ source code
Browse files Browse the repository at this point in the history
  • Loading branch information
mcib3d committed Feb 22, 2024
1 parent 85e096f commit 92bd1fb
Show file tree
Hide file tree
Showing 176 changed files with 12,247 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.compile.nullAnalysis.mode": "disabled"
}
52 changes: 52 additions & 0 deletions pom.xml
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>
3 changes: 3 additions & 0 deletions src/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: AFMJ_

25 changes: 25 additions & 0 deletions src/main/java/AFMJ_.java
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 ();
}

}


24 changes: 24 additions & 0 deletions src/main/java/AFMJ_About.java
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();
}

}


15 changes: 15 additions & 0 deletions src/main/java/AboutWindowVideoJ.java
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() {
}

}
22 changes: 22 additions & 0 deletions src/main/java/VideoJ_.java
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();
}

}
Loading

0 comments on commit 92bd1fb

Please sign in to comment.