Interface NumberingList
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
NumberingListImpl
public interface NumberingList extends java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetAcrossDocuments()intgetAcrossStories()java.lang.StringgetName()intgetUid()voidsetAcrossDocuments(int acrossDocuments)voidsetAcrossStories(int acrossStories)voidsetName(java.lang.String name)voidsetUid(int uid)
-
-
-
Method Detail
-
getName
java.lang.String getName()
- Returns:
- the name as String
-
setName
void setName(java.lang.String name)
- Parameters:
name- the name to set
-
getUid
int getUid()
- Returns:
- the uid as String
-
setUid
void setUid(int uid)
- Parameters:
uid- the uid to set
-
getAcrossStories
int getAcrossStories()
- Returns:
- the acrossStories as int
-
setAcrossStories
void setAcrossStories(int acrossStories)
- Parameters:
acrossStories-
-
getAcrossDocuments
int getAcrossDocuments()
- Returns:
- the acrossDocuments
-
setAcrossDocuments
void setAcrossDocuments(int acrossDocuments)
- Parameters:
acrossDocuments-
-
-