Examples of AdditionalLatex


Examples of org.openiaml.docs.modeldoc.AdditionalLatex

 
            // parse into a JavadocTextElement
            JavadocTextElement e = factory.createJavadocTextElement();
            e.setValue( new String(html) );
           
            AdditionalLatex doc = factory.createAdditionalLatex();
            doc.setDescription( e );
           
            // add javadoc element to root
            root.getReferences().add( e );
           
            FileReference ref = factory.createFileReference();
            ref.setName(cls.getName() + ".tex");
            ref.setPackage(packageBase);
            ref.setPlugin(plugin);
            root.getReferences().add(ref);
           
            doc.setReference(ref);
            cls.getAdditionalLatex().add(doc);
           
          } catch (IOException e) {
            throw new DocumentationGenerationException(e);
          }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.