See: Description
| 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. we can use it
with a couple of lines of code:
ChecksumEditor checksumEditor = new ChecksumEditor();
checksumEditor.showOpenDialog();
|
| 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. |
| LegalPersonDialog |
The
LegalPersonDialog can be used to edit
LegalPerson, which implements the
MetadataeditDialog class, we can use it with a couple of lines
of code:
LegalPersonDialog personDialog = new LegalPersonDialog(person, title);
personDialog.showOpenDialog();
|
| LegalPersonInfoEditor |
The
LegalPersonInfoEditor is a wrapper class for LegalPersonDialog,
we can use it with a couple of lines of code:
PersonInfoEditor personInfoEditor = new PersonInfoEditor();
personInfoEditor.setValue(person);
personInfoEditor.showOpenDialog();
|
| 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. |
| 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();
|
| PersonsDialog |
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();
|
| SubjectsDialog |
The
SubjectsDialog can be used to edit Subjects,
which implements the MetadataeditDialog class, we can use it
with a couple of lines of code:
SubjectsDialog subjectsDialog = new SubjectsDialog(subjects, title);
subjectsDialog.showOpenDialog();
|
| SubjectsEditor |
The
SubjectsEditor wrappers class SubjectsDialog as
a MetadataEditor Dialog to edit Subjects datatype. |
| 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();
|