JavaTM 2 Platform
Standard Ed. 6

java.awt
類別 GraphicsConfigTemplate

java.lang.Object
  繼承者 java.awt.GraphicsConfigTemplate
所有已實作的介面:
Serializable

public abstract class GraphicsConfigTemplate
extends Object
implements Serializable

GraphicsConfigTemplate 類別用於獲得有效的 GraphicsConfiguration。使用者實例化其中的一個物件,然後根據需要設置所有非預設的屬性。然後,使用此 GraphicsConfigTemplate 調用可在 GraphicsDevice 類別中找到的 GraphicsDevice.getBestConfiguration(java.awt.GraphicsConfigTemplate) 方法。返回一個有效的 GraphicsConfiguration,它可滿足或超過 GraphicsConfigTemplate 中的要求。

從以下版本開始:
1.2
另請參見:
GraphicsDevice, GraphicsConfiguration, 序列化表格

欄位摘要
static int PREFERRED
          用於“列舉”(整數)型別的值。
static int REQUIRED
          用於“列舉”(整數)型別的值。
static int UNNECESSARY
          用於“列舉”(整數)型別的值。
 
建構子摘要
GraphicsConfigTemplate()
          此類別是一個抽象類別,因此只有子類別才可以實例化。
 
方法摘要
abstract  GraphicsConfiguration getBestConfiguration(GraphicsConfiguration[] gc)
          返回通過了 GraphicsConfigTemplate 中定義的標準的可能“最佳”配置。
abstract  boolean isGraphicsConfigSupported(GraphicsConfiguration gc)
          返回一個 boolean,它指示指定的 GraphicsConfiguration 是否可用於創建支持指定功能的繪圖面。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

欄位詳細資訊

REQUIRED

public static final int REQUIRED
用於“列舉”(整數)型別的值。宣告此功能對於 GraphicsConfiguration 物件是必需的。如果此功能不可用,則不要選擇 GraphicsConfiguration 物件。

另請參見:
常數欄位值

PREFERRED

public static final int PREFERRED
用於“列舉”(整數)型別的值。宣告此功能是 GraphicsConfiguration 物件所期望的。儘管這兩個選項都被視為有效的比對,但具有此功能的選項要優先於不包含此功能的選項。

另請參見:
常數欄位值

UNNECESSARY

public static final int UNNECESSARY
用於“列舉”(整數)型別的值。宣告此功能對於選擇 GraphicsConfiguration 物件不是必需的。沒有此功能的選項要優先於包含此功能的選項,因為沒有使用該功能。

另請參見:
常數欄位值
建構子詳細資訊

GraphicsConfigTemplate

public GraphicsConfigTemplate()
此類別是一個抽象類別,因此只有子類別才可以實例化。

方法詳細資訊

getBestConfiguration

public abstract GraphicsConfiguration getBestConfiguration(GraphicsConfiguration[] gc)
返回通過了 GraphicsConfigTemplate 中定義的標準的可能“最佳”配置。

參數:
gc - 要從其選擇的 GraphicsConfiguration 物件的陣列。
返回:
一個可能是最佳配置的 GraphicsConfiguration 物件。
另請參見:
GraphicsConfiguration

isGraphicsConfigSupported

public abstract boolean isGraphicsConfigSupported(GraphicsConfiguration gc)
返回一個 boolean,它指示指定的 GraphicsConfiguration 是否可用於創建支持指定功能的繪圖面。

參數:
gc - 要測試的 GraphicsConfiguration 物件
返回:
如果此 GraphicsConfiguration 物件可用於創建支持指定功能的畫面,則返回 true;如果 GraphicsConfiguration 不能用於創建此 Java(tm) API 可用的繪圖面,則返回 false

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only