Package com.extentech.formats.XLS

Examples of com.extentech.formats.XLS.BookProtectionManager


    */
    public void setProtected(boolean protect){
      //TODO: Check that this behavior is correct
      // This is what the old implementation did
     
      BookProtectionManager protector = mybook.getProtectionManager();
     
      // Excel default... no kidding!
        if (protect) protector.setPassword("VelvetSweatshop");
        else protector.setPassword( null );
       
        protector.setProtected( protect );
   
View Full Code Here

TOP

Related Classes of com.extentech.formats.XLS.BookProtectionManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.