Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
指定したコンポーネントのプロパティセット名のリストを返します。
Iterator ServerContext.getPropertySetNames(String component)
component プロパティ名をリストするコンポーネントの名前。
指定したコンポーネントのプロパティセット名のリスト
これらのプロパティは、ml_property システムテーブルに格納されます。詳細については、ml_add_property システムプロシージャーを参照してください。
次の例では、指定したコンポーネントに関連付けられた ServerContext インスタンスのすべてのプロパティをリストする方法を示します。
import java.util.*; ServerContext serverContext; PrintStream out Properties prop = serverContext.getPropertySetNames("Component Name"); prop.list(out);