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.Object
This is a abstract class. To create a concreteMetadataEditor
as 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 UntypedData
getValue()
get the metadata value after user editedvoid
setTitle(java.lang.String title)
set the title of metadata dialogabstract void
setValue(UntypedData untypeddata)
set the original value of metadataabstract int
showOpenDialog()
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
UntypedData
value
-
setTitle
public void setTitle(java.lang.String title)
set the title of metadata dialog- Parameters:
title
- the title of the dialog
-
-