| Class | Description |
|---|---|
| AbstractMetaDataEditor |
This is a abstract class.
|
| ChecksumDialog |
The
ChecksumDialog can be used to edit CheckSum,
which implements the MetadataeditDialog class, we can use it
with a couple of lines of code:
ChecksumDialog checksumDialog = new ChecksumDialog(checksum);
checksumDialog.showOpenDialog();
|
| ChecksumEditor |
The
ChecksumEditor wrappers class ChecksumDialog as
a MetadataEditor Dialog to edit Checksum datatype. |
| DataFormatEditor |
DataFormatEditor provides a mechanism for the user to edit
DataFormat information. |
| DateEventsDialog |
The
DateEventsDialog can be used to edit DateEvents
, which implements the MetadataeditDialog class, we can use it
with a couple of lines of code:
DateEventsDialog dataeventsdialog = new DateEventsDialog(dateevents);
dataeventsdialog.showOpenDialog();
|
| DateEventsEditor |
The
DateEventsEditor is a wrapper class for DateEventsDialog,
we can use it with a couple of lines of code:
DateEventsEditor dateEventsEditor = new DateEventsEditor();
dateEventsEditor.setValue(dataevents);
dateEventsEditor.showOpenDialog();
|
| EdalLanguageDialog |
The
EdalLanguageDialog can be used to edit
EdalLanguage, which implements the
MetadataeditDialog class, we can use it with a couple of lines
of code:
EdalLanguageDialog languageDialog = new EdalLanguageDialog(language);
languageDialog.showOpenDialog();
|
| EdalLanguageEditor |
The
EdalLanguageEditor is a wrapper class for EdalLanguageDialog,
we can use it with a couple of lines of code:
EdalLanguageEditor edalLanguageEditor = new EdalLanguageEditor();
edalLanguageEditor.setValue(language);
edalLanguageEditor.showOpenDialog();
|
| EditorContainer |
EditorContainer provides a Container for all the MetadataEditor,
this class is used in EDALFileChooser. |
| IdentifierEditor |
The
IdentifierEditor wrappers class TextDialog as a
MetadataEditor Dialog to edit Identifier datatype. |
| IdentifierRelationDialog |
The
IdentifierRelationDialog can be used to edit
Identifier relations, which implements the
MetadataeditDialog class, we can use it with a couple of lines
of code:
IdentifierRelationDialog identifierRelationDialog = new IdentifierRelationDialog(
relations);
identifierRelationDialog.showOpenDialog();
|
| IdentifierRelationEditor |
The
IdentifierRelationEditor wrappers class IdentifierRelationDialog as
a MetadataEditor Dialog to edit IdentifierRelation datatype. |
| MetaDataEditDialog |
This abstract class provides default implementations for the
MetadataDialog class. |
| MetaDataSaveDialog |
MetasaveDialog provides a simple mechanism for the user to get
the Metadata of EDAL File or Directory. |
| PermissionNewuserDialog |
PermissionNewuserDialog provides a mechanism for the user to add
new users and manage there permissions of EDAL File System. |
| PersonDialog |
The
PersonDialog can be used to edit Person,
which implements the MetadataeditDialog class, we can use it
with a couple of lines of code:
PersonDialog personDialog = new PersonDialog(person);
personDialog.showOpenDialog();
|
| PersonInfoEditor |
The
PersonInfoEditor is a wrapper class for PersonDialog,
we can use it with a couple of lines of code:
PersonInfoEditor personInfoEditor = new PersonInfoEditor();
personInfoEditor.setValue(person);
personInfoEditor.showOpenDialog();
|
| TextDialog |
The
TextDialog can be used to edit text information,
which implements the MetadataeditDialog class, we can use it
with a couple of lines of code:
TextDialog textDialog = new TextDialog(text);
textDialog.showOpenDialog();
|
| TextEditor |
The
TextEditor is a wrapper class for TextDialog,
we can use it with a couple of lines of code:
TextEditor textEditor = new TextEditor();
textEditor.setValue(text);
textEditor.showOpenDialog();
|
Copyright © 2013 Leibniz Institute of Plant Genetics and Crop Plant Research (IPK). All rights reserved.