Package com.nomagic.magicdraw.plugins
Interface LicensedPlugin
-
@OpenApiAll public interface LicensedPlugin
Licensed (commercial) plugin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getActivationInstructions()
Returns plugin activation instructionsjava.lang.String
getBuildInfo()
Returns build info for plugin.java.lang.String
getEULA()
Returns End User License Agreement textboolean
isReaderMode()
Checks if plugin is in reader mode.void
setReaderMode(boolean reader)
Sets reader mode for plugin
-
-
-
Method Detail
-
setReaderMode
void setReaderMode(boolean reader)
Sets reader mode for plugin- Parameters:
reader
- true if reader, otherwise false.
-
isReaderMode
boolean isReaderMode()
Checks if plugin is in reader mode.- Returns:
- true if plugin works in reader mode. No editing should be allowed.
-
getEULA
@CheckForNull java.lang.String getEULA()
Returns End User License Agreement text- Returns:
- EULA text
-
getActivationInstructions
@CheckForNull java.lang.String getActivationInstructions()
Returns plugin activation instructions- Returns:
- instructions HTML text
-
getBuildInfo
@CheckForNull java.lang.String getBuildInfo()
Returns build info for plugin. Can return null if such information is not available.- Returns:
- build info.
-
-