Package | Description |
---|---|
org.micromanager |
MMStudio application and Java API.
|
org.micromanager.data |
This package contains classes related to the storage and internal
representation of image data and metadata.
|
org.micromanager.display.overlay | |
org.micromanager.profile | |
org.micromanager.propertymap | |
org.micromanager.quickaccess |
This package contains classes related to Micro-Manager's Quick-Access
Window, which provides easy access to certain user-selected controls.
|
Modifier and Type | Method and Description |
---|---|
PropertyMap |
PropertyMap.Builder.build() |
PropertyMap |
PropertyMap.PropertyMapBuilder.build()
Deprecated.
|
static PropertyMap |
PropertyMaps.emptyPropertyMap()
Return the empty property map.
|
PropertyMap |
PropertyManager.emptyPropertyMap()
Returns an empty property map.
|
static PropertyMap |
PropertyMaps.fromJSON(java.lang.String json)
Create a property map from its JSON-serialized form.
|
PropertyMap |
PropertyManager.fromJSON(java.lang.String json)
Creates a property map from its JSON-serialized form.
|
PropertyMap |
PropertyMap.getPropertyMap(java.lang.String key)
Deprecated.
|
PropertyMap |
PropertyMap.getPropertyMap(java.lang.String key,
PropertyMap aDefault) |
static PropertyMap |
PropertyMaps.loadJSON(java.io.File file)
Create a property map from its JSON-serialized form stored in a file.
|
PropertyMap |
PropertyManager.loadJSON(java.io.File file)
Create a property map from its JSON-serialized form stored in a file.
|
PropertyMap |
PropertyMap.merge(PropertyMap alt)
Deprecated.
|
PropertyMap |
MultiStagePosition.toPropertyMap()
Returns a propertymap describing this MultiStagePosition.
|
PropertyMap |
PositionList.toPropertyMap()
Creates a PropertyMap from this PositionList.
|
PropertyMap |
StagePosition.toPropertyMap()
Returns this StagePosition instance as a PropertyMap.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<PropertyMap> |
PropertyMap.getPropertyMapList(java.lang.String key,
java.lang.Iterable<PropertyMap> defaults) |
java.util.List<PropertyMap> |
PropertyMap.getPropertyMapList(java.lang.String key,
PropertyMap... defaults) |
Modifier and Type | Method and Description |
---|---|
static MultiStagePosition |
MultiStagePosition.fromPropertyMap(PropertyMap pmap)
Generates a multistagePosition from the given PropertyMap.
|
static StagePosition |
StagePosition.fromPropertyMap(PropertyMap pmap)
Returns the given PrropertyMap as a StagePosition.
|
PropertyMap |
PropertyMap.getPropertyMap(java.lang.String key,
PropertyMap aDefault) |
java.util.List<PropertyMap> |
PropertyMap.getPropertyMapList(java.lang.String key,
PropertyMap... defaults) |
PropertyMap |
PropertyMap.merge(PropertyMap alt)
Deprecated.
|
PropertyMap.Builder |
PropertyMap.Builder.putAll(PropertyMap map) |
PropertyMap.Builder |
PropertyMap.Builder.putPropertyMap(java.lang.String key,
PropertyMap value) |
PropertyMap.PropertyMapBuilder |
PropertyMap.PropertyMapBuilder.putPropertyMap(java.lang.String key,
PropertyMap values)
Deprecated.
|
PropertyMap.Builder |
PropertyMap.Builder.putPropertyMapList(java.lang.String key,
PropertyMap... values) |
void |
PositionList.replaceWithPropertyMap(PropertyMap map)
replaces the content of this PositionList with the content of the given PropertyMap.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<PropertyMap> |
PropertyMap.getPropertyMapList(java.lang.String key,
java.lang.Iterable<PropertyMap> defaults) |
PropertyMap.Builder |
PropertyMap.Builder.putPropertyMapList(java.lang.String key,
java.lang.Iterable<PropertyMap> values) |
Modifier and Type | Method and Description |
---|---|
PropertyMap |
Annotation.getGeneralAnnotation()
Return a PropertyMap of information stored by the Annotation that is not
specific to any one image.
|
PropertyMap |
Annotation.getImageAnnotation(Coords coords)
Return a PropertyMap of information stored by this Annotation related to
the image at the specified coordinates.
|
PropertyMap |
Metadata.getScopeData()
Any information provided by Micro-Manager or its device adapters that
is relevant to this image.
|
PropertyMap |
ProcessorConfigurator.getSettings()
Provide a PropertyMap fully encapsulating the settings needed to set up
a new DataProcessor.
|
PropertyMap |
Metadata.getUserData()
Arbitrary additional metadata added by third-party code.
|
PropertyMap |
SummaryMetadata.getUserData()
Any general-purpose user meta data.
|
PropertyMap |
DataManager.loadPropertyMap(java.lang.String path)
Deprecated.
use
PropertyMaps.loadJSON(File) instead |
Modifier and Type | Method and Description |
---|---|
ProcessorConfigurator |
ProcessorPlugin.createConfigurator(PropertyMap settings)
Generate any GUI needed to configure the plugin, using the provided settings to
initialize the GUI.
|
ProcessorFactory |
ProcessorPlugin.createFactory(PropertyMap settings)
Generate a ProcessorFactory that can be used to generate Processor
instances.
|
static Coords |
Coordinates.fromPropertyMap(PropertyMap pmap)
Constructs a Coords instance from a PropertyMap.
|
Metadata.Builder |
Metadata.Builder.scopeData(PropertyMap scopeData)
Add device property data.
|
Metadata.MetadataBuilder |
Metadata.MetadataBuilder.scopeData(PropertyMap scopeData)
Deprecated.
|
void |
Annotation.setGeneralAnnotation(PropertyMap newData)
Replace the data this Annotation has for the Datastore as a whole with the
provided PropertyMap.
|
void |
Annotation.setImageAnnotation(Coords coords,
PropertyMap newData)
Replace the data this Annotation has for the specified Image with the
provided PropertyMap.
|
Metadata.Builder |
Metadata.Builder.userData(PropertyMap userData)
Add user-defined data.
|
Metadata.MetadataBuilder |
Metadata.MetadataBuilder.userData(PropertyMap userData)
Deprecated.
|
SummaryMetadata.Builder |
SummaryMetadata.Builder.userData(PropertyMap userData) |
SummaryMetadata.SummaryMetadataBuilder |
SummaryMetadata.SummaryMetadataBuilder.userData(PropertyMap userData)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
PropertyMap |
Overlay.getConfiguration()
Return the user-customizable settings for this overlay.
|
PropertyMap |
AbstractOverlay.getConfiguration()
Return the user-customizable settings for this overlay.
|
Modifier and Type | Method and Description |
---|---|
void |
Overlay.setConfiguration(PropertyMap config)
Configure the overlay with the given parameters.
|
void |
AbstractOverlay.setConfiguration(PropertyMap config)
Configure the overlay with the given parameters.
|
Modifier and Type | Method and Description |
---|---|
void |
UserProfileMigration.migrate(PropertyMap legacy,
MutablePropertyMapView modern)
Perform a migration from old settings storage.
|
Modifier and Type | Method and Description |
---|---|
PropertyMap |
MutablePropertyMapView.getPropertyMap(java.lang.String key,
PropertyMap aDefault) |
PropertyMap |
MutablePropertyMapView.toPropertyMap()
Return a property map copy of this view.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<PropertyMap> |
MutablePropertyMapView.getPropertyMapList(java.lang.String key,
java.lang.Iterable<PropertyMap> defaults) |
java.util.List<PropertyMap> |
MutablePropertyMapView.getPropertyMapList(java.lang.String key,
PropertyMap... defaults) |
Modifier and Type | Method and Description |
---|---|
PropertyMap |
MutablePropertyMapView.getPropertyMap(java.lang.String key,
PropertyMap aDefault) |
java.util.List<PropertyMap> |
MutablePropertyMapView.getPropertyMapList(java.lang.String key,
PropertyMap... defaults) |
MutablePropertyMapView |
MutablePropertyMapView.putAll(PropertyMap pmap) |
MutablePropertyMapView |
MutablePropertyMapView.putPropertyMap(java.lang.String key,
PropertyMap value) |
MutablePropertyMapView |
MutablePropertyMapView.putPropertyMapList(java.lang.String key,
PropertyMap... values) |
Modifier and Type | Method and Description |
---|---|
java.util.List<PropertyMap> |
MutablePropertyMapView.getPropertyMapList(java.lang.String key,
java.lang.Iterable<PropertyMap> defaults) |
MutablePropertyMapView |
MutablePropertyMapView.putPropertyMapList(java.lang.String key,
java.lang.Iterable<PropertyMap> values) |
Modifier and Type | Method and Description |
---|---|
abstract PropertyMap |
WidgetPlugin.configureControl(java.awt.Frame parent)
Generate configuration information that can be used to configure a
control generated by this plugin.
|
Modifier and Type | Method and Description |
---|---|
abstract javax.swing.JComponent |
WidgetPlugin.createControl(PropertyMap config)
Create the GUI components for this control.
|
javax.swing.Icon |
QuickAccessManager.getCustomIcon(PropertyMap config,
javax.swing.Icon defaultIcon)
Generate an Icon based on information contained in the provided
PropertyMap.
|