View Javadoc

1   package org.telscenter.pas.otrunk.skeleton;
2   
3   import org.concord.framework.otrunk.OTObjectInterface;
4   
5   public interface OTPasEntity extends OTObjectInterface {
6   	public String getTitle();
7   
8   	public void setTitle(String title);
9   
10  	public String getAuthorNotes();
11  
12  	public void setAuthorNotes(String notes);
13  }