Dictionary/src/java/org/thdl/lex/component/IPassage.java

100 lines
2.0 KiB
Java

package org.thdl.lex.component;
/**
* Description of the Interface
*
* @author travis
* @created October 13, 2003
*/
public interface IPassage extends Translatable {
/**
* Gets the parent attribute of the IPassage object
*
* @param comp
* The new parent value
*/
/**
* Sets the parent attribute of the IPassage object
*
* @param comp
* The new parent value
*/
/**
* Gets the parentId attribute of the IPassage object
*
* @return The parentId value
*/
public java.lang.Integer getParentId();
/**
* Sets the parentId attribute of the IPassage object
*
* @param parentId
* The new parentId value
*/
public void setParentId(java.lang.Integer parentId);
/**
* Gets the literarySource attribute of the IPassage object
*
* @return The literarySource value
*/
public java.lang.String getLiterarySource();
/**
* Sets the literarySource attribute of the IPassage object
*
* @param literarySource
* The new literarySource value
*/
public void setLiterarySource(java.lang.String literarySource);
/**
* Gets the spelling attribute of the IPassage object
*
* @return The spelling value
*/
public java.lang.String getSpelling();
/**
* Sets the spelling attribute of the IPassage object
*
* @param spelling
* The new spelling value
*/
public void setSpelling(java.lang.String spelling);
/**
* Gets the pagination attribute of the IPassage object
*
* @return The pagination value
*/
public java.lang.String getPagination();
/**
* Sets the pagination attribute of the IPassage object
*
* @param pagination
* The new pagination value
*/
public void setPagination(java.lang.String pagination);
/**
* Gets the passage attribute of the IPassage object
*
* @return The passage value
*/
public java.lang.String getPassage();
/**
* Sets the passage attribute of the IPassage object
*
* @param passage
* The new passage value
*/
public void setPassage(java.lang.String passage);
}