Class AbstractMetaDataEditor
- java.lang.Object
-
- de.ipk_gatersleben.bit.bi.edal.rmi.client.gui.editor.AbstractMetaDataEditor
-
- Direct Known Subclasses:
ChecksumEditor,DataFormatEditor,DateEventsEditor,EdalLanguageEditor,IdentifierEditor,IdentifierRelationEditor,LegalPersonInfoEditor,PersonInfoEditor,SubjectsEditor,TextEditor
public abstract class AbstractMetaDataEditor extends java.lang.ObjectThis is a abstract class. To create a concreteMetadataEditoras a subclass,you need only provide implementations for the following three methods: *public abstract int showOpenDialog(); public abstract void setValue(UntypedData person); public abstract UntypedData getValue();
-
-
Constructor Summary
Constructors Constructor Description AbstractMetaDataEditor()
-
Method Summary
Modifier and Type Method Description abstract UntypedDatagetValue()get the metadata value after user editedvoidsetTitle(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 to set
-
getValue
public abstract UntypedData getValue()
get the metadata value after user edited- Returns:
- the
UntypedDatavalue
-
setTitle
public void setTitle(java.lang.String title)
set the title of metadata dialog- Parameters:
title- the title of the dialog
-
-