Need help with Java methods please?

Hi

I am having some trouble understanding the following methods in Java, their definitions and how they are used in programs. Could someone Please assist me? Thank You.

They are:

getDefaultToolkit()

getSystemClipboard()

getContents()

setContents()

getTransferData()

getDesktopProperty()

getImage()

Please assist me

Thank You

stopitallready2011-06-02T08:49:48Z

Favorite Answer

A quick google search with the word Java and your method name should have a great response in either the first or second result.

?2016-02-28T05:51:22Z

Static methods are common across instances of the class. In fact you don't even need to declare a variable of the class to use a static method. When you use Integer.parseInt() on a String, you don't need to declare an Integer object to use it.