Package com.nomagic.magicdraw.mof
Class MofPlugin
- java.lang.Object
-
- com.nomagic.magicdraw.plugins.Plugin
-
- com.nomagic.magicdraw.mof.MofPlugin
-
@OpenApi public class MofPlugin extends Plugin
Plugin provides MOF (EMOF and CMOF) export/import functionality.
-
-
Field Summary
Fields Modifier and Type Field Description private com.nomagic.magicdraw.mof.export.MofExportActionmExportSelectedActionprivate com.nomagic.magicdraw.mof.export.MofExportActionmExportWholeActionprivate static MofPluginmInstance
-
Constructor Summary
Constructors Constructor Description MofPlugin()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private voidaddExportActions(NMAction parent)Configures export actions.booleanclose()MagicDraw calls this method before exiting the application.static voidexportMof(Project project, java.util.Set<Package> packages, MofType mof, java.io.File mofFile, boolean runValidation, boolean silent, ProgressStatus progressStatus)Exports given project to MOF XMI.static voidexportMof(Project project, java.util.Set<Package> packages, MofType mof, java.io.File mofFile, boolean runValidation, ProgressStatus progressStatus)Exports given project to MOF XMI.private static java.lang.StringgetMofXmiFileString()static voidimportMof(java.io.File mofFile, MofDescriptor mof, java.io.File umlFile, ProgressStatus progressStatus, boolean removeTemp)Imports given MOF to new project.voidinit()Init MagicDraw export/import actionsbooleanisSupported()MagicDraw calls this method to identify if this plugin is supported.-
Methods inherited from class com.nomagic.magicdraw.plugins.Plugin
getDescriptor
-
-
-
-
Field Detail
-
mInstance
private static MofPlugin mInstance
-
mExportWholeAction
private com.nomagic.magicdraw.mof.export.MofExportAction mExportWholeAction
-
mExportSelectedAction
private com.nomagic.magicdraw.mof.export.MofExportAction mExportSelectedAction
-
-
Method Detail
-
addExportActions
private void addExportActions(NMAction parent)
Configures export actions.
-
close
public boolean close()
Description copied from class:PluginMagicDraw calls this method before exiting the application. If at least one plugin returns 'false', MagicDraw application will not exit. Override this method and do any exit specific action(your plugin state saving and etc).
-
isSupported
public boolean isSupported()
Description copied from class:PluginMagicDraw calls this method to identify if this plugin is supported. Plugin is initialized and started only if this method returnstrue. Override this method to check specific conditions for the plugin supportability.- Specified by:
isSupportedin classPlugin- Returns:
- true, if plugin is supported; false, if plugin is not supported.
-
exportMof
@OpenApi public static void exportMof(Project project, java.util.Set<Package> packages, MofType mof, java.io.File mofFile, boolean runValidation, boolean silent, ProgressStatus progressStatus) throws java.lang.Exception
Exports given project to MOF XMI.- Parameters:
project- project to export.packages- project packages to export.mof- mof type.mofFile- output file.runValidation- run model validation when exporting.silent- silent (wihtout user interruption) exportprogressStatus- progress status.- Throws:
java.lang.Exception
-
exportMof
@OpenApi public static void exportMof(Project project, java.util.Set<Package> packages, MofType mof, java.io.File mofFile, boolean runValidation, ProgressStatus progressStatus) throws java.lang.Exception
Exports given project to MOF XMI.- Parameters:
project- project to export.packages- project packages to export.mof- mof type.mofFile- output file.runValidation- run model validation when exporting.progressStatus- progress status.- Throws:
java.lang.Exception
-
importMof
@OpenApi public static void importMof(java.io.File mofFile, MofDescriptor mof, java.io.File umlFile, ProgressStatus progressStatus, boolean removeTemp) throws java.lang.ExceptionImports given MOF to new project.- Parameters:
mofFile- MOF file to import.mof- MOF type.umlFile- Transformed file.progressStatus- progress status.- Throws:
java.lang.Exception
-
getMofXmiFileString
private static java.lang.String getMofXmiFileString()
-
-