You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by ni...@apache.org on 2005/06/26 21:01:38 UTC

cvs commit: jakarta-poi/src/scratchpad/src/org/apache/poi/hslf/record SlideAtom.java

nick        2005/06/26 12:01:38

  Modified:    src/scratchpad/src/org/apache/poi/hslf/record SlideAtom.java
  Log:
  Allow setting of the ID of the notes associated with the slide (have always been able to fetch it). Used when adding a new notes sheet, or when swapping notes between slides
  
  Revision  Changes    Path
  1.2       +3 -0      jakarta-poi/src/scratchpad/src/org/apache/poi/hslf/record/SlideAtom.java
  
  Index: SlideAtom.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hslf/record/SlideAtom.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SlideAtom.java	28 May 2005 05:36:00 -0000	1.1
  +++ SlideAtom.java	26 Jun 2005 19:01:38 -0000	1.2
  @@ -54,6 +54,9 @@
   	/** Get the embeded SSlideLayoutAtom */
   	public SSlideLayoutAtom getSSlideLayoutAtom() { return layoutAtom; }
   
  +	/** Change the ID of the notes for this slide. 0 if it no longer has one */
  +	public void setNotesID(int id) { notesID = id; }
  +
   	public boolean getFollowMasterObjects()    { return followMasterObjects; }
   	public boolean getFollowMasterScheme()     { return followMasterScheme; }
   	public boolean getFollowMasterBackground() { return followMasterBackground; }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
Mailing List:    http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/