This file contains hidden or 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
| /* | |
| * Copyright (c) 2011, StripBandunk and/or its affiliates. All rights reserved. | |
| * | |
| * http://stripbandunk.com/ | |
| * | |
| * STRIPBANDUNK PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. | |
| */ | |
| package khannedy.belajar.mobile; | |
| import javax.microedition.lcdui.Display; |
This file contains hidden or 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
| LAPORAN DAFTAR PELUNASAN KOLETKOR | |
| AGEN PT. ARTIVISI INTERMEDIA | |
| ===================================================================================================================== | |
| KODE KOLEKTOR : 0001 | |
| NAMA KOLEKTOR : JOJO | |
| +------+--------------+---------------------------+---------+-------------+-------------+-------------+-------------+ |
This file contains hidden or 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
| sudo alien oracle-instantclient11.2-basic_11.2.0.2.0-2_i386.rpm | |
| sudo alien oracle-instantclient11.2-devel_11.2.0.2.0-2_i386.rpm |
This file contains hidden or 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
| /* | |
| * Copyright (c) 2011, StripBandunk and/or its affiliates. All rights reserved. | |
| * | |
| * http://stripbandunk.com/ | |
| * | |
| * STRIPBANDUNK PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. | |
| */ | |
| package khannedy.belajar.mobile; | |
| import com.sun.lwuit.Display; |
This file contains hidden or 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
| jTableMahasiswa.getSelectionModel().addListSelectionListener(new ListSelectionListener() { | |
| public void valueChanged(ListSelectionEvent e) { | |
| int selectedRow = jTableMahasiswa.getSelectedRow(); | |
| jTextFieldBaris.setText(String.valueOf(selectedRow)); | |
| } | |
| }); |
This file contains hidden or 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
| Root | |
| |_Child 1 | |
| |_Child 2 | |
| |_Child 3 | |
| |_Child 4 | |
| |_Child 5 | |
| |_Child 6 | |
| |_Child 7 | |
| |_Child 8 |
This file contains hidden or 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
| /* | |
| * Copyright (c) 2011, StripBandunk and/or its affiliates. All rights reserved. | |
| * | |
| * http://stripbandunk.com/ | |
| * | |
| * STRIPBANDUNK PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. | |
| */ | |
| package stripbandunk.tutorial.jtreehibernate.entity; | |
| import java.io.Serializable; |
This file contains hidden or 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
| @Entity | |
| @Table(name = "stripbandunk_category") | |
| public class Category implements Serializable { | |
| private static final long serialVersionUID = 1L; | |
| @Id | |
| @GeneratedValue | |
| @Column(name = "id") | |
| private Long id; |
This file contains hidden or 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
| /* | |
| * Copyright (c) 2011, StripBandunk and/or its affiliates. All rights reserved. | |
| * | |
| * http://stripbandunk.com/ | |
| * | |
| * STRIPBANDUNK PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. | |
| */ | |
| package khannedy.belajar.belajarjava.netbeans; | |
| /** |
This file contains hidden or 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
| final ProductService productService = new ProductService(); | |
| final ProductTableModel tableModel = new ProductTableModel(); | |
| tableModel.setProducts(productService.load(0, 100)); | |
| jTableDemo.setModel(tableModel); |