Package cysbml.visual.style

Examples of cysbml.visual.style.StyleGeneric


       return name;
     }
  }
 
  public static VisualStyle createVisualStyle(CustomStyle style){
    StyleGeneric styleGen = null;
    switch (style){
      case DEFAULT_STYLE:
        styleGen = new StyleDefault(style);
        break;
      case LAYOUT_STYLE:
        styleGen = new StyleLayout(style);
        break;
      case GRN_STYLE:
        styleGen = new StyleGRN(style);
        break;
      default:
        CySBML.LOGGER.error("VisualStyle not supported by VisualStyleFactory -> " + style.toString());
        return null;
    }
    return styleGen.createVisualStyle();
  }
View Full Code Here

TOP

Related Classes of cysbml.visual.style.StyleGeneric

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.