本文整理汇总了Java中org.pathvisio.core.view.MIMShapes类的典型用法代码示例。如果您正苦于以下问题:Java MIMShapes类的具体用法?Java MIMShapes怎么用?Java MIMShapes使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
MIMShapes类属于org.pathvisio.core.view包,在下文中一共展示了MIMShapes类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getLineTypeResource
import org.pathvisio.core.view.MIMShapes; //导入依赖的package包/类
private static Resource getLineTypeResource(LineType lt) {
if(lt.equals(LineType.ARROW)) {
return null;
} else if (lt.equals(LineType.TBAR)) {
return Wp.Inhibition;
} else if (lt.equals(MIMShapes.MIM_CATALYSIS)) {
return Wp.Catalysis;
} else if (lt.equals(MIMShapes.MIM_CONVERSION)) {
return Wp.Conversion;
} else if (lt.equals(MIMShapes.MIM_INHIBITION)) {
return Wp.Inhibition;
} else if (lt.equals(MIMShapes.MIM_STIMULATION)) {
return Wp.Stimulation;
} else if (lt.equals(MIMShapes.MIM_TRANSLATION)) {
return Wp.TranscriptionTranslation;
} else if (lt.equals(MIMShapes.MIM_NECESSARY_STIMULATION)) {
System.out.println("TODO: necessary stimulation");
} else if (lt.equals(MIMShapes.MIM_MODIFICATION)) {
System.out.println("TODO: modification");
}
return null;
}
开发者ID:wikipathways,项目名称:GPML2RDF,代码行数:23,代码来源:InteractionConverter.java
示例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) {
MIMShapes.registerShapes();
HttpClient httpclient = HttpClients.createDefault();
port = new WikiPathwaysRESTBindingStub(httpclient, portAddress.toString());
}
开发者ID:wikipathways,项目名称:wikipathways-api-client-java,代码行数:12,代码来源:WikiPathwaysClient.java
示例3: 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();
}
开发者ID:wikipathways,项目名称:org.wikipathways.client,代码行数:14,代码来源:WikiPathwaysClient.java
示例4: 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();
}
}
开发者ID:PathVisio,项目名称:pathvisio,代码行数:60,代码来源:ColorExporter.java
示例5: setUp
import org.pathvisio.core.view.MIMShapes; //导入依赖的package包/类
public void setUp()
{
PreferenceManager.init();
MIMShapes.registerShapes(); //TODO: should not be necessary to call this first
}
开发者ID:PathVisio,项目名称:pathvisio,代码行数:6,代码来源:TestParser.java
注:本文中的org.pathvisio.core.view.MIMShapes类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论