Examples of StyleInfo


Examples of org.geoserver.catalog.StyleInfo

     * @param styles
     */
    void importStyles(CatalogFactory factory, Map styles) {
        for (Iterator s = styles.entrySet().iterator(); s.hasNext();) {
            Map.Entry entry = (Map.Entry) s.next();
            StyleInfo style = factory.createStyle();
            style.setName((String) entry.getKey());
            style.setFilename((String)entry.getValue());
           
            catalog.add(style);
            LOGGER.info( "Loaded style '" + style.getName() + "'" );
        }
    }
View Full Code Here

Examples of org.mt4j.components.visibleComponents.StyleInfo

   
    this.setNoFill(true);
    this.setPickable(true);
   
    if (MT4jSettings.getInstance().isOpenGlMode()){
      this.getGeometryInfo().generateOrUpdateBuffersLocal(new StyleInfo(new MTColor(255,255,255,255), new MTColor(startPoint.getR(), startPoint.getG(), startPoint.getB(), startPoint.getA()), this.isDrawSmooth(), this.isNoStroke(), this.isNoFill(), this.getStrokeWeight(), this.getFillDrawMode(), this.getLineStipple()));
    }
//    this.setBoundsBehaviour(AbstractShape.BOUNDS_DONT_USE);
    this.setBoundsBehaviour(BOUNDS_ONLY_CHECK);
   
    this.setName("unnamed MTLine");
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.