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


Java ECReportSpec.setReportName方法代码示例

本文整理汇总了Java中org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec.setReportName方法的典型用法代码示例。如果您正苦于以下问题:Java ECReportSpec.setReportName方法的具体用法?Java ECReportSpec.setReportName怎么用?Java ECReportSpec.setReportName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec的用法示例。


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

示例1: testCheckReportSpecs

import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
/**
 * test the report spec validation.
 * @throws ECSpecValidationException violation against the specification.
 */
@Test
public void testCheckReportSpecs() throws ECSpecValidationException {
	ECSpec.ReportSpecs reportSpecs = new ECSpec.ReportSpecs();
	
	ECReportSpec spec1 = new ECReportSpec();
	spec1.setReportName("spec1");
	ECReportSpec spec2 = new ECReportSpec();
	spec2.setReportName("spec2");
			
	ECReportOutputSpec outputSpec1 = new ECReportOutputSpec();
	outputSpec1.setIncludeCount(true);
	spec1.setOutput(outputSpec1);

	ECReportOutputSpec outputSpec2 = new ECReportOutputSpec();
	outputSpec2.setIncludeEPC(true);
	spec2.setOutput(outputSpec2);
	
	reportSpecs.getReportSpec().add(spec1);
	reportSpecs.getReportSpec().add(spec2);
	Assert.assertTrue(validator.checkReportSpecs(reportSpecs));
}
 
开发者ID:Auto-ID-Lab-Japan,项目名称:fosstrak-fc,代码行数:26,代码来源:ECSpecValidatorTest.java

示例2: testCheckReportSpecNoDuplicateReportSpecNames

import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
/**
 * test the report spec validation - specifically test that no two report specs can have the same name.
 * @throws ECSpecValidationException violation against the specification.
 */
@Test
public void testCheckReportSpecNoDuplicateReportSpecNames() throws ECSpecValidationException {
	ECReportSpec spec1 = new ECReportSpec();
	spec1.setReportName("spec1");
	ECReportSpec spec2 = new ECReportSpec();
	spec2.setReportName("spec2");
	
	List<ECReportSpec> reportSpecList = new LinkedList<ECReportSpec> ();
	reportSpecList.add(spec1);
	reportSpecList.add(spec2);
	
	Set<String> names = validator.checkReportSpecNoDuplicateReportSpecNames(reportSpecList);
	Assert.assertNotNull(names);
	Assert.assertTrue(names.contains("spec1"));
	Assert.assertTrue(names.contains("spec2"));
}
 
开发者ID:Auto-ID-Lab-Japan,项目名称:fosstrak-fc,代码行数:21,代码来源:ECSpecValidatorTest.java

示例3: createECReportSpec

import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
public static ECReportSpec createECReportSpec() {
	
	// create spec
	ECReportSpec spec = new ECReportSpec();
	
	// set paramteters
	spec.setReportName(REPORT_NAME);
	spec.setReportOnlyOnChange(REPORT_ONLY_ON_CHANGE);
	spec.setReportIfEmpty(REPORT_IF_EMPTY);
	spec.setReportSet(createECReportSetSpec());
	spec.setFilterSpec(createECFilterSpec());
	spec.setGroupSpec(new ECGroupSpec());
	spec.getGroupSpec().getPattern().addAll(GROUP_PATTERNS);
	spec.setOutput(createECReportOutputSpec());
	
	return spec;
	
}
 
开发者ID:Auto-ID-Lab-Japan,项目名称:fosstrak-fc,代码行数:19,代码来源:ECElementsUtils.java

示例4: testCheckReportSpecs

import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
/**
 * test the report spec validation.
 * @throws ECSpecValidationException violation against the specification.
 */
//@Test
public void testCheckReportSpecs() throws ECSpecValidationException {
	ECSpec.ReportSpecs reportSpecs = new ECSpec.ReportSpecs();
	
	ECReportSpec spec1 = new ECReportSpec();
	spec1.setReportName("spec1");
	ECReportSpec spec2 = new ECReportSpec();
	spec2.setReportName("spec2");
			
	ECReportOutputSpec outputSpec1 = new ECReportOutputSpec();
	outputSpec1.setIncludeCount(true);
	spec1.setOutput(outputSpec1);

	ECReportOutputSpec outputSpec2 = new ECReportOutputSpec();
	outputSpec2.setIncludeEPC(true);
	spec2.setOutput(outputSpec2);
	
	reportSpecs.getReportSpec().add(spec1);
	reportSpecs.getReportSpec().add(spec2);
	Assert.assertTrue(validator.checkReportSpecs(reportSpecs));
}
 
开发者ID:gs1oliot,项目名称:oliot-fc,代码行数:26,代码来源:ECSpecValidatorTest.java

示例5: testCheckReportSpecNoDuplicateReportSpecNamesIllegalInput

import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
/**
 * test the report spec validation - specifically test that no two report specs can have the same name - give illegal input.
 * @throws ECSpecValidationException violation against the specification.
 */
@Test(expected = ECSpecValidationException.class)
public void testCheckReportSpecNoDuplicateReportSpecNamesIllegalInput() throws ECSpecValidationException {
	ECReportSpec spec1 = new ECReportSpec();
	spec1.setReportName("spec1");
	ECReportSpec spec2 = new ECReportSpec();
	spec2.setReportName("spec1");
	
	List<ECReportSpec> reportSpecList = new LinkedList<ECReportSpec> ();
	reportSpecList.add(spec1);
	reportSpecList.add(spec2);
	
	validator.checkReportSpecNoDuplicateReportSpecNames(reportSpecList);
}
 
开发者ID:Auto-ID-Lab-Japan,项目名称:fosstrak-fc,代码行数:18,代码来源:ECSpecValidatorTest.java

示例6: createDummyReportSpecs

import org.fosstrak.ale.xsd.ale.epcglobal.ECReportSpec; //导入方法依赖的package包/类
public ReportSpecs createDummyReportSpecs() {
	ExcludePatterns excludePatterns = new ExcludePatterns();
	excludePatterns.getExcludePattern().add(FILTER_SPEC_EXCLUDE_PATTERN);
	IncludePatterns includePatterns = new IncludePatterns();
	includePatterns.getIncludePattern().add(FILTER_SPEC_INCLUDE_PATTERN);
	ECFilterSpec filterSpec = new ECFilterSpec();
	filterSpec.setExcludePatterns(excludePatterns);
	filterSpec.setIncludePatterns(includePatterns);
	
	ECGroupSpec groupSpec = new ECGroupSpec();
	groupSpec.getPattern().add(GROUP_SPEC_PATTERN);
	
	ECReportOutputSpec outputSpec = new ECReportOutputSpec();
	outputSpec.setIncludeCount(true);
	outputSpec.setIncludeEPC(true);
	outputSpec.setIncludeRawDecimal(true);
	outputSpec.setIncludeRawHex(true);
	outputSpec.setIncludeTag(true);
	
	ECReportSetSpec reportSet = new ECReportSetSpec();
	reportSet.setSet(REPORT_SET);
	
	ECReportSpec reportSpec = new ECReportSpec();
	reportSpec.setFilterSpec(filterSpec);
	reportSpec.setGroupSpec(groupSpec);
	reportSpec.setOutput(outputSpec);
	reportSpec.setReportIfEmpty(true);
	reportSpec.setReportName(REPORT_NAME);
	reportSpec.setReportOnlyOnChange(true);
	reportSpec.setReportSet(reportSet);
	
	ReportSpecs specs = new ReportSpecs();		
	specs.getReportSpec().add(reportSpec);
	return specs;
}
 
开发者ID:Auto-ID-Lab-Japan,项目名称:fosstrak-fc,代码行数:36,代码来源:SerializerAndDeserializerUtilsTest.java


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