KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > print > attribute > standard > MediaTray

javax.print.attribute.standard
Class MediaTray

java.lang.Object
  extended by javax.print.attribute.EnumSyntax
      extended by javax.print.attribute.standard.Media
          extended by javax.print.attribute.standard.MediaTray
All Implemented Interfaces:
Serializable, Cloneable, Attribute, DocAttribute, PrintJobAttribute, PrintRequestAttribute
See Also:
Source Code

public static final MediaTray BOTTOM
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[1329]Get the supported media attributes
By Anonymous on 2005/06/01 09:38:13  Rate
// Get the supported media attributes 
 supportedAttributes = defaultService.getSupportedAttributeValues (  
   Media.class, 
   doc.getDocFlavor (  ) , 
   attributes ) ; 
 // Check to see if returned object is an array 
 if  ( supportedAttributes.getClass (  ) .isArray (  )  )   {  
   // Cast it to an array 
   areaItems =  ( Media [  ]  ) supportedAttributes; 
  
  
   // Loop through attributes 
   for  ( int x = 0; x  <  areaItems.length; x++ )   {  
     // Check for types of attributes 
     if  ( MediaTray.class.isInstance ( areaItems [ x ]  )  )   {  
       trayMap.put ( areaItems [ x ] .toString (  ) , areaItems [ x ]  ) ; 
      }  // end if 
     }  
   }  
 


public static final MediaTray ENVELOPE
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected EnumSyntax[] getEnumValueTable()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected String[] getStringTable()
See Also:
EnumSyntax
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final MediaTray LARGE_CAPACITY
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final MediaTray MAIN
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final MediaTray MANUAL
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected MediaTray(int value)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final MediaTray MIDDLE
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final MediaTray SIDE
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final MediaTray TOP
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags