Java Swing UI Thread Event getInstalledThemes(LookAndFeel laf)

Here you can find the source of getInstalledThemes(LookAndFeel laf)

Description

get Installed Themes

License

Open Source License

Declaration

public static List getInstalledThemes(LookAndFeel laf) 

Method Source Code

//package com.java2s;

import java.util.Collections;
import java.util.List;

import javax.swing.LookAndFeel;

public class Main {
    public static List getInstalledThemes(LookAndFeel laf) {
        return Collections.EMPTY_LIST;
    }/* w  w  w.ja  va  2s . c o m*/
}

Related

  1. edtSmartInvokeAndWait(Runnable block)
  2. execute(Runnable command)
  3. executeInSwingThread(final Runnable code)
  4. executeRunnable(Runnable runnable)
  5. executeTask(final Runnable task, final boolean async)
  6. invoke(Runnable r)
  7. invoke(Runnable runnable)
  8. invoke(Runnable runnable)
  9. invokeAfter(final Runnable execute, int after)