Java Toolkit.getProperty(String key, String defaultValue)

Syntax

Toolkit.getProperty(String key, String defaultValue) has the following syntax.

public static String getProperty(String key,   String defaultValue)

Example

In the following code shows how to use Toolkit.getProperty(String key, String defaultValue) method.


import java.awt.Toolkit;
//from  w w  w .  ja va 2  s. c  om
public class Main {
  public static void main(String[] args) {
    Toolkit tk = Toolkit.getDefaultToolkit();
    System.out.println("AWT.control = " + tk.getProperty("AWT.control", ""));

  }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.awt »




BasicStroke
BorderLayout
CardLayout
Color
Cursor
Desktop
DesktopManager
DisplayMode
EventQueue
FlowLayout
FocusTraversalPolicy
Font
FontMetrics
GradientPaint
Graphics
Graphics2D
GraphicsConfiguration
GraphicsDevice
GraphicsEnvironment
GridBagConstraints
GridBagLayout
GridLayout
Image
ItemSelectable
KeyboardFocusManager
LayoutManager
LayoutManager2
Point
Rectangle
Robot
Shape
SplashScreen
SystemColor
SystemTray
TexturePaint
TrayIcon
Toolkit
Transparency