Package com.nomagic.magicdraw.plugins
Interface LicensedPlugin
@OpenApiAll
public interface LicensedPlugin
Licensed (commercial) plugin
-
Method Summary
Modifier and TypeMethodDescriptionReturns plugin activation instructionsReturns build info for plugin.getEULA()
Returns End User License Agreement textboolean
Checks if plugin is in reader mode.void
setReaderMode
(boolean reader) Sets reader mode for plugin
-
Method Details
-
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
Returns End User License Agreement text- Returns:
- EULA text
-
getActivationInstructions
Returns plugin activation instructions- Returns:
- instructions HTML text
-
getBuildInfo
Returns build info for plugin. Can return null if such information is not available.- Returns:
- build info.
-