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

61 lines
1.2 KiB
Java

package org.thdl.lex.component;
/**
* Description of the Interface
*
* @author travis
* @created October 3, 2003
*/
public interface IAnalyticalNote extends ILexComponent {
/**
* Gets the parent attribute of the IAnalyticalNote object
*
* @param comp
* The new parent value
* @since
*/
/**
* Sets the parent attribute of the IAnalyticalNote object
*
* @param comp
* The new parent value
* @since
*/
/**
* Gets the parentId attribute of the IAnalyticalNote object
*
* @return The parentId value
* @since
*/
public java.lang.Integer getParentId();
/**
* Sets the parentId attribute of the IAnalyticalNote object
*
* @param parentId
* The new parentId value
* @since
*/
public void setParentId(java.lang.Integer parentId);
/**
* Gets the analyticalNote attribute of the IAnalyticalNote object
*
* @return The analyticalNote value
* @since
*/
public java.lang.String getAnalyticalNote();
/**
* Sets the analyticalNote attribute of the IAnalyticalNote object
*
* @param analyticalNote
* The new analyticalNote value
* @since
*/
public void setAnalyticalNote(java.lang.String analyticalNote);
}