本文整理汇总了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));
}
示例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));
}
示例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();
}
示例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();
}