Class MetadataViewer
- java.lang.Object
-
- de.ipk_gatersleben.bit.bi.edal.rmi.client.gui.viewer.MetadataViewer
-
- Direct Known Subclasses:
CheckSumViewer,DataFormatViewer,DateEventsViewer,IdentifierRelationViewer,IdentifierViewer,LanguageViewer,LegalPersonInfoViewer,PersonInfoViewer,SubjectViewer,TextViewer
public abstract class MetadataViewer extends java.lang.ObjectThis is a abstract class. To create a concreteMetadataVieweras a subclass,you need only provide implementations for the following three methods:public abstract int showOpenDialog(); public abstract void setValue(UntypedData person);
-
-
Constructor Summary
Constructors Constructor Description MetadataViewer()
-
Method Summary
Modifier and Type Method Description abstract voidsetTitle(java.lang.String title)set the title of metadata dialogabstract voidsetValue(UntypedData untypeddata)set the original value of metadataabstract intshowOpenDialog()pop up a Dialog
-
-
-
Method Detail
-
showOpenDialog
public abstract int showOpenDialog()
pop up a Dialog- Returns:
- the result
-
setValue
public abstract void setValue(UntypedData untypeddata)
set the original value of metadata- Parameters:
untypeddata- the value the set
-
setTitle
public abstract void setTitle(java.lang.String title)
set the title of metadata dialog- Parameters:
title- the title for the dialog
-
-