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


Java SupportedValuesAttribute类代码示例

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


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

示例1: testParentInterfaces

import javax.print.attribute.SupportedValuesAttribute; //导入依赖的package包/类
public void testParentInterfaces() throws Exception {
	String[] extraClasses = new String[] { SupportedValuesAttribute.class.getName()};

	MockServiceReference ref = new MockServiceReference(addExtraIntfs(extraClasses));
	Class<?>[] clazzes = proxyCreator.discoverProxyClasses(ref);
	assertEquals(2, clazzes.length);
	assertTrue(containsClass(clazzes, Comparable.class));
	assertTrue(containsClass(clazzes, SupportedValuesAttribute.class));
}
 
开发者ID:eclipse,项目名称:gemini.blueprint,代码行数:10,代码来源:GreedyProxyTest.java

示例2: testParentInterfaces

import javax.print.attribute.SupportedValuesAttribute; //导入依赖的package包/类
public void testParentInterfaces() throws Exception {
	String[] extraClasses = new String[] { SupportedValuesAttribute.class.getName(), LabeledEnum.class.getName() };

	MockServiceReference ref = new MockServiceReference(addExtraIntfs(extraClasses));
	Class[] clazzes = proxyCreator.discoverProxyClasses(ref);
	assertEquals(2, clazzes.length);
	assertTrue(containsClass(clazzes, LabeledEnum.class));
	assertFalse(containsClass(clazzes, Comparable.class));
	assertTrue(containsClass(clazzes, SupportedValuesAttribute.class));
}
 
开发者ID:BeamFoundry,项目名称:spring-osgi,代码行数:11,代码来源:GreedyProxyTest.java

示例3: getSupportedAttrName

import javax.print.attribute.SupportedValuesAttribute; //导入依赖的package包/类
/**
 * Returns the name of the supported attribute 
 * based on the given standard attribute category.
 * 
 * @param clazz the standard attribute category
 * @return The name of the supported attribute category.
 */
public static String getSupportedAttrName(Class clazz)
{
  return ((SupportedValuesAttribute) instanceByClass.get(clazz)).getName();
}
 
开发者ID:nmldiegues,项目名称:jvm-stm,代码行数:12,代码来源:IppUtilities.java

示例4: getSupportedCategory

import javax.print.attribute.SupportedValuesAttribute; //导入依赖的package包/类
/**
 * Returns the category of the supported attribute 
 * based on the given standard attribute category.
 * 
 * @param clazz the standard attribute category
 * @return The supported attribute category.
 */
public static Class getSupportedCategory(Class clazz)
{
  return ((SupportedValuesAttribute) instanceByClass.get(clazz)).getCategory();
}
 
开发者ID:nmldiegues,项目名称:jvm-stm,代码行数:12,代码来源:IppUtilities.java


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