Package org.nextime.ion.framework.business

Examples of org.nextime.ion.framework.business.TypePublication.listStyles()


          Mapping.begin();
         
          Publication publication = Publication.getInstance(id);
          TypePublication type = publication.getType();
          // list only XSL styles (not XSL-FO)
          Vector styleNames = type.listStyles();
          Vector styles = new Vector();
          for( int i=0; i<styleNames.size(); i++ ) {
            String n = styleNames.get(i).toString();
            if(((TypePublicationImpl)type).getStyleSheet(n).getType() == Style.XSL ) {
              styles.add(n);
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.