Merge pull request #72 from nitta-lab/changeMainClass
>Changed main class from DeltaViewerSample.

OK!!
commit 16bec566bb04f3b591e2b92108540248b067cc00
2 parents a7398d8 + aa4fbea
Naoya Nitta authored on 28 Oct 2021
Showing 3 changed files
View
24
magnetFiles/en/ArgoUML.magnet
},
{
"feature": "ArgoUML (Select Figure)",
"extracts": [
{
"src": {
"class": "java.util.ArrayList",
"id": "125345735"
},
"dst": {
"class": "org.argouml.uml.diagram.static_structure.ui.SelectionClass",
"id": "1672744985"
},
"type": "Container-Component(Collection)",
"order": "0"
},
{
"src": {
"class": "org.argouml.uml.diagram.static_structure.ui.SelectionClass",
"id": "1672744985"
"id": "1675174935"
},
"type": "Container-Component",
"order": "0"
},
{
"src": {
"class": "java.util.ArrayList",
"id": "125345735"
},
"dst": {
"class": "org.argouml.uml.diagram.static_structure.ui.SelectionClass",
"id": "1672744985"
},
"type": "Container-Component(Collection)",
"order": "0"
}
]
}
]
View
18
src/org/ntlab/deltaViewer/DeltaViewerSample.java 100644 → 0
package org.ntlab.deltaViewer;
 
/**
* Delta viewer sample for MagnetRON.
*
* @author Nitta Lab.
*/
public class DeltaViewerSample {
public static void main(String[] args) {
// Build a frame, create a graph, and add the graph to the frame so you can actually see the graph.
MagnetRONFrame frame = new MagnetRONFrame();
frame.setVisible(true);
// frame.startAll();
}
}
 
 
View
20
src/org/ntlab/magnetron/Main.java 0 → 100644
package org.ntlab.magnetron;
 
import org.ntlab.deltaViewer.MagnetRONFrame;
 
/**
* Delta viewer sample for MagnetRON.
*
* @author Nitta Lab.
*/
public class Main {
public static void main(String[] args) {
// Build a frame, create a graph, and add the graph to the frame so you can actually see the graph.
MagnetRONFrame frame = new MagnetRONFrame();
frame.setVisible(true);
// frame.startAll();
}
}