当前位置: 首页>>代码示例>>Java>>正文


Java MesquiteProject类代码示例

本文整理汇总了Java中mesquite.lib.MesquiteProject的典型用法代码示例。如果您正苦于以下问题:Java MesquiteProject类的具体用法?Java MesquiteProject怎么用?Java MesquiteProject使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


MesquiteProject类属于mesquite.lib包,在下文中一共展示了MesquiteProject类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isCompatible

import mesquite.lib.MesquiteProject; //导入依赖的package包/类
public boolean isCompatible(Object obj, MesquiteProject project, EmployerEmployee prospectiveEmployer){
	if (obj == null)
		return true;
	if (obj instanceof RequiresExactlyMeristicData)
		return true;
	if (obj instanceof CompatibilityTest)
		return false;
	if (!(obj instanceof Class))
		return true;
	if (!CharacterState.class.isAssignableFrom((Class)obj) &&  !CharacterData.class.isAssignableFrom((Class)obj))
		return true;
	return  (MeristicState.class == obj) || MeristicState.class == obj;
}
 
开发者ID:MesquiteProject,项目名称:MesquiteArchive,代码行数:14,代码来源:RequiresExactlyMeristicData.java

示例2: isCompatible

import mesquite.lib.MesquiteProject; //导入依赖的package包/类
public boolean isCompatible(Object obj, MesquiteProject project, EmployerEmployee prospectiveEmployer){
	if (obj == null)
		return true;
	if (obj instanceof RequiresExactlyMeristicData)
		return true;
	if (obj instanceof CompatibilityTest)
		return false;

	if (!(obj instanceof Class))
		return true;
	if (!CharacterState.class.isAssignableFrom((Class)obj) && !CharacterData.class.isAssignableFrom((Class)obj))
		return true;
	return   (MeristicState.class.isAssignableFrom((Class)obj) || MeristicState.class.isAssignableFrom((Class)obj));
}
 
开发者ID:MesquiteProject,项目名称:MesquiteArchive,代码行数:15,代码来源:RequiresAnyMeristicData.java

示例3: canExportProject

import mesquite.lib.MesquiteProject; //导入依赖的package包/类
public boolean canExportProject(MesquiteProject project) {  
	return (project.getNumberCharMatricesVisible(DNAState.class) > 0) ;
}
 
开发者ID:MesquiteProject,项目名称:MesquiteCore,代码行数:4,代码来源:ExportPartitionFinderDNA.java

示例4: canExportProject

import mesquite.lib.MesquiteProject; //导入依赖的package包/类
public boolean canExportProject(MesquiteProject project) {  
	return (project.getNumberCharMatrices( CategoricalState.class) - project.getNumberCharMatrices( MolecularState.class) > 0) ;
}
 
开发者ID:MesquiteProject,项目名称:MesquiteCore,代码行数:4,代码来源:ExportDescriptions.java

示例5: readFile

import mesquite.lib.MesquiteProject; //导入依赖的package包/类
public void readFile(MesquiteProject mf, MesquiteFile file, String arguments) {
}
 
开发者ID:MesquiteProject,项目名称:MesquiteCore,代码行数:3,代码来源:ExportDescriptions.java

示例6: canExportProject

import mesquite.lib.MesquiteProject; //导入依赖的package包/类
public boolean canExportProject(MesquiteProject project) {  
	return (project.getNumberCharMatricesVisible(CategoricalState.class) > 0) ;
}
 
开发者ID:MesquiteProject,项目名称:MesquiteCore,代码行数:4,代码来源:ExportPartitionFinder.java

示例7: canExportProject

import mesquite.lib.MesquiteProject; //导入依赖的package包/类
public boolean canExportProject(MesquiteProject project) {  
	return (project.getNumberCharMatricesVisible(ProteinState.class) > 0) ;
}
 
开发者ID:MesquiteProject,项目名称:MesquiteCore,代码行数:4,代码来源:ExportPartitionFinderProtein.java

示例8: isCompatible

import mesquite.lib.MesquiteProject; //导入依赖的package包/类
public  boolean isCompatible(Object obj, MesquiteProject project, EmployerEmployee prospectiveEmployer){
	
	if (MesquiteTrunk.mesquiteTrunk.numModulesAvailable(DNADatabaseURLSource.class)<=0)
		return false;
	
	return true;
}
 
开发者ID:MesquiteProject,项目名称:Chromaseq,代码行数:8,代码来源:PrimerInfoFromDatabase.java

示例9: isCompatible

import mesquite.lib.MesquiteProject; //导入依赖的package包/类
public  boolean isCompatible(Object obj, MesquiteProject project, EmployerEmployee prospectiveEmployer){
	
	if (MesquiteTrunk.mesquiteTrunk.numModulesAvailable(AbiDownloader.class)<=0)
		return false;
	
	return true;
}
 
开发者ID:MesquiteProject,项目名称:Chromaseq,代码行数:8,代码来源:DownloadAbiFromDb.java

示例10: downloadAbiFilesFromDb

import mesquite.lib.MesquiteProject; //导入依赖的package包/类
public abstract boolean downloadAbiFilesFromDb( MesquiteProject project); 
开发者ID:MesquiteProject,项目名称:Chromaseq,代码行数:2,代码来源:AbiDownloader.java


注:本文中的mesquite.lib.MesquiteProject类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。