This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.EventQueue; | |
import javax.swing.JFrame; | |
import javax.swing.JPanel; | |
import javax.swing.border.EmptyBorder; | |
import java.io.File; | |
import javax.swing.JLabel; | |
import javax.swing.ImageIcon; | |
import java.awt.event.MouseAdapter; | |
import java.awt.event.MouseEvent; | |
import java.awt.Font; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.EventQueue; | |
import javax.swing.JFrame; | |
import javax.swing.JPanel; | |
import javax.swing.border.EmptyBorder; | |
import javax.swing.JLabel; | |
import javax.swing.JTextField; | |
import java.awt.event.ActionListener; | |
import java.awt.event.ActionEvent; | |
import javax.swing.ImageIcon; | |
import java.awt.Font; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.*; | |
import javax.swing.*; | |
import javax.swing.border.TitledBorder; | |
import javax.swing.plaf.ColorUIResource; | |
//import org.jb2011.lnf.beautyeye.BeautyEyeLNFHelper; | |
class OptionPaneTab { | |
public static void main(String[] args) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IDE JAVA : | |
Netbeans : | |
https://netbeans.org/downloads/ | |
Eclipse : | |
http://www.eclipse.org/downloads/ | |
IntelliJ IDEA : | |
http://www.jetbrains.com/idea/download/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
import java.util.*; | |
class SearchFileApp { | |
public void findFile(String name, File file) { | |
File[] list = file.listFiles(); | |
if (list != null) | |
for (File fil : list) { | |
if (fil.isDirectory()) { | |
findFile(name, fil); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.*; | |
import java.awt.event.*; | |
import java.util.*; | |
import javax.swing.*; | |
import javax.swing.plaf.basic.*; | |
@SuppressWarnings({ "serial", "rawtypes" }) | |
public class SeparatorComboBox extends JComboBox implements KeyListener | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.swing.ImageIcon; | |
import javax.swing.JOptionPane; | |
import javax.swing.UIManager; | |
import javax.swing.UnsupportedLookAndFeelException; | |
public class ClComboOptionPane | |
{ | |
static String question(String[] pilih) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Contractor Entry] | |
Name=Open in terminal | |
Icon=terminal | |
Description=Open in terminal | |
MimeType=inode;application/x-sh;application/x-executable; | |
Exec=pantheon-terminal -d %U | |
Gettext-Domain=pantheon-terminal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.gnome.gtk.Gtk; | |
import org.gnome.gtk.Stock; | |
import org.gnome.gtk.ToolButton; | |
import org.gnome.gtk.Toolbar; | |
import org.gnome.gtk.VBox; | |
import org.gnome.gtk.Window; | |
import org.gnome.gtk.WindowPosition; | |
public class frameJavaGnome extends Window { |
NewerOlder