Interface ImportItem
- 
- All Superinterfaces:
 java.io.Serializable
- All Known Implementing Classes:
 AbstractImportItem,ImportItemGroup
public interface ImportItem extends java.io.Serializable 
- 
- 
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classImportItem.UniqueNameSet 
- 
Field Summary
Fields Modifier and Type Field Description static intOPTION_OVERWRITEstatic intOPTION_REMAP_DB_CONNECTIONstatic intOPTION_RENAME_ON_CONFLICTstatic intOPTION_SELECT_PROJECTstatic intOPTION_SELECTABLE 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ImportItem>getChildren()java.lang.StringgetImportDescription()java.lang.StringgetItemKey()a unique key for this item typejava.lang.StringgetName()ImportItem.UniqueNameSetgetNameSet()If the rename on conflict flag is set, this should return the type of name-set used to detect a conflictintgetOptionFlags()voidsetName(java.lang.String name) 
 - 
 
- 
- 
Field Detail
- 
OPTION_SELECTABLE
static final int OPTION_SELECTABLE
- See Also:
 - Constant Field Values
 
 
- 
OPTION_OVERWRITE
static final int OPTION_OVERWRITE
- See Also:
 - Constant Field Values
 
 
- 
OPTION_RENAME_ON_CONFLICT
static final int OPTION_RENAME_ON_CONFLICT
- See Also:
 - Constant Field Values
 
 
- 
OPTION_REMAP_DB_CONNECTION
static final int OPTION_REMAP_DB_CONNECTION
- See Also:
 - Constant Field Values
 
 
- 
OPTION_SELECT_PROJECT
static final int OPTION_SELECT_PROJECT
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
getItemKey
java.lang.String getItemKey()
a unique key for this item type 
- 
getName
java.lang.String getName()
 
- 
setName
void setName(java.lang.String name)
 
- 
getImportDescription
java.lang.String getImportDescription()
 
- 
getChildren
java.util.List<ImportItem> getChildren()
 
- 
getOptionFlags
int getOptionFlags()
 
- 
getNameSet
ImportItem.UniqueNameSet getNameSet()
If the rename on conflict flag is set, this should return the type of name-set used to detect a conflict 
 - 
 
 -