< prev index next >

src/java.desktop/share/classes/java/awt/font/OpenType.java

Print this page




 314    * Type Specification.
 315    */
 316   public final static int       TAG_JUST        = 0x6a757374;
 317 
 318   /**
 319    * Ligature caret.   Table tag "lcar" in the Open
 320    * Type Specification.
 321    */
 322   public final static int       TAG_LCAR        = 0x6c636172;
 323 
 324   /**
 325    * Glyph metamorphosis.  Table tag "mort" in the Open
 326    * Type Specification.
 327    */
 328   public final static int       TAG_MORT        = 0x6d6f7274;
 329 
 330   /**
 331    * Optical bounds.  Table tag "opbd" in the Open
 332    * Type Specification.
 333    */
 334   public final static int       TAG_OPBD        = 0x6d6f7274;
 335 
 336   /**
 337    * Glyph properties.  Table tag "prop" in the Open
 338    * Type Specification.
 339    */
 340   public final static int       TAG_PROP        = 0x70726f70;
 341 
 342   /**
 343    * Tracking.  Table tag "trak" in the Open
 344    * Type Specification.
 345    */
 346   public final static int       TAG_TRAK        = 0x7472616b;
 347 
 348   /**
 349    * Returns the version of the <code>OpenType</code> font.
 350    * 1.0 is represented as 0x00010000.
 351    * @return the version of the <code>OpenType</code> font.
 352    */
 353   public int getVersion();
 354 




 314    * Type Specification.
 315    */
 316   public final static int       TAG_JUST        = 0x6a757374;
 317 
 318   /**
 319    * Ligature caret.   Table tag "lcar" in the Open
 320    * Type Specification.
 321    */
 322   public final static int       TAG_LCAR        = 0x6c636172;
 323 
 324   /**
 325    * Glyph metamorphosis.  Table tag "mort" in the Open
 326    * Type Specification.
 327    */
 328   public final static int       TAG_MORT        = 0x6d6f7274;
 329 
 330   /**
 331    * Optical bounds.  Table tag "opbd" in the Open
 332    * Type Specification.
 333    */
 334   public final static int       TAG_OPBD        = 0x6F706264;
 335 
 336   /**
 337    * Glyph properties.  Table tag "prop" in the Open
 338    * Type Specification.
 339    */
 340   public final static int       TAG_PROP        = 0x70726f70;
 341 
 342   /**
 343    * Tracking.  Table tag "trak" in the Open
 344    * Type Specification.
 345    */
 346   public final static int       TAG_TRAK        = 0x7472616b;
 347 
 348   /**
 349    * Returns the version of the <code>OpenType</code> font.
 350    * 1.0 is represented as 0x00010000.
 351    * @return the version of the <code>OpenType</code> font.
 352    */
 353   public int getVersion();
 354 


< prev index next >