本文整理汇总了Java中org.pathvisio.core.view.MIMShapes.registerShapes方法的典型用法代码示例。如果您正苦于以下问题:Java MIMShapes.registerShapes方法的具体用法?Java MIMShapes.registerShapes怎么用?Java MIMShapes.registerShapes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.pathvisio.core.view.MIMShapes
的用法示例。
在下文中一共展示了MIMShapes.registerShapes方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: WikiPathwaysClient
import org.pathvisio.core.view.MIMShapes; //导入方法依赖的package包/类
/**
* Create an instance of this class.
* @param portAddress The url that points to the WikiPathways webservice.
* @throws ServiceException
*/
public WikiPathwaysClient(URL portAddress) {
MIMShapes.registerShapes();
HttpClient httpclient = HttpClients.createDefault();
port = new WikiPathwaysRESTBindingStub(httpclient, portAddress.toString());
}
示例2: WikiPathwaysClient
import org.pathvisio.core.view.MIMShapes; //导入方法依赖的package包/类
/**
* Create an instance of this class.
* @param portAddress The url that points to the WikiPathways webservice.
* @throws ServiceException
*/
public WikiPathwaysClient(URL portAddress) throws ServiceException {
if(portAddress != null) {
port = new WikiPathwaysLocator().getWikiPathwaysSOAPPort_Http(portAddress);
} else {
port = new WikiPathwaysLocator().getWikiPathwaysSOAPPort_Http();
}
MIMShapes.registerShapes();
}
示例3: main
import org.pathvisio.core.view.MIMShapes; //导入方法依赖的package包/类
public static void main(String[] args) {
PreferenceManager.init();
if(args.length < 2) {
printHelp();
System.exit(-1);
}
try {
String inStr = args[0];
String outStr = args[1];
//Enable MiM support (for export to graphics formats)
MIMShapes.registerShapes();
Logger.log.setStream (System.err);
Logger.log.setLogLevel (false, false, true, true, true, true);
File inputFile = new File(inStr);
File outputFile = new File(outStr);
Pathway pathway = new Pathway();
pathway.readFromXml(inputFile, true);
//Parse commandline arguments
Map<PathwayElement, List<Color>> colors = new HashMap<PathwayElement, List<Color>>();
for(int i = 2; i < args.length - 1; i++) {
if("-c".equals(args[i])) {
PathwayElement pwe = pathway.getElementById(args[++i]);
String colorStr = args[++i];
if(pwe != null) {
List<Color> pweColors = colors.get(pwe);
if(pweColors == null) colors.put(pwe, pweColors = new ArrayList<Color>());
int cv = Integer.parseInt(colorStr, 16);
pweColors.add(new Color(cv));
}
}
}
BatikImageExporter exporter = null;
if(outStr.endsWith(ImageExporter.TYPE_PNG)) {
exporter = new BatikImageExporter(ImageExporter.TYPE_PNG);
} else if(outStr.endsWith(ImageExporter.TYPE_PDF)) {
exporter = new BatikImageExporter(ImageExporter.TYPE_PDF);
} else if(outStr.endsWith(ImageExporter.TYPE_TIFF)) {
exporter = new BatikImageExporter(ImageExporter.TYPE_TIFF);
} else {
exporter = new BatikImageExporter(ImageExporter.TYPE_SVG);
}
ColorExporter colorExp = new ColorExporter(pathway, colors);
colorExp.export(exporter, outputFile);
colorExp.dispose();
} catch(Exception e) {
e.printStackTrace();
System.exit(-2);
printHelp();
}
}
示例4: setUp
import org.pathvisio.core.view.MIMShapes; //导入方法依赖的package包/类
public void setUp()
{
PreferenceManager.init();
MIMShapes.registerShapes(); //TODO: should not be necessary to call this first
}