See: Description
| Class | Description |
|---|---|
| CheckSumviewDialog |
The
CheckSumviewDialog can be used to view CheckSum
Object, which implements the MetadataviewDialog class, we can
use it with a couple of lines of code:
CheckSumviewDialog checkSumviewDialog = new CheckSumviewDialog(checkSum);
checkSumviewDialog.showOpenDialog();
|
| CheckSumViewer |
The
CheckSumViewer wrappers class CheckSumviewDialog as
a MetadataViewer Dialog to view CheckSum datatype. |
| DataFormatViewer |
DataFormatViewer provides a mechanism for the user to
view DataFormat information. |
| DateEventsViewer |
The
DateEventsViewer is a wrapper class for DateEventsviewerDialog,
we can use it with a couple of lines of code:
DateEventsViewer dateEventsViewer = new DateEventsViewer();
dateEventsViewer.setValue(dataevents);
dateEventsViewer.showOpenDialog();
|
| DateEventsViewerDialog |
The
DateEventsviewerDialog can be used to view
DateEvents, which implements the MetadataviewDialog
class, we can use it with a couple of lines of code:
DateEventsviewerDialog dateEventsviewerDialog = new DateEventsviewerDialog(dateevents);
dateEventsviewerDialog.showOpenDialog();
|
| IdentifierRelationViewDialog |
The
IdentifierRelationviewDialog can be used to view
Identifier relations, which implements the
MetadataviewDialog class, we can use it with a couple of lines
of code:
IdentifierRelationviewDialog identifierRelationviewDialog = new IdentifierRelationviewDialog(relations);
identifierRelationviewDialog.showOpenDialog();
|
| IdentifierRelationViewer |
The
IdentifierRelationViewer wrappers class
IdentifierRelationviewDialog as a MetadataViewer
Dialog to edit IdentifierRelation datatype. we can use it with a couple of
lines of code:
IdentifierRelationViewer identifierRelationViewer = new IdentifierRelationViewer();
identifierRelationViewer.showOpenDialog();
|
| IdentifierViewer |
The
IdentifierViewer wrappers class TextviewDialog as
a MetadataViewer Dialog to edit Identifier datatype. |
| LanguageViewer |
The
LanguageViewer is a wrapper class for TextviewDialog,
we can use it with a couple of lines of code:
LanguageViewer viewer = new LanguageViewer();
viewer.setValue(text);
viewer.showOpenDialog();
|
| LegalPersonInfoViewer |
The
LegalPersonInfoViewer is a wrapper class for LegalPersonviewDialog,
we can use it with a couple of lines of code:
LegalPersonInfoViewer personInfoViewer = new LegalPersonInfoViewer();
personInfoViewer.setValue(person);
personInfoViewer.showOpenDialog();
|
| LegalPersonviewDialog |
The
LegalPersonviewDialog can be used to view LegalPerson,
which implements the MetadataviewDialog class, we can use it
with a couple of lines of code:
LegalPersonviewDialog personviewDialog = new LegalPersonviewDialog(person);
personviewDialog.showOpenDialog();
|
| MetadataViewDialog |
This abstract class provides default implementations for the
MetadataDialog class. |
| MetadataViewer |
This is a abstract class.
|
| PersonInfoViewer |
The
PersonInfoViewer is a wrapper class for
PersonviewDialog, we can use it with a couple of lines of code:
PersonInfoViewer personInfoViewer = new PersonInfoViewer();
personInfoViewer.setValue(person);
personInfoViewer.showOpenDialog();
|
| PersonsViewDialog |
The
PersonviewDialog can be used to view Person,
which implements the MetadataviewDialog class, we can use it
with a couple of lines of code:
PersonviewDialog personviewDialog = new PersonviewDialog(person);
personviewDialog.showOpenDialog();
|
| SubjectsViewDialog |
The
SubjectviewDialog can be used to view Subjects,
which implements the MetadataviewDialog class, we can use it
with a couple of lines of code:
SubjectviewDialog subjectviewDialog = new SubjectviewDialog(subjects, title);
subjectviewDialog.showOpenDialog();
|
| SubjectViewer |
The
SubjectViewer wrappers class SubjectviewDialog
as a MetadataViewer Dialog to edit Subjects datatype. we can use
it with a couple of lines of code:
SubjectViewer subjectViewer = new SubjectViewer();
subjectViewer.showOpenDialog();
|
| TextViewDialog |
The
TextviewDialog can be used to edit text information, which
implements the MetadataviewDialog class, we can use it with a
couple of lines of code:
TextviewDialog textviewDialog = new TextviewDialog(text);
textviewDialog.showOpenDialog();
|
| TextViewer |
The
TextViewer is a wrapper class for TextviewDialog,
we can use it with a couple of lines of code:
TextViewer textViewer = new TextViewer();
textViewer.setValue(text);
textViewer.showOpenDialog();
|
| ViewerContainer |
ViewerContainer provides a Container for all the MetadataViewer,
this class is used in EDALFileChooser. |